From 6f76c0a6eb8e9a6c5bd4b81e4b0d16dfee5ab927 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Jun 15 2019 22:32:39 +0000 Subject: [PATCH 1/10] use pandas to clean data --- diff --git a/build_stats.py b/build_stats.py new file mode 100755 index 0000000..2a7ddd9 --- /dev/null +++ b/build_stats.py @@ -0,0 +1,196 @@ +#!/usr/bin/env python3 +"""Consolidate and clean result files""" + +import argparse +import os +import pandas + + +def main(): + """Handle params""" + + parser = argparse.ArgumentParser( + description="Consolidate every result files and produce a clean concatenated update") + parser.add_argument("--version", required=False, default="f30", + help="Version to analyse (in result folder)") + + args = parser.parse_args() + + file = "./results/"+args.version+"/_concat.csv" + parse(file) + + +def parse(concat): + """Call all cleaning functions""" + data = pandas.read_csv(concat) + data.columns = ['src', + 'filename', + 'translatedMessages', + 'translatedSourceWords', + 'translatedTargetWords', + 'fuzzyMessages', + 'fuzzySourceWords', + 'untranslatedMessages', + 'untranslatedSourceWords', + 'totalMessage', + 'totalSourceWords', + 'reviewMessages', + 'reviewSourceWords'] + + info(data, "CSV loaded") + + data = clean_0_basic(data) + + data = clean_1_dupplication(data) + info(data, "Deduplication is done") + + data = data.astype({ + 'translatedMessages': int, + 'translatedSourceWords': int, + 'translatedTargetWords': int, + 'fuzzyMessages': int, + 'fuzzySourceWords': int, + 'untranslatedMessages': int, + 'untranslatedSourceWords': int, + 'totalMessage': int, + 'totalSourceWords': int + }) + + data = clean_2_remove(data) + info(data, "Removal is done") + + data = guess_bcp47(data) + info(data, "bcp47 data are guessed") + + data = clean_bcp47(data) + info(data, "bcp47 data are cleaned") + + store(data, "3.result.csv") + +def clean_0_basic(data): + """String cleaning and drops useless 'review' columns""" + + # remove useless spaces and use lowercase + for column in list(data): + data[column] = data[column].str.strip() + data[column] = data[column].str.lower() + + # these columns never have values + data = data.drop('reviewMessages', 1) + data = data.drop('reviewSourceWords', 1) + + return data + + +def clean_1_dupplication(data): + """Removes duplicates""" + + # remove all headers from indivual stat result + data = data[data.filename != "filename"] + info(data, "* duplicated headers are removed") + + # remove duplicated stats from bad translation file patterns + data = data.drop_duplicates(['src', 'filename'], keep='last') + info(data, "* duplicated po files are removed") + + return data + + +def clean_2_remove(data): + """Removes obvious useless strings""" + + # remove pot files + data = data[~(data.filename.str.endswith(".pot"))] + info(data, "* remove pot files") + + # remove gmo files + data = data[~(data.filename.str.endswith(".gmo"))] + info(data, "* remove gmo files") + + # remove when no result + store(data[data.totalMessage == 0], "1.debug.total message = 0.csv") + data = data[data.totalMessage != 0] + info(data, "* remove files with 'totalMessage'=0") + + return data + + +def guess_bcp47(data): + """Guess Language, Region and Script from filename""" + data['basename'] = data['filename'].apply(os.path.basename) + + data['full_lang'] = data['basename'].str.rsplit('.', 1, expand=True)[0] + + # a few lang naming are wrong + data.full_lang = data.full_lang.replace( + {'kmr_latn': 'kmr@latn', 'fr-braille': 'fr@braille', }) + + data['lang'] = data['full_lang'].str.rsplit('@', 1, expand=True)[0] + + data['script'] = data['full_lang'].str.rsplit('@', 1, expand=True)[1] + + # these are just re-encoded translations + data = data[~( + data.lang.str.endswith(".big5") | + data.lang.str.endswith(".cp936") | + data.lang.str.endswith(".cp1250") | + data.lang.str.endswith(".cp1251") | + data.lang.str.endswith(".euc-jp") | + data.lang.str.endswith(".gb2312") | + data.lang.str.endswith(".sjis") | + data.lang.str.endswith(".utf-8") + )] + info(data, "* remove if lang endswith encoding values") + + # these are just re-encoded translations + store(data[data.lang.str.contains(".", regex=False)], '0.error.lang with point.csv') + data = data[~(data.lang.str.contains(".", regex=False))] + info(data, "* remove if lang contains a point") + + data['language'] = data['lang'].str.rsplit('_', 1, expand=True)[0] + + data['region'] = data['lang'].str.rsplit('_', 1, expand=True)[1] + + # store all unique values for debug + store(data.drop_duplicates('lang', keep='last'), "1.debug.lang.csv") + store(data.drop_duplicates('language', keep='last'), "1.debug.language.csv") + store(data.drop_duplicates('region', keep='last'), "1.debug.region.csv") + store(data.drop_duplicates('script', keep='last'), "1.debug.script.csv") + + # remove temporary columns + data = data.drop('full_lang', 1) + data = data.drop('lang', 1) + + return data + +def clean_bcp47(data): + """Remove impossible values for language and region""" + # remove region longer than 2 chars + store(data[data.region.str.len() > 2], '0.error.len(region)>2.csv') + data = data[~(data.region.str.len() > 2)] + info(data, "* remove if len(region)>2") + + # remove languages longer than 3 chars + store(data[data.language.str.len() > 3], '0.error.len(language)>3.csv') + data = data[~(data.language.str.len() > 3)] + info(data, "* remove if len(language)>3") + + # remove numeric languages + store(data[data.language.str.isdigit()], '0.error.languages is numeric.csv') + data = data[~(data.language.str.isdigit())] + info(data, "* remove if language.isdigit()") + + return data + +def info(dataset, step): + """Print basic informations about current dataset""" + print(" * "+step+" → we now have "+str(len(dataset))+" rows") + + +def store(dataset, name): + """Store dataset to csv""" + dataset.to_csv(name, index=False) + + +if __name__ == '__main__': + main() diff --git a/requirements.txt b/requirements.txt index 441b6a2..6b3dba1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ translation-finder -pyyaml \ No newline at end of file +pyyaml +pandas From 7b4acba45b42e76635721616e58bee4cd89f1292 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Jun 15 2019 23:07:05 +0000 Subject: [PATCH 2/10] add CLDR data --- diff --git a/CLDR-raw/language.csv b/CLDR-raw/language.csv new file mode 100644 index 0000000..c453e8f --- /dev/null +++ b/CLDR-raw/language.csv @@ -0,0 +1,621 @@ +code,name +aa,Afar +ab,Abkhazian +ace,Achinese +ach,Acoli +ada,Adangme +ady,Adyghe +ae,Avestan +aeb,Tunisian Arabic +af,Afrikaans +afh,Afrihili +agq,Aghem +ain,Ainu +ak,Akan +akk,Akkadian +akz,Alabama +ale,Aleut +aln,Gheg Albanian +alt,Southern Altai +am,Amharic +an,Aragonese +ang,Old English +anp,Angika +ar,Arabic +ar_001,Modern Standard Arabic +arc,Aramaic +arn,Mapuche +aro,Araona +arp,Arapaho +arq,Algerian Arabic +ars,Najdi Arabic +arw,Arawak +ary,Moroccan Arabic +arz,Egyptian Arabic +as,Assamese +asa,Asu +ase,American Sign Language +ast,Asturian +av,Avaric +avk,Kotava +awa,Awadhi +ay,Aymara +az,Azerbaijani +ba,Bashkir +bal,Baluchi +ban,Balinese +bar,Bavarian +bas,Basaa +bax,Bamun +bbc,Batak Toba +bbj,Ghomala +be,Belarusian +bej,Beja +bem,Bemba +bew,Betawi +bez,Bena +bfd,Bafut +bfq,Badaga +bg,Bulgarian +bgn,Western Balochi +bho,Bhojpuri +bi,Bislama +bik,Bikol +bin,Bini +bjn,Banjar +bkm,Kom +bla,Siksika +bm,Bambara +bn,Bangla +bo,Tibetan +bpy,Bishnupriya +bqi,Bakhtiari +br,Breton +bra,Braj +brh,Brahui +brx,Bodo +bs,Bosnian +bss,Akoose +bua,Buriat +bug,Buginese +bum,Bulu +byn,Blin +byv,Medumba +ca,Catalan +cad,Caddo +car,Carib +cay,Cayuga +cch,Atsam +ccp,Chakma +ce,Chechen +ceb,Cebuano +cgg,Chiga +ch,Chamorro +chb,Chibcha +chg,Chagatai +chk,Chuukese +chm,Mari +chn,Chinook Jargon +cho,Choctaw +chp,Chipewyan +chr,Cherokee +chy,Cheyenne +cic,Chickasaw +ckb,Central Kurdish +co,Corsican +cop,Coptic +cps,Capiznon +cr,Cree +crh,Crimean Turkish +crs,Seselwa Creole French +cs,Czech +csb,Kashubian +cu,Church Slavic +cv,Chuvash +cy,Welsh +da,Danish +dak,Dakota +dar,Dargwa +dav,Taita +de,German +de_AT,Austrian German +de_CH,Swiss High German +del,Delaware +den,Slave +dgr,Dogrib +din,Dinka +dje,Zarma +doi,Dogri +dsb,Lower Sorbian +dtp,Central Dusun +dua,Duala +dum,Middle Dutch +dv,Divehi +dyo,Jola-Fonyi +dyu,Dyula +dz,Dzongkha +dzg,Dazaga +ebu,Embu +ee,Ewe +efi,Efik +egl,Emilian +egy,Ancient Egyptian +eka,Ekajuk +el,Greek +elx,Elamite +en,English +en_AU,Australian English +en_CA,Canadian English +en_GB,British English +en_US,American English +enm,Middle English +eo,Esperanto +es,Spanish +es_419,Latin American Spanish +es_ES,European Spanish +es_MX,Mexican Spanish +esu,Central Yupik +et,Estonian +eu,Basque +ewo,Ewondo +ext,Extremaduran +fa,Persian +fa_AF,Dari +fan,Fang +fat,Fanti +ff,Fulah +fi,Finnish +fil,Filipino +fit,Tornedalen Finnish +fj,Fijian +fo,Faroese +fon,Fon +fr,French +fr_CA,Canadian French +fr_CH,Swiss French +frc,Cajun French +frm,Middle French +fro,Old French +frp,Arpitan +frr,Northern Frisian +frs,Eastern Frisian +fur,Friulian +fy,Western Frisian +ga,Irish +gaa,Ga +gag,Gagauz +gan,Gan Chinese +gay,Gayo +gba,Gbaya +gbz,Zoroastrian Dari +gd,Scottish Gaelic +gez,Geez +gil,Gilbertese +gl,Galician +glk,Gilaki +gmh,Middle High German +gn,Guarani +goh,Old High German +gom,Goan Konkani +gon,Gondi +gor,Gorontalo +got,Gothic +grb,Grebo +grc,Ancient Greek +gsw,Swiss German +gu,Gujarati +guc,Wayuu +gur,Frafra +guz,Gusii +gv,Manx +gwi,Gwichʼin +ha,Hausa +hai,Haida +hak,Hakka Chinese +haw,Hawaiian +he,Hebrew +hi,Hindi +hif,Fiji Hindi +hil,Hiligaynon +hit,Hittite +hmn,Hmong +ho,Hiri Motu +hr,Croatian +hsb,Upper Sorbian +hsn,Xiang Chinese +ht,Haitian Creole +hu,Hungarian +hup,Hupa +hy,Armenian +hz,Herero +ia,Interlingua +iba,Iban +ibb,Ibibio +id,Indonesian +ie,Interlingue +ig,Igbo +ii,Sichuan Yi +ik,Inupiaq +ilo,Iloko +inh,Ingush +io,Ido +is,Icelandic +it,Italian +iu,Inuktitut +izh,Ingrian +ja,Japanese +jam,Jamaican Creole English +jbo,Lojban +jgo,Ngomba +jmc,Machame +jpr,Judeo-Persian +jrb,Judeo-Arabic +jut,Jutish +jv,Javanese +ka,Georgian +kaa,Kara-Kalpak +kab,Kabyle +kac,Kachin +kaj,Jju +kam,Kamba +kaw,Kawi +kbd,Kabardian +kbl,Kanembu +kcg,Tyap +kde,Makonde +kea,Kabuverdianu +ken,Kenyang +kfo,Koro +kg,Kongo +kgp,Kaingang +kha,Khasi +kho,Khotanese +khq,Koyra Chiini +khw,Khowar +ki,Kikuyu +kiu,Kirmanjki +kj,Kuanyama +kk,Kazakh +kkj,Kako +kl,Kalaallisut +kln,Kalenjin +km,Khmer +kmb,Kimbundu +kn,Kannada +ko,Korean +koi,Komi-Permyak +kok,Konkani +kos,Kosraean +kpe,Kpelle +kr,Kanuri +krc,Karachay-Balkar +kri,Krio +krj,Kinaray-a +krl,Karelian +kru,Kurukh +ks,Kashmiri +ksb,Shambala +ksf,Bafia +ksh,Colognian +ku,Kurdish +kum,Kumyk +kut,Kutenai +kv,Komi +kw,Cornish +ky,Kyrgyz +la,Latin +lad,Ladino +lag,Langi +lah,Lahnda +lam,Lamba +lb,Luxembourgish +lez,Lezghian +lfn,Lingua Franca Nova +lg,Ganda +li,Limburgish +lij,Ligurian +liv,Livonian +lkt,Lakota +lmo,Lombard +ln,Lingala +lo,Lao +lol,Mongo +lou,Louisiana Creole +loz,Lozi +lrc,Northern Luri +lt,Lithuanian +ltg,Latgalian +lu,Luba-Katanga +lua,Luba-Lulua +lui,Luiseno +lun,Lunda +luo,Luo +lus,Mizo +luy,Luyia +lv,Latvian +lzh,Literary Chinese +lzz,Laz +mad,Madurese +maf,Mafa +mag,Magahi +mai,Maithili +mak,Makasar +man,Mandingo +mas,Masai +mde,Maba +mdf,Moksha +mdr,Mandar +men,Mende +mer,Meru +mfe,Morisyen +mg,Malagasy +mga,Middle Irish +mgh,Makhuwa-Meetto +mgo,Metaʼ +mh,Marshallese +mi,Maori +mic,Mi'kmaq +min,Minangkabau +mk,Macedonian +ml,Malayalam +mn,Mongolian +mnc,Manchu +mni,Manipuri +moh,Mohawk +mos,Mossi +mr,Marathi +mrj,Western Mari +ms,Malay +mt,Maltese +mua,Mundang +mul,Multiple languages +mus,Creek +mwl,Mirandese +mwr,Marwari +mwv,Mentawai +my,Burmese +mye,Myene +myv,Erzya +mzn,Mazanderani +na,Nauru +nan,Min Nan Chinese +nap,Neapolitan +naq,Nama +nb,Norwegian Bokmål +nd,North Ndebele +nds,Low German +nds_NL,Low Saxon +ne,Nepali +new,Newari +ng,Ndonga +nia,Nias +niu,Niuean +njo,Ao Naga +nl,Dutch +nl_BE,Flemish +nmg,Kwasio +nn,Norwegian Nynorsk +nnh,Ngiemboon +no,Norwegian +nog,Nogai +non,Old Norse +nov,Novial +nqo,N’Ko +nr,South Ndebele +nso,Northern Sotho +nus,Nuer +nv,Navajo +nwc,Classical Newari +ny,Nyanja +nym,Nyamwezi +nyn,Nyankole +nyo,Nyoro +nzi,Nzima +oc,Occitan +oj,Ojibwa +om,Oromo +or,Odia +os,Ossetic +osa,Osage +ota,Ottoman Turkish +pa,Punjabi +pag,Pangasinan +pal,Pahlavi +pam,Pampanga +pap,Papiamento +pau,Palauan +pcd,Picard +pcm,Nigerian Pidgin +pdc,Pennsylvania German +pdt,Plautdietsch +peo,Old Persian +pfl,Palatine German +phn,Phoenician +pi,Pali +pl,Polish +pms,Piedmontese +pnt,Pontic +pon,Pohnpeian +prg,Prussian +pro,Old Provençal +ps,Pashto +pt,Portuguese +pt_BR,Brazilian Portuguese +pt_PT,European Portuguese +qu,Quechua +quc,Kʼicheʼ +qug,Chimborazo Highland Quichua +raj,Rajasthani +rap,Rapanui +rar,Rarotongan +rgn,Romagnol +rif,Riffian +rm,Romansh +rn,Rundi +ro,Romanian +ro_MD,Moldavian +rof,Rombo +rom,Romany +root,Root +rtm,Rotuman +ru,Russian +rue,Rusyn +rug,Roviana +rup,Aromanian +rw,Kinyarwanda +rwk,Rwa +sa,Sanskrit +sad,Sandawe +sah,Sakha +sam,Samaritan Aramaic +saq,Samburu +sas,Sasak +sat,Santali +saz,Saurashtra +sba,Ngambay +sbp,Sangu +sc,Sardinian +scn,Sicilian +sco,Scots +sd,Sindhi +sdc,Sassarese Sardinian +sdh,Southern Kurdish +se,Northern Sami +see,Seneca +seh,Sena +sei,Seri +sel,Selkup +ses,Koyraboro Senni +sg,Sango +sga,Old Irish +sgs,Samogitian +sh,Serbo-Croatian +shi,Tachelhit +shn,Shan +shu,Chadian Arabic +si,Sinhala +sid,Sidamo +sk,Slovak +sl,Slovenian +sli,Lower Silesian +sly,Selayar +sm,Samoan +sma,Southern Sami +smj,Lule Sami +smn,Inari Sami +sms,Skolt Sami +sn,Shona +snk,Soninke +so,Somali +sog,Sogdien +sq,Albanian +sr,Serbian +sr_ME,Montenegrin +srn,Sranan Tongo +srr,Serer +ss,Swati +ssy,Saho +st,Southern Sotho +stq,Saterland Frisian +su,Sundanese +suk,Sukuma +sus,Susu +sux,Sumerian +sv,Swedish +sw,Swahili +sw_CD,Congo Swahili +swb,Comorian +syc,Classical Syriac +syr,Syriac +szl,Silesian +ta,Tamil +tcy,Tulu +te,Telugu +tem,Timne +teo,Teso +ter,Tereno +tet,Tetum +tg,Tajik +th,Thai +ti,Tigrinya +tig,Tigre +tiv,Tiv +tk,Turkmen +tkl,Tokelau +tkr,Tsakhur +tl,Tagalog +tlh,Klingon +tli,Tlingit +tly,Talysh +tmh,Tamashek +tn,Tswana +to,Tongan +tog,Nyasa Tonga +tpi,Tok Pisin +tr,Turkish +tru,Turoyo +trv,Taroko +ts,Tsonga +tsd,Tsakonian +tsi,Tsimshian +tt,Tatar +ttt,Muslim Tat +tum,Tumbuka +tvl,Tuvalu +tw,Twi +twq,Tasawaq +ty,Tahitian +tyv,Tuvinian +tzm,Central Atlas Tamazight +udm,Udmurt +ug,Uyghur +uga,Ugaritic +uk,Ukrainian +umb,Umbundu +und,Unknown language +ur,Urdu +uz,Uzbek +vai,Vai +ve,Venda +vec,Venetian +vep,Veps +vi,Vietnamese +vls,West Flemish +vmf,Main-Franconian +vo,Volapük +vot,Votic +vro,Võro +vun,Vunjo +wa,Walloon +wae,Walser +wal,Wolaytta +war,Waray +was,Washo +wbp,Warlpiri +wo,Wolof +wuu,Wu Chinese +xal,Kalmyk +xh,Xhosa +xmf,Mingrelian +xog,Soga +yao,Yao +yap,Yapese +yav,Yangben +ybb,Yemba +yi,Yiddish +yo,Yoruba +yrl,Nheengatu +yue,Cantonese +za,Zhuang +zap,Zapotec +zbl,Blissymbols +zea,Zeelandic +zen,Zenaga +zgh,Standard Moroccan Tamazight +zh,Chinese +zh_Hans,Simplified Chinese +zh_Hant,Traditional Chinese +zu,Zulu +zun,Zuni +zxx,No linguistic content +zza,Zaza diff --git a/CLDR-raw/script.csv b/CLDR-raw/script.csv new file mode 100644 index 0000000..0fed8bf --- /dev/null +++ b/CLDR-raw/script.csv @@ -0,0 +1,190 @@ +code,name +Adlm,Adlam +Afak,Afaka +Aghb,Caucasian Albanian +Ahom,Ahom +Arab,Arabic +Armi,Imperial Aramaic +Armn,Armenian +Avst,Avestan +Bali,Balinese +Bamu,Bamum +Bass,Bassa Vah +Batk,Batak +Beng,Bangla +Bhks,Bhaiksuki +Blis,Blissymbols +Bopo,Bopomofo +Brah,Brahmi +Brai,Braille +Bugi,Buginese +Buhd,Buhid +Cakm,Chakma +Cans,Unified Canadian Aboriginal Syllabics +Cari,Carian +Cham,Cham +Cher,Cherokee +Cirt,Cirth +Copt,Coptic +Cprt,Cypriot +Cyrl,Cyrillic +Cyrs,Old Church Slavonic Cyrillic +Deva,Devanagari +Dogr,Dogra +Dsrt,Deseret +Dupl,Duployan shorthand +Egyd,Egyptian demotic +Egyh,Egyptian hieratic +Egyp,Egyptian hieroglyphs +Elba,Elbasan +Elym,Elymaic +Ethi,Ethiopic +Geok,Georgian Khutsuri +Geor,Georgian +Glag,Glagolitic +Gong,Gunjala Gondi +Gonm,Masaram Gondi +Goth,Gothic +Gran,Grantha +Grek,Greek +Gujr,Gujarati +Guru,Gurmukhi +Hanb,Han with Bopomofo +Hang,Hangul +Hani,Han +Hano,Hanunoo +Hans,Simplified +Hant,Traditional +Hatr,Hatran +Hebr,Hebrew +Hira,Hiragana +Hluw,Anatolian Hieroglyphs +Hmng,Pahawh Hmong +Hmnp,Nyiakeng Puachue Hmong +Hrkt,Japanese syllabaries +Hung,Old Hungarian +Inds,Indus +Ital,Old Italic +Jamo,Jamo +Java,Javanese +Jpan,Japanese +Jurc,Jurchen +Kali,Kayah Li +Kana,Katakana +Khar,Kharoshthi +Khmr,Khmer +Khoj,Khojki +Knda,Kannada +Kore,Korean +Kpel,Kpelle +Kthi,Kaithi +Lana,Lanna +Laoo,Lao +Latf,Fraktur Latin +Latg,Gaelic Latin +Latn,Latin +Lepc,Lepcha +Limb,Limbu +Lina,Linear A +Linb,Linear B +Lisu,Fraser +Loma,Loma +Lyci,Lycian +Lydi,Lydian +Mahj,Mahajani +Maka,Makasar +Mand,Mandaean +Mani,Manichaean +Marc,Marchen +Maya,Mayan hieroglyphs +Medf,Medefaidrin +Mend,Mende +Merc,Meroitic Cursive +Mero,Meroitic +Mlym,Malayalam +Modi,Modi +Mong,Mongolian +Moon,Moon +Mroo,Mro +Mtei,Meitei Mayek +Mult,Multani +Mymr,Myanmar +Nand,Nandinagari +Narb,Old North Arabian +Nbat,Nabataean +Newa,Newa +Nkgb,Naxi Geba +Nkoo,N’Ko +Nshu,Nüshu +Ogam,Ogham +Olck,Ol Chiki +Orkh,Orkhon +Orya,Odia +Osge,Osage +Osma,Osmanya +Palm,Palmyrene +Pauc,Pau Cin Hau +Perm,Old Permic +Phag,Phags-pa +Phli,Inscriptional Pahlavi +Phlp,Psalter Pahlavi +Phlv,Book Pahlavi +Phnx,Phoenician +Plrd,Pollard Phonetic +Prti,Inscriptional Parthian +Rjng,Rejang +Rohg,Hanifi Rohingya +Roro,Rongorongo +Runr,Runic +Samr,Samaritan +Sara,Sarati +Sarb,Old South Arabian +Saur,Saurashtra +Sgnw,SignWriting +Shaw,Shavian +Shrd,Sharada +Sidd,Siddham +Sind,Khudawadi +Sinh,Sinhala +Sogd,Sogdian +Sogo,Old Sogdian +Sora,Sora Sompeng +Soyo,Soyombo +Sund,Sundanese +Sylo,Syloti Nagri +Syrc,Syriac +Syre,Estrangelo Syriac +Syrj,Western Syriac +Syrn,Eastern Syriac +Tagb,Tagbanwa +Takr,Takri +Tale,Tai Le +Talu,New Tai Lue +Taml,Tamil +Tang,Tangut +Tavt,Tai Viet +Telu,Telugu +Teng,Tengwar +Tfng,Tifinagh +Tglg,Tagalog +Thaa,Thaana +Thai,Thai +Tibt,Tibetan +Tirh,Tirhuta +Ugar,Ugaritic +Vaii,Vai +Visp,Visible Speech +Wara,Varang Kshiti +Wcho,Wancho +Wole,Woleai +Xpeo,Old Persian +Xsux,Sumero-Akkadian Cuneiform +Yiii,Yi +Zanb,Zanabazar Square +Zinh,Inherited +Zmth,Mathematical Notation +Zsye,Emoji +Zsym,Symbols +Zxxx,Unwritten +Zyyy,Common +Zzzz,Unknown Script diff --git a/CLDR-raw/territory.csv b/CLDR-raw/territory.csv new file mode 100644 index 0000000..57f5009 --- /dev/null +++ b/CLDR-raw/territory.csv @@ -0,0 +1,295 @@ +code,name +001,World +002,Africa +003,North America +005,South America +009,Oceania +011,Western Africa +013,Central America +014,Eastern Africa +015,Northern Africa +017,Middle Africa +018,Southern Africa +019,Americas +021,Northern America +029,Caribbean +030,Eastern Asia +034,Southern Asia +035,Southeast Asia +039,Southern Europe +053,Australasia +054,Melanesia +057,Micronesian Region +061,Polynesia +142,Asia +143,Central Asia +145,Western Asia +150,Europe +151,Eastern Europe +154,Northern Europe +155,Western Europe +202,Sub-Saharan Africa +419,Latin America +AC,Ascension Island +AD,Andorra +AE,United Arab Emirates +AF,Afghanistan +AG,Antigua & Barbuda +AI,Anguilla +AL,Albania +AM,Armenia +AO,Angola +AQ,Antarctica +AR,Argentina +AS,American Samoa +AT,Austria +AU,Australia +AW,Aruba +AX,Åland Islands +AZ,Azerbaijan +BA,Bosnia & Herzegovina +BB,Barbados +BD,Bangladesh +BE,Belgium +BF,Burkina Faso +BG,Bulgaria +BH,Bahrain +BI,Burundi +BJ,Benin +BL,St. Barthélemy +BM,Bermuda +BN,Brunei +BO,Bolivia +BQ,Caribbean Netherlands +BR,Brazil +BS,Bahamas +BT,Bhutan +BV,Bouvet Island +BW,Botswana +BY,Belarus +BZ,Belize +CA,Canada +CC,Cocos (Keeling) Islands +CD,Congo - Kinshasa +CF,Central African Republic +CG,Congo - Brazzaville +CH,Switzerland +CI,Côte d’Ivoire +CK,Cook Islands +CL,Chile +CM,Cameroon +CN,China +CO,Colombia +CP,Clipperton Island +CR,Costa Rica +CU,Cuba +CV,Cape Verde +CW,Curaçao +CX,Christmas Island +CY,Cyprus +CZ,Czechia +DE,Germany +DG,Diego Garcia +DJ,Djibouti +DK,Denmark +DM,Dominica +DO,Dominican Republic +DZ,Algeria +EA,Ceuta & Melilla +EC,Ecuador +EE,Estonia +EG,Egypt +EH,Western Sahara +ER,Eritrea +ES,Spain +ET,Ethiopia +EU,European Union +EZ,Eurozone +FI,Finland +FJ,Fiji +FK,Falkland Islands +FM,Micronesia +FO,Faroe Islands +FR,France +GA,Gabon +GB,United Kingdom +GD,Grenada +GE,Georgia +GF,French Guiana +GG,Guernsey +GH,Ghana +GI,Gibraltar +GL,Greenland +GM,Gambia +GN,Guinea +GP,Guadeloupe +GQ,Equatorial Guinea +GR,Greece +GS,South Georgia & South Sandwich Islands +GT,Guatemala +GU,Guam +GW,Guinea-Bissau +GY,Guyana +HK,Hong Kong SAR China +HM,Heard & McDonald Islands +HN,Honduras +HR,Croatia +HT,Haiti +HU,Hungary +IC,Canary Islands +ID,Indonesia +IE,Ireland +IL,Israel +IM,Isle of Man +IN,India +IO,British Indian Ocean Territory +IQ,Iraq +IR,Iran +IS,Iceland +IT,Italy +JE,Jersey +JM,Jamaica +JO,Jordan +JP,Japan +KE,Kenya +KG,Kyrgyzstan +KH,Cambodia +KI,Kiribati +KM,Comoros +KN,St. Kitts & Nevis +KP,North Korea +KR,South Korea +KW,Kuwait +KY,Cayman Islands +KZ,Kazakhstan +LA,Laos +LB,Lebanon +LC,St. Lucia +LI,Liechtenstein +LK,Sri Lanka +LR,Liberia +LS,Lesotho +LT,Lithuania +LU,Luxembourg +LV,Latvia +LY,Libya +MA,Morocco +MC,Monaco +MD,Moldova +ME,Montenegro +MF,St. Martin +MG,Madagascar +MH,Marshall Islands +MK,North Macedonia +ML,Mali +MM,Myanmar (Burma) +MN,Mongolia +MO,Macao SAR China +MP,Northern Mariana Islands +MQ,Martinique +MR,Mauritania +MS,Montserrat +MT,Malta +MU,Mauritius +MV,Maldives +MW,Malawi +MX,Mexico +MY,Malaysia +MZ,Mozambique +NA,Namibia +NC,New Caledonia +NE,Niger +NF,Norfolk Island +NG,Nigeria +NI,Nicaragua +NL,Netherlands +NO,Norway +NP,Nepal +NR,Nauru +NU,Niue +NZ,New Zealand +OM,Oman +PA,Panama +PE,Peru +PF,French Polynesia +PG,Papua New Guinea +PH,Philippines +PK,Pakistan +PL,Poland +PM,St. Pierre & Miquelon +PN,Pitcairn Islands +PR,Puerto Rico +PS,Palestinian Territories +PT,Portugal +PW,Palau +PY,Paraguay +QA,Qatar +QO,Outlying Oceania +RE,Réunion +RO,Romania +RS,Serbia +RU,Russia +RW,Rwanda +SA,Saudi Arabia +SB,Solomon Islands +SC,Seychelles +SD,Sudan +SE,Sweden +SG,Singapore +SH,St. Helena +SI,Slovenia +SJ,Svalbard & Jan Mayen +SK,Slovakia +SL,Sierra Leone +SM,San Marino +SN,Senegal +SO,Somalia +SR,Suriname +SS,South Sudan +ST,São Tomé & Príncipe +SV,El Salvador +SX,Sint Maarten +SY,Syria +SZ,Eswatini +TA,Tristan da Cunha +TC,Turks & Caicos Islands +TD,Chad +TF,French Southern Territories +TG,Togo +TH,Thailand +TJ,Tajikistan +TK,Tokelau +TL,Timor-Leste +TM,Turkmenistan +TN,Tunisia +TO,Tonga +TR,Turkey +TT,Trinidad & Tobago +TV,Tuvalu +TW,Taiwan +TZ,Tanzania +UA,Ukraine +UG,Uganda +UM,U.S. Outlying Islands +UN,United Nations +US,United States +UY,Uruguay +UZ,Uzbekistan +VA,Vatican City +VC,St. Vincent & Grenadines +VE,Venezuela +VG,British Virgin Islands +VI,U.S. Virgin Islands +VN,Vietnam +VU,Vanuatu +WF,Wallis & Futuna +WS,Samoa +XA,Pseudo-Accents +XB,Pseudo-Bidi +XK,Kosovo +YE,Yemen +YT,Mayotte +ZA,South Africa +ZM,Zambia +ZW,Zimbabwe +ZZ,Unknown Region diff --git a/README.md b/README.md index 79458f8..66d51b2 100644 --- a/README.md +++ b/README.md @@ -41,3 +41,6 @@ Transtats: https://transtats.fedoraproject.org/releases/ http://distrib-coffee.ipsl.jussieu.fr/pub/linux/fedora/linux/development/30/Everything/x86_64/os/Packages/l/ +# Sources + +Data in BCP47-raw folder comes from https://github.com/unicode-org/cldr/blob/master/common/main/en.xml From f425be782adbac25e49620933386968241ab3b32 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Jun 16 2019 06:05:35 +0000 Subject: [PATCH 3/10] add language, region and territory name from cldr --- diff --git a/build_stats.py b/build_stats.py index 2a7ddd9..d00fd0d 100755 --- a/build_stats.py +++ b/build_stats.py @@ -65,8 +65,15 @@ def parse(concat): data = clean_bcp47(data) info(data, "bcp47 data are cleaned") + data = add_cldr(data) + info(data, "cldr data are added") + + data = clean_cldr(data) + info(data, "cldr data are cleaned") + store(data, "3.result.csv") + def clean_0_basic(data): """String cleaning and drops useless 'review' columns""" @@ -143,7 +150,8 @@ def guess_bcp47(data): info(data, "* remove if lang endswith encoding values") # these are just re-encoded translations - store(data[data.lang.str.contains(".", regex=False)], '0.error.lang with point.csv') + store(data[data.lang.str.contains(".", regex=False)], + '0.error.lang with point.csv') data = data[~(data.lang.str.contains(".", regex=False))] info(data, "* remove if lang contains a point") @@ -163,6 +171,7 @@ def guess_bcp47(data): return data + def clean_bcp47(data): """Remove impossible values for language and region""" # remove region longer than 2 chars @@ -176,12 +185,61 @@ def clean_bcp47(data): info(data, "* remove if len(language)>3") # remove numeric languages - store(data[data.language.str.isdigit()], '0.error.languages is numeric.csv') + store(data[data.language.str.isdigit()], + '0.error.languages is numeric.csv') data = data[~(data.language.str.isdigit())] info(data, "* remove if language.isdigit()") + # set types + data.region = data.region.fillna('') + data.script = data.script.fillna('') + data = data.astype({'region': 'str', 'language': 'str', 'script': 'str'}) + + return data + + +def add_cldr(data): + """Load cldr data, merge it with""" + cldr_language = pandas.read_csv("CLDR-raw/language.csv") + cldr_language.name = cldr_language.name.str.lower() + + cldr_script = pandas.read_csv("CLDR-raw/script.csv") + cldr_script.code = cldr_script.code.str.lower() + cldr_script.name = cldr_script.name.str.lower() + + cldr_territory = pandas.read_csv("CLDR-raw/territory.csv") + cldr_territory.code = cldr_territory.code.str.lower() + cldr_territory.name = cldr_territory.name.str.lower() + + data = data.merge(cldr_language, how='left', + left_on='language', right_on='code') + data = data.rename(columns={'name': 'language_name'}) + data = data.drop('code', 1) + + data = data.merge(cldr_script, how='left', left_on='script', + right_on='code', suffixes=(False, 'script_')) + data = data.rename(columns={'name': 'script_name'}) + data = data.drop('code', 1) + + data = data.merge(cldr_territory, how='left', left_on='region', + right_on='code', suffixes=(False, 'territory_')) + data = data.rename(columns={'name': 'territory_name'}) + data = data.drop('code', 1) + + return data + + +def clean_cldr(data): + """Remove """ + # remove numeric languages + store(data[data.language_name.isnull()].drop_duplicates( + 'language'), '0.error.language not in cldr.csv') + data = data[~(data.language_name.isnull())] + info(data, "* remove languages non existing in CLDR") + return data + def info(dataset, step): """Print basic informations about current dataset""" print(" * "+step+" → we now have "+str(len(dataset))+" rows") From 1db46953eacc5be352f9770902a170f691759c16 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Jun 16 2019 06:07:37 +0000 Subject: [PATCH 4/10] add build_stats in readme --- diff --git a/README.md b/README.md index 66d51b2..29b96e1 100644 --- a/README.md +++ b/README.md @@ -28,12 +28,18 @@ Note, this represents about 7 GB for Fedora 30 and takes some time. `./download-f30-srpm-in-container.sh` -## Compute stats +## Compute data `./build.py` The result will be in multiple files inside the results folder. +## Produce stats + +`./build_stats.py` + +Applies data cleanups and enhancements (cldr name). + # See also AppData and Zanata statistics: https://github.com/Jibec/fedora-translation-statistics From 6398eb8d51d2c1dd8d831a77cf174a9bdf13368c Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Jun 16 2019 06:11:34 +0000 Subject: [PATCH 5/10] use results folder --- diff --git a/build_stats.py b/build_stats.py index d00fd0d..42ea48e 100755 --- a/build_stats.py +++ b/build_stats.py @@ -5,10 +5,13 @@ import argparse import os import pandas +result_folder = "" def main(): """Handle params""" + global result_folder + parser = argparse.ArgumentParser( description="Consolidate every result files and produce a clean concatenated update") parser.add_argument("--version", required=False, default="f30", @@ -16,7 +19,9 @@ def main(): args = parser.parse_args() - file = "./results/"+args.version+"/_concat.csv" + result_folder = "./results/"+args.version + + file = result_folder +"/_concat.csv" parse(file) @@ -247,7 +252,8 @@ def info(dataset, step): def store(dataset, name): """Store dataset to csv""" - dataset.to_csv(name, index=False) + global result_folder + dataset.to_csv(result_folder+"/"+name, index=False) if __name__ == '__main__': From b66459f832bef2c00913df9e7481a8e99ee4c29a Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Jun 16 2019 06:11:50 +0000 Subject: [PATCH 6/10] add f30 results --- diff --git a/results/f30/0.error.lang with point.csv b/results/f30/0.error.lang with point.csv new file mode 100644 index 0000000..703e7e4 --- /dev/null +++ b/results/f30/0.error.lang with point.csv @@ -0,0 +1,126 @@ +src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,full_lang,lang,script +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,16,41,37,1,4,32,648,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,2,5,46,687,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,597,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,0,0,48,692,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,542,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,48,636,558,1,57,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,48,636,640,1,57,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,0,0,48,692,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,18,123,98,27,559,4,11,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,663,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,635,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,4,13,44,679,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,1,3,47,689,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,798,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,0,0,48,692,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,48,636,537,1,57,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,48,636,677,1,57,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,739,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,577,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,742,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,643,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,703,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,3,41,42,0,0,46,652,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,633,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,2,5,46,687,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,667,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,694,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,2,5,46,687,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,659,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,773,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,487,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,530,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,3,10,45,682,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,454,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,732,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,736,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,741,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,693,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,695,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,48,636,626,1,57,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,2,3,3,1,3,46,687,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,48,636,525,1,57,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,46,578,682,1,57,2,58,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,564,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,609,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,590,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,609,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,9,24,26,0,0,40,669,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,676,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,93,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,0,0,48,692,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,2,3,3,1,3,46,687,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,650,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,508,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,0,0,48,692,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,48,636,496,1,57,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,2,5,46,687,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,48,636,499,1,57,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,481,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,2,3,4,0,0,47,690,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,0,0,48,692,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,0,0,0,0,0,49,693,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,0,0,48,692,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,213,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,38,322,249,0,0,11,371,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,542,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,0,0,48,692,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,1,3,47,689,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,48,636,464,1,57,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,0,0,48,692,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,1,2,47,690,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,48,636,498,1,57,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,3,6,4,0,0,46,687,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,619,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,6,10,10,1,3,42,680,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,719,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,666,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,0,0,0,2,3,47,690,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,2,5,46,687,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,717,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,2,5,46,687,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,48,636,511,1,57,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,47,598,657,1,57,1,38,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,577,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,714,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,704,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,638,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,513,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,0,0,48,692,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,3,41,41,0,0,46,652,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,0,0,0,0,0,49,693,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,4,61,67,0,0,45,632,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,2,3,3,0,0,47,690,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,3,6,5,0,0,46,687,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,48,636,436,1,57,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,574,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,595,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,11,86,95,1,3,37,604,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,33,262,228,2,5,14,426,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,33,262,228,2,5,14,426,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,0,0,0,2,3,47,690,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,0,0,0,2,3,47,690,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,613,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,0,0,48,692,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,0,0,0,0,0,49,693,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,48,636,489,1,57,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,48,636,467,1,57,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,0,0,48,692,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,6,53,12,0,0,43,640,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,0,0,48,692,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,1,2,47,690,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,545,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,0,0,0,2,3,47,690,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,2,4,3,0,0,47,689,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,48,636,495,1,57,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,512,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,0,0,0,0,0,49,693,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,2,5,46,687,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,0,0,0,2,3,47,690,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,779,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,32,287,361,2,8,15,398,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,0,0,0,2,3,47,690,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,90,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,49,693,94,0,0,0,0,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/nlpsolver/help/en/com.sun.star.comp.calc.nlpsolver.po,1,1,1,1,2,47,690,49,693,com.sun.star.comp.calc.nlpsolver.po,com.sun.star.comp.calc.nlpsolver,com.sun.star.comp.calc.nlpsolver, diff --git a/results/f30/0.error.language not in cldr.csv b/results/f30/0.error.language not in cldr.csv new file mode 100644 index 0000000..30ad90e --- /dev/null +++ b/results/f30/0.error.language not in cldr.csv @@ -0,0 +1,17 @@ +src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,script,language,region,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,,,, diff --git a/results/f30/0.error.languages is numeric.csv b/results/f30/0.error.languages is numeric.csv new file mode 100644 index 0000000..9650cd4 --- /dev/null +++ b/results/f30/0.error.languages is numeric.csv @@ -0,0 +1,2305 @@ +src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,script,language,region +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/sbasic/shared/01.po,67,465,452,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1382,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/sbasic/shared/03.po,41,121,190,0,0,6,24,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/scalc/00.po,90,286,306,0,0,111,659,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/scalc/01.po,7244,68739,68059,0,0,251,4416,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/scalc/02.po,121,804,784,0,0,2,6,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/scalc/04.po,187,1497,1385,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/scalc/05.po,119,798,782,0,0,18,55,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/scalc/06.po,1,3,4,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/schart/00.po,60,347,386,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/schart/01.po,972,11826,11154,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/schart/02.po,25,117,119,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/schart/04.po,32,133,131,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/sdraw/01.po,3,12,10,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/sdraw/04.po,103,489,432,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/shared/00.po,1034,10790,10486,0,0,533,4904,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/shared/01.po,5066,44511,41898,0,0,421,7451,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/shared/02.po,1833,20688,18716,0,0,349,8434,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/shared/04.po,274,1176,1180,0,0,39,895,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/shared/05.po,128,1250,1177,0,0,68,1090,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/shared/06.po,3,7,11,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/shared/07.po,7,82,76,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/simpress/00.po,163,902,920,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/simpress/01.po,1029,8333,7582,0,0,17,181,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/simpress/02.po,660,6509,5941,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/simpress/04.po,239,1138,1138,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/smath/00.po,66,355,363,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/smath/01.po,1551,13859,14435,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/smath/02.po,6,97,86,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/smath/04.po,26,135,127,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/smath/06.po,9,21,28,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/swriter/00.po,304,1796,1968,0,0,6,22,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/swriter/01.po,3324,33365,31083,0,0,22,428,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/swriter/02.po,426,3050,2896,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/swriter/04.po,254,1276,1275,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/sbasic/shared/01.po,4,4,4,0,0,63,461,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/sbasic/shared/02.po,0,0,0,0,0,198,1482,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/scalc/00.po,7,12,11,0,0,194,933,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/scalc/01.po,92,113,106,0,0,7403,73042,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/scalc/02.po,9,14,11,0,0,114,796,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/scalc/04.po,23,40,26,0,0,164,1457,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/scalc/05.po,0,0,0,0,0,137,853,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/schart/00.po,2,8,6,0,0,58,339,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/schart/01.po,12,12,12,0,0,960,11814,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/schart/02.po,0,0,0,0,0,25,117,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/schart/04.po,5,6,6,0,0,27,127,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/sdraw/00.po,2,8,6,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/sdraw/01.po,3,12,10,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/sdraw/04.po,41,116,104,0,0,62,373,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/shared/00.po,38,58,63,0,0,1529,15636,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/shared/01.po,420,564,461,0,0,5067,51398,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/shared/02.po,89,126,135,0,0,2093,28996,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/shared/04.po,25,43,42,0,0,288,2028,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/shared/05.po,1,2,3,0,0,195,2338,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/shared/07.po,4,29,25,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/simpress/00.po,10,18,18,0,0,153,884,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/simpress/01.po,15,15,15,0,0,1031,8499,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/simpress/02.po,10,17,13,0,0,650,6492,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/simpress/04.po,28,41,37,0,0,211,1097,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/smath/00.po,54,228,197,0,0,12,127,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/smath/01.po,65,145,130,0,0,1486,13714,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/smath/02.po,6,97,67,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/smath/04.po,24,111,95,0,0,2,24,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/swriter/00.po,47,128,124,0,0,263,1690,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/swriter/01.po,109,113,115,0,0,3237,33680,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/swriter/02.po,16,23,21,0,0,410,3027,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/swriter/04.po,30,77,69,0,0,224,1199,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/sbasic/shared/01.po,60,386,385,0,0,7,79,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1524,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/scalc/00.po,63,155,184,0,0,138,790,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/scalc/01.po,5650,49831,50276,0,0,1845,23324,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/scalc/02.po,118,796,825,0,0,5,14,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/scalc/04.po,181,1428,1559,0,0,6,69,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/scalc/05.po,91,734,795,0,0,46,119,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/schart/00.po,49,303,344,0,0,11,44,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/schart/01.po,880,10383,10760,0,0,92,1443,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/schart/02.po,25,117,120,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/schart/04.po,32,133,152,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/sdraw/01.po,3,12,14,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/sdraw/04.po,102,486,507,0,0,1,3,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/shared/00.po,807,7330,7941,0,0,760,8364,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/shared/01.po,0,0,0,0,0,5487,51962,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/shared/02.po,1750,19718,20483,0,0,432,9404,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/shared/04.po,238,983,1173,0,0,75,1088,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/shared/05.po,109,1125,1167,0,0,87,1215,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/shared/07.po,4,29,29,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/simpress/00.po,154,873,928,0,0,9,29,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/simpress/01.po,864,6526,6365,0,0,182,1988,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/simpress/02.po,653,6468,6626,0,0,7,41,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/simpress/04.po,196,985,1056,0,0,43,153,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/smath/00.po,54,228,229,0,0,12,127,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/smath/01.po,1114,11612,11577,0,0,437,2247,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/smath/02.po,6,97,95,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/smath/04.po,25,130,141,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/swriter/00.po,213,1068,1160,0,0,97,750,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/swriter/01.po,2746,25858,26082,0,0,600,7935,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/swriter/02.po,376,2483,2441,0,0,50,567,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/swriter/04.po,248,1239,1468,0,0,6,37,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/sbasic/shared/01.po,67,465,436,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1453,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/sbasic/shared/03.po,47,145,157,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/scalc/00.po,201,945,1030,0,0,0,0,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/scalc/01.po,7495,73155,66925,0,0,0,0,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/scalc/02.po,123,810,816,0,0,0,0,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/scalc/04.po,187,1497,1285,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/scalc/05.po,137,853,806,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/scalc/06.po,1,3,4,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/schart/00.po,60,347,362,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/schart/01.po,972,11826,11121,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/schart/02.po,25,117,109,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/schart/04.po,32,133,130,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/sdraw/00.po,2,8,10,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/sdraw/01.po,3,12,11,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/sdraw/04.po,103,489,451,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/shared/00.po,1567,15694,15787,0,0,0,0,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/shared/01.po,5487,51962,48455,0,0,0,0,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/shared/02.po,2182,29122,27316,0,0,0,0,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/shared/04.po,313,2071,1923,0,0,0,0,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/shared/05.po,196,2340,2310,0,0,0,0,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/shared/06.po,3,7,12,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/shared/07.po,7,82,75,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/simpress/00.po,163,902,904,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/simpress/01.po,1046,8514,7857,0,0,0,0,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/simpress/02.po,660,6509,6168,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/simpress/04.po,239,1138,1098,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/smath/00.po,66,355,330,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/smath/01.po,1551,13859,12667,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/smath/02.po,6,97,84,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/smath/04.po,26,135,121,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/smath/06.po,9,21,34,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/swriter/00.po,310,1818,1850,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/swriter/01.po,3346,33793,31143,0,0,0,0,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/swriter/02.po,426,3050,2934,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/swriter/04.po,254,1276,1251,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/sbasic/shared/01.po,57,336,327,0,0,10,129,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/sbasic/shared/02.po,183,1139,1116,0,0,15,343,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/scalc/00.po,61,152,171,0,0,140,793,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/scalc/01.po,5405,46720,42259,0,0,2090,26435,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/scalc/02.po,115,769,727,0,0,8,41,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/scalc/04.po,167,1225,1086,0,0,20,272,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/scalc/05.po,76,591,539,0,0,61,262,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/schart/00.po,47,249,287,0,0,13,98,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/schart/01.po,827,9792,8750,0,0,145,2034,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/schart/02.po,25,117,105,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/schart/04.po,32,133,129,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/sdraw/01.po,3,12,17,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/sdraw/04.po,101,455,464,0,0,2,34,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/shared/00.po,731,5996,5704,0,0,836,9698,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/shared/01.po,0,0,0,0,0,5487,51962,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/shared/02.po,1680,18926,16904,0,0,502,10196,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/shared/04.po,234,960,986,0,0,79,1111,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/shared/05.po,104,1055,949,0,0,92,1285,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/shared/07.po,4,29,24,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/simpress/00.po,151,844,844,0,0,12,58,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/simpress/01.po,854,6341,5803,0,0,192,2173,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/simpress/02.po,641,6069,5515,0,0,19,440,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/simpress/04.po,185,900,860,0,0,54,238,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/smath/00.po,54,228,233,0,0,12,127,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/smath/01.po,1046,11172,10523,0,0,505,2687,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/smath/02.po,5,56,46,0,0,1,41,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/smath/04.po,25,130,120,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/swriter/00.po,212,1065,1041,0,0,98,753,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/swriter/01.po,2619,23940,21818,0,0,727,9853,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/swriter/02.po,365,2425,2236,0,0,61,625,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/swriter/04.po,186,1010,998,0,0,68,266,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/sbasic/shared/01.po,57,336,327,0,0,10,129,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/sbasic/shared/02.po,183,1139,1116,0,0,15,343,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/scalc/00.po,61,152,171,0,0,140,793,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/scalc/01.po,5405,46720,42259,0,0,2090,26435,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/scalc/02.po,115,769,727,0,0,8,41,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/scalc/04.po,167,1225,1086,0,0,20,272,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/scalc/05.po,76,591,539,0,0,61,262,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/schart/00.po,47,249,287,0,0,13,98,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/schart/01.po,827,9792,8750,0,0,145,2034,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/schart/02.po,25,117,105,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/schart/04.po,32,133,129,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/sdraw/01.po,3,12,17,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/sdraw/04.po,101,455,464,0,0,2,34,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/shared/00.po,731,5996,5704,0,0,836,9698,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/shared/01.po,0,0,0,0,0,5487,51962,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/shared/02.po,1680,18926,16904,0,0,502,10196,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/shared/04.po,234,960,986,0,0,79,1111,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/shared/05.po,104,1055,949,0,0,92,1285,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/shared/07.po,4,29,24,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/simpress/00.po,151,844,844,0,0,12,58,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/simpress/01.po,854,6341,5803,0,0,192,2173,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/simpress/02.po,641,6069,5515,0,0,19,440,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/simpress/04.po,185,900,860,0,0,54,238,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/smath/00.po,54,228,233,0,0,12,127,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/smath/01.po,1046,11172,10523,0,0,505,2687,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/smath/02.po,5,56,46,0,0,1,41,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/smath/04.po,25,130,120,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/swriter/00.po,212,1065,1042,0,0,98,753,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/swriter/01.po,2619,23940,21818,0,0,727,9853,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/swriter/02.po,365,2425,2236,0,0,61,625,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/swriter/04.po,186,1010,998,0,0,68,266,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/sbasic/shared/01.po,57,336,92,0,0,10,129,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/sbasic/shared/02.po,145,684,200,0,0,53,798,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/scalc/00.po,60,129,109,0,0,141,816,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/scalc/01.po,5153,43529,11955,0,0,2342,29626,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/scalc/02.po,114,779,199,0,0,9,31,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/scalc/04.po,163,1185,257,0,0,24,312,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/scalc/05.po,73,464,145,0,0,64,389,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/schart/00.po,47,249,144,0,0,13,98,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/schart/01.po,303,2008,528,0,0,669,9818,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/schart/02.po,25,117,30,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/schart/04.po,31,132,36,0,0,1,1,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/sdraw/00.po,2,8,2,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/sdraw/01.po,3,12,3,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/sdraw/04.po,99,439,129,0,0,4,50,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/shared/00.po,740,6250,1489,0,0,827,9444,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/shared/01.po,0,0,0,0,0,5487,51962,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/shared/02.po,1627,17867,2984,0,0,555,11255,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/shared/04.po,227,909,393,0,0,86,1162,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/shared/05.po,94,941,163,0,0,102,1399,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/shared/07.po,4,29,19,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/simpress/00.po,151,832,281,0,0,12,70,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/simpress/01.po,822,5915,1179,0,0,224,2599,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/simpress/02.po,642,6224,1136,0,0,18,285,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/simpress/04.po,177,802,282,0,0,62,336,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/smath/00.po,53,224,106,0,0,13,131,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/smath/01.po,871,10442,2586,0,0,680,3417,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/smath/02.po,6,97,13,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/smath/04.po,25,130,37,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/swriter/00.po,212,1065,463,0,0,98,753,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/swriter/01.po,2523,22062,4051,0,0,823,11731,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/swriter/02.po,363,2377,673,0,0,63,673,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/swriter/04.po,225,1052,404,0,0,29,224,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/sbasic/shared/01.po,56,319,268,0,0,11,146,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/sbasic/shared/02.po,129,972,832,0,0,69,510,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/scalc/00.po,44,130,132,0,0,157,815,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/scalc/01.po,3654,25610,21345,0,0,3841,47545,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/scalc/02.po,113,777,664,0,0,10,33,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/scalc/04.po,159,1251,1077,0,0,28,246,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/scalc/05.po,52,578,532,0,0,85,275,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/schart/00.po,29,182,185,0,0,31,165,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/schart/01.po,490,4112,3252,0,0,482,7714,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/schart/02.po,2,4,4,0,0,23,113,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/schart/04.po,7,8,9,0,0,25,125,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/sdraw/00.po,2,8,10,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/sdraw/01.po,3,12,10,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/sdraw/04.po,49,108,99,0,0,54,381,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/shared/00.po,426,1333,1201,0,0,1141,14361,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/shared/01.po,2092,9314,7488,0,0,3395,42648,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/shared/02.po,717,2319,2000,0,0,1465,26803,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/shared/04.po,187,706,605,0,0,126,1365,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/shared/05.po,90,875,773,0,0,106,1465,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/shared/07.po,3,27,25,0,0,4,55,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/simpress/00.po,24,43,42,0,0,139,859,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/simpress/01.po,388,1374,1169,0,0,658,7140,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/simpress/02.po,114,351,261,0,0,546,6158,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/simpress/04.po,21,30,38,0,0,218,1108,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/smath/00.po,21,78,71,0,0,45,277,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/smath/01.po,390,985,960,0,0,1161,12874,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/smath/02.po,2,4,4,0,0,4,93,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/smath/04.po,4,11,9,0,0,22,124,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/swriter/00.po,107,459,438,0,0,203,1359,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/swriter/01.po,1368,7925,6893,0,0,1978,25868,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/swriter/02.po,125,195,167,0,0,301,2855,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/swriter/04.po,112,216,170,0,0,142,1060,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/sbasic/shared/01.po,60,386,418,0,0,7,79,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1642,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/scalc/00.po,66,160,189,0,0,135,785,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/scalc/01.po,6343,54979,58381,0,0,1152,18176,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/scalc/02.po,118,796,929,0,0,5,14,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/scalc/04.po,184,1473,1599,0,0,3,24,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/scalc/05.po,92,751,883,0,0,45,102,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/schart/00.po,55,327,462,0,0,5,20,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/schart/01.po,900,10722,12154,0,0,72,1104,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/schart/02.po,25,117,125,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/schart/04.po,32,133,165,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/sdraw/00.po,2,8,10,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/sdraw/01.po,3,12,16,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/sdraw/04.po,103,489,549,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/shared/00.po,861,8417,9333,0,0,706,7277,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/shared/01.po,4016,33288,36675,0,0,1471,18674,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/shared/02.po,1756,19697,21812,0,0,426,9425,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/shared/04.po,238,983,1113,0,0,75,1088,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/shared/05.po,109,1125,1236,0,0,87,1215,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/shared/07.po,4,29,30,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/simpress/00.po,157,878,1012,0,0,6,24,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/simpress/01.po,752,5586,6176,0,0,294,2928,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/simpress/02.po,659,6480,7205,0,0,1,29,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/simpress/04.po,200,1002,1146,0,0,39,136,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/smath/00.po,54,228,267,0,0,12,127,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/smath/01.po,1495,12600,13461,0,0,56,1259,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/smath/02.po,6,97,102,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/smath/04.po,26,135,157,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/swriter/00.po,229,1156,1421,0,0,81,662,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/swriter/01.po,2795,26521,29134,0,0,551,7272,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/swriter/02.po,389,2651,2941,0,0,37,399,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/swriter/04.po,251,1257,1475,0,0,3,19,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/sbasic/shared/01.po,67,465,505,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1643,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po,47,145,174,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/scalc/00.po,188,867,1198,0,0,13,78,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/scalc/01.po,6640,58419,62215,0,0,855,14736,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/scalc/02.po,123,810,952,0,0,0,0,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/scalc/04.po,187,1497,1623,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/scalc/05.po,137,853,987,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/scalc/06.po,1,3,4,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/schart/00.po,60,347,493,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/schart/01.po,955,11456,12990,0,0,17,370,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/schart/02.po,25,117,125,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/schart/04.po,32,133,165,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/sdraw/00.po,2,8,12,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/sdraw/01.po,3,12,16,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/sdraw/04.po,103,489,549,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/shared/00.po,1288,12644,15070,0,0,279,3050,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/shared/01.po,4897,42296,46657,435,5866,155,3800,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/shared/02.po,2065,26548,29288,110,2263,7,311,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/shared/04.po,297,1564,1741,0,0,16,507,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/shared/05.po,163,1864,2046,0,0,33,476,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/shared/06.po,3,7,11,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/shared/07.po,7,82,88,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/simpress/00.po,163,902,1051,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/simpress/01.po,857,6596,7301,0,0,189,1918,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/simpress/02.po,660,6509,7257,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/simpress/04.po,239,1138,1336,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/smath/00.po,66,355,432,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/smath/01.po,1551,13859,14823,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/smath/02.po,6,97,102,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/smath/04.po,26,135,157,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/smath/06.po,9,21,31,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/swriter/00.po,310,1818,2465,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/swriter/01.po,3209,31724,35071,122,1568,15,501,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/swriter/02.po,426,3050,3367,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/swriter/04.po,254,1276,1498,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/sbasic/shared/01.po,67,465,385,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1260,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/sbasic/shared/03.po,47,145,142,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/scalc/00.po,201,945,954,0,0,0,0,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/scalc/01.po,7495,73155,60024,0,0,0,0,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/scalc/02.po,123,810,688,0,0,0,0,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/scalc/04.po,187,1497,1187,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/scalc/05.po,137,853,736,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/scalc/06.po,1,3,3,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/schart/00.po,60,347,352,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/schart/01.po,972,11826,9453,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/schart/02.po,25,117,92,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/schart/04.po,32,133,122,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/sdraw/00.po,2,8,10,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/sdraw/01.po,3,12,10,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/sdraw/04.po,103,489,415,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/shared/00.po,1567,15694,14162,0,0,0,0,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/shared/01.po,5487,51962,41605,0,0,0,0,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/shared/02.po,2182,29122,22937,0,0,0,0,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/shared/04.po,313,2071,1740,0,0,0,0,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/shared/05.po,196,2340,1950,0,0,0,0,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/shared/06.po,3,7,9,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/shared/07.po,7,82,68,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/simpress/00.po,163,902,843,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/simpress/01.po,1046,8514,6837,0,0,0,0,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/simpress/02.po,660,6509,5015,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/simpress/04.po,239,1138,971,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/smath/00.po,66,355,337,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/smath/01.po,1551,13859,11550,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/smath/02.po,6,97,82,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/smath/04.po,26,135,125,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/smath/06.po,9,21,31,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/swriter/00.po,310,1818,1832,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/swriter/01.po,3346,33793,27074,0,0,0,0,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/swriter/02.po,426,3050,2520,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/swriter/04.po,254,1276,1163,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/sbasic/shared/01.po,67,465,437,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1282,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/sbasic/shared/03.po,47,145,92,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/scalc/00.po,201,945,900,0,0,0,0,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/scalc/01.po,7495,73155,65251,0,0,0,0,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/scalc/02.po,123,810,672,0,0,0,0,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/scalc/04.po,187,1497,1341,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/scalc/05.po,137,853,801,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/scalc/06.po,1,3,2,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/schart/00.po,60,347,306,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/schart/01.po,972,11826,9905,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/schart/02.po,25,117,92,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/schart/04.po,32,133,111,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/sdraw/00.po,2,8,10,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/sdraw/01.po,3,12,12,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/sdraw/04.po,103,489,423,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/shared/00.po,1567,15694,14117,0,0,0,0,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/shared/01.po,5487,51962,45545,0,0,0,0,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/shared/02.po,2182,29122,24576,0,0,0,0,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/shared/04.po,313,2071,1788,0,0,0,0,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/shared/05.po,196,2340,2051,0,0,0,0,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/shared/06.po,3,7,6,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/shared/07.po,7,82,75,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/simpress/00.po,163,902,813,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/simpress/01.po,1046,8514,7387,0,0,0,0,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/simpress/02.po,660,6509,6234,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/simpress/04.po,239,1138,1027,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/smath/00.po,66,355,296,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/smath/01.po,1551,13859,12624,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/smath/02.po,6,97,80,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/smath/04.po,26,135,123,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/smath/06.po,9,21,20,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/swriter/00.po,310,1818,1627,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/swriter/01.po,3346,33793,29147,0,0,0,0,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/swriter/02.po,426,3050,2748,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/swriter/04.po,254,1276,1129,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/sbasic/shared/01.po,67,465,548,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1423,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/sbasic/shared/03.po,47,145,140,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/scalc/00.po,201,945,1048,0,0,0,0,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/scalc/01.po,7495,73155,68446,0,0,0,0,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/scalc/02.po,123,810,729,0,0,0,0,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/scalc/04.po,187,1497,1454,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/scalc/05.po,137,853,810,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/scalc/06.po,1,3,2,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/schart/00.po,60,347,346,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/schart/01.po,972,11826,11006,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/schart/02.po,25,117,98,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/schart/04.po,33,138,129,0,0,0,0,33,138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/sdraw/01.po,3,12,49,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/sdraw/04.po,103,489,518,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/shared/00.po,1567,15694,15879,0,0,0,0,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/shared/01.po,5487,51962,49527,0,0,0,0,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/shared/02.po,2182,29122,26918,0,0,0,0,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/shared/04.po,313,2071,2020,0,0,0,0,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/shared/05.po,196,2340,2219,0,0,0,0,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/shared/06.po,3,7,5,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/shared/07.po,7,82,73,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/simpress/00.po,163,902,1027,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/simpress/01.po,1046,8514,8152,0,0,0,0,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/simpress/02.po,660,6509,6235,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/simpress/04.po,239,1138,1135,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/smath/00.po,66,355,378,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/smath/01.po,1551,13859,13545,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/smath/02.po,6,97,88,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/smath/04.po,26,135,114,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/smath/06.po,9,21,22,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/swriter/00.po,310,1818,1851,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/swriter/01.po,3346,33793,31847,0,0,0,0,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/swriter/02.po,426,3050,3022,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/swriter/04.po,254,1276,1170,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/sbasic/shared/01.po,52,290,137,0,0,15,175,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/sbasic/shared/02.po,177,1092,453,0,0,21,390,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/scalc/00.po,60,129,113,0,0,141,816,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/scalc/01.po,4661,41924,16820,0,0,2834,31231,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/scalc/02.po,110,724,245,0,0,13,86,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/scalc/04.po,163,1184,466,0,0,24,313,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/scalc/05.po,72,453,152,0,0,65,400,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/schart/00.po,47,249,175,0,0,13,98,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/schart/01.po,321,2167,643,0,0,651,9659,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/schart/02.po,21,103,26,0,0,4,14,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/schart/04.po,31,132,43,0,0,1,1,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/sdraw/00.po,2,8,4,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/sdraw/01.po,3,12,6,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/sdraw/04.po,98,427,218,0,0,5,62,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/shared/00.po,722,6192,1843,0,0,845,9502,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/shared/01.po,3390,24593,8080,0,0,2097,27369,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/shared/02.po,1649,18428,6078,0,0,533,10694,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/shared/04.po,229,911,370,0,0,84,1160,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/shared/05.po,94,938,240,0,0,102,1402,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/shared/07.po,4,29,11,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/simpress/00.po,153,861,472,0,0,10,41,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/simpress/01.po,844,6178,1410,0,0,202,2336,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/simpress/02.po,632,6276,1331,0,0,28,233,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/simpress/04.po,177,803,308,0,0,62,335,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/smath/00.po,53,224,126,0,0,13,131,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/smath/01.po,1038,11285,3923,0,0,513,2574,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/smath/02.po,6,97,23,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/smath/04.po,25,130,36,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/swriter/00.po,211,1036,659,0,0,99,782,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/swriter/01.po,2557,22956,6741,0,0,789,10837,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/swriter/02.po,363,2432,1072,0,0,63,618,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/swriter/04.po,228,1023,543,0,0,26,253,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/sbasic/shared/01.po,67,465,503,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1554,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/sbasic/shared/03.po,47,145,164,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/scalc/00.po,196,920,955,0,0,5,25,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/scalc/01.po,7487,72880,74445,0,0,8,275,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/scalc/02.po,121,804,827,0,0,2,6,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/scalc/04.po,187,1497,1536,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/scalc/05.po,137,853,871,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/scalc/06.po,1,3,3,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/schart/00.po,60,347,346,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/schart/01.po,972,11826,12209,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/schart/02.po,25,117,119,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/schart/04.po,32,133,146,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/sdraw/00.po,2,8,16,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/sdraw/01.po,3,12,13,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/sdraw/04.po,103,489,510,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/shared/00.po,1550,15490,16298,0,0,17,204,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/shared/01.po,5483,51844,52413,0,0,4,118,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/shared/02.po,2181,29096,29803,0,0,1,26,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/shared/04.po,311,2067,2181,0,0,2,4,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/shared/05.po,196,2340,2505,0,0,0,0,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/shared/06.po,3,7,7,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/shared/07.po,7,82,74,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/simpress/00.po,163,902,958,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/simpress/01.po,1046,8514,8630,0,0,0,0,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/simpress/02.po,660,6509,7007,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/simpress/04.po,239,1138,1178,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/smath/00.po,66,355,371,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/smath/01.po,1551,13859,13993,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/smath/02.po,6,97,95,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/smath/04.po,26,135,138,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/smath/06.po,9,21,21,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/swriter/00.po,310,1818,1943,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/swriter/01.po,3346,33793,33821,0,0,0,0,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/swriter/02.po,426,3050,3049,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/swriter/04.po,254,1276,1321,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/sbasic/shared/01.po,67,465,470,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1498,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/sbasic/shared/03.po,47,145,145,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/scalc/00.po,201,945,949,0,0,0,0,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/scalc/01.po,7495,73155,73423,0,0,0,0,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/scalc/02.po,123,810,809,0,0,0,0,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/scalc/04.po,187,1497,1516,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/scalc/05.po,137,853,862,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/scalc/06.po,1,3,3,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/schart/00.po,60,347,341,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/schart/01.po,972,11826,11797,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/schart/02.po,25,117,117,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/schart/04.po,32,133,133,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/sdraw/01.po,3,12,12,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/sdraw/04.po,103,489,490,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/shared/00.po,1567,15694,15765,0,0,0,0,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/shared/01.po,5487,51962,52267,0,0,0,0,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/shared/02.po,2182,29122,29251,0,0,0,0,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/shared/04.po,313,2071,2092,0,0,0,0,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/shared/05.po,196,2340,2348,0,0,0,0,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/shared/06.po,3,7,8,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/shared/07.po,7,82,82,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/simpress/00.po,163,902,903,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/simpress/01.po,1046,8514,8536,0,0,0,0,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/simpress/02.po,660,6509,6602,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/simpress/04.po,239,1138,1139,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/smath/00.po,66,355,364,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/smath/01.po,1551,13859,13890,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/smath/02.po,6,97,97,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/smath/04.po,26,135,135,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/smath/06.po,9,21,28,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/swriter/00.po,310,1818,1817,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/swriter/01.po,3346,33793,33991,0,0,0,0,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/swriter/02.po,426,3050,3095,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/swriter/04.po,254,1276,1316,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/sbasic/shared/01.po,57,336,336,0,0,10,129,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/sbasic/shared/02.po,195,1404,1404,0,0,3,78,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/scalc/00.po,61,152,152,0,0,140,793,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/scalc/01.po,5487,48030,47585,0,0,2008,25125,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/scalc/02.po,116,782,782,0,0,7,28,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/scalc/04.po,168,1260,1257,0,0,19,237,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/scalc/05.po,85,705,705,0,0,52,148,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/schart/00.po,47,249,249,0,0,13,98,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/schart/01.po,831,9897,9889,0,0,141,1929,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/schart/02.po,25,117,117,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/schart/04.po,32,133,133,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/sdraw/01.po,3,12,12,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/sdraw/04.po,102,486,480,0,0,1,3,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/shared/00.po,740,6251,6254,0,0,827,9443,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/shared/01.po,3664,28729,28708,0,0,1823,23233,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/shared/02.po,1696,19241,19231,0,0,486,9881,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/shared/04.po,234,960,957,0,0,79,1111,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/shared/05.po,106,1108,1109,0,0,90,1232,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/shared/07.po,4,29,29,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/simpress/00.po,154,873,875,0,0,9,29,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/simpress/01.po,860,6456,6447,0,0,186,2058,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/simpress/02.po,648,6400,6398,0,0,12,109,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/simpress/04.po,185,900,898,0,0,54,238,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/smath/00.po,54,228,226,0,0,12,127,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/smath/01.po,1047,11180,11198,0,0,504,2679,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/smath/02.po,5,56,56,0,0,1,41,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/smath/04.po,25,130,130,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/swriter/00.po,210,1037,977,0,0,100,781,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/swriter/01.po,2644,24523,24465,0,0,702,9270,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/swriter/02.po,365,2425,2417,0,0,61,625,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/swriter/04.po,241,1111,1062,0,0,13,165,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/sbasic/shared/01.po,29,42,40,0,0,38,423,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/sbasic/shared/02.po,57,103,90,0,0,141,1379,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/scalc/00.po,62,131,137,0,0,139,814,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/scalc/01.po,4238,32545,29160,0,0,3257,40610,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/scalc/02.po,116,782,725,0,0,7,28,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/scalc/04.po,157,1072,956,0,0,30,425,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/scalc/05.po,71,417,368,0,0,66,436,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/schart/00.po,38,216,190,0,0,22,131,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/schart/01.po,357,2122,1897,0,0,615,9704,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/schart/02.po,25,117,105,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/schart/04.po,32,133,124,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/sdraw/00.po,2,8,10,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/sdraw/01.po,3,12,11,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/sdraw/04.po,76,222,196,0,0,27,267,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/shared/00.po,586,4232,3775,0,0,981,11462,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/shared/01.po,1780,3487,3221,0,0,3707,48475,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/shared/02.po,680,1261,1199,0,0,1502,27861,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/shared/04.po,107,147,166,0,0,206,1924,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/shared/05.po,111,1155,1053,0,0,85,1185,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/shared/07.po,4,29,22,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/simpress/00.po,87,279,294,0,0,76,623,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/simpress/01.po,397,738,717,0,0,649,7776,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/simpress/02.po,438,1268,1186,0,0,222,5241,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/simpress/04.po,156,594,535,0,0,83,544,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/smath/00.po,28,90,100,0,0,38,265,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/smath/01.po,394,773,779,0,0,1157,13086,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/smath/02.po,2,4,4,0,0,4,93,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/smath/04.po,10,12,12,0,0,16,123,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/swriter/00.po,282,1700,1682,0,0,28,118,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/swriter/01.po,3234,32354,29412,0,0,112,1439,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/swriter/02.po,426,3050,2802,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/swriter/04.po,254,1276,1263,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/sbasic/shared/01.po,67,465,495,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1647,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/sbasic/shared/03.po,47,145,169,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/scalc/00.po,200,937,1406,0,0,1,8,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/scalc/01.po,7343,70367,77202,0,0,152,2788,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/scalc/02.po,122,806,908,0,0,1,4,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/scalc/04.po,187,1497,1770,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/scalc/05.po,137,853,990,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/scalc/06.po,1,3,5,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/schart/00.po,60,347,430,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/schart/01.po,964,11656,12963,0,0,8,170,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/schart/02.po,25,117,127,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/schart/04.po,32,133,176,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/sdraw/00.po,2,8,10,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/sdraw/01.po,3,12,16,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/sdraw/04.po,103,489,628,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/shared/00.po,1231,12468,15329,0,0,336,3226,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/shared/01.po,5175,46042,50235,0,0,312,5920,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/shared/02.po,1861,21411,24087,0,0,321,7711,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/shared/04.po,284,1369,1799,0,0,29,702,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/shared/05.po,142,1475,1699,0,0,54,865,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/shared/06.po,3,7,13,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/shared/07.po,7,82,84,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/simpress/00.po,163,902,1145,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/simpress/01.po,1030,8340,9031,0,0,16,174,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/simpress/02.po,660,6509,7209,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/simpress/04.po,239,1138,1400,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/smath/00.po,66,355,439,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/smath/01.po,1544,13733,14493,0,0,7,126,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/smath/02.po,6,97,105,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/smath/04.po,26,135,160,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/smath/06.po,8,18,40,0,0,1,3,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/swriter/00.po,304,1795,2446,0,0,6,23,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/swriter/01.po,3344,33787,37514,0,0,2,6,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/swriter/02.po,426,3050,3315,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/swriter/04.po,254,1276,1732,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/sbasic/shared/01.po,63,408,298,0,0,4,57,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/sbasic/shared/02.po,198,1482,977,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/scalc/00.po,63,155,146,0,0,138,790,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/scalc/01.po,6053,51653,36625,0,0,1442,21502,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/scalc/02.po,118,796,557,0,0,5,14,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/scalc/04.po,183,1448,984,0,0,4,49,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/scalc/05.po,92,751,584,0,0,45,102,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/scalc/06.po,1,3,2,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/schart/00.po,60,347,293,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/schart/01.po,960,11620,7648,0,0,12,206,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/schart/02.po,25,117,84,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/schart/04.po,32,133,92,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/sdraw/00.po,2,8,6,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/sdraw/01.po,3,12,10,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/sdraw/04.po,103,489,353,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/shared/00.po,816,7467,5344,0,0,751,8227,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/shared/01.po,3948,32487,22551,0,0,1539,19475,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/shared/02.po,1736,19471,12543,0,0,446,9651,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/shared/04.po,238,983,690,0,0,75,1088,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/shared/05.po,109,1125,732,0,0,87,1215,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/shared/06.po,3,7,6,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/shared/07.po,7,82,46,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/simpress/00.po,154,873,695,0,0,9,29,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/simpress/01.po,896,6894,4599,0,0,150,1620,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/simpress/02.po,659,6480,4413,0,0,1,29,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/simpress/04.po,200,1002,706,0,0,39,136,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/smath/00.po,66,355,254,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/smath/01.po,1551,13859,9871,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/smath/02.po,6,97,57,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/smath/04.po,26,135,96,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/smath/06.po,9,21,18,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/swriter/00.po,216,1067,907,0,0,94,751,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/swriter/01.po,2448,18011,12204,0,0,898,15782,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/swriter/02.po,389,2651,1956,0,0,37,399,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/swriter/04.po,250,1252,952,0,0,4,24,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/sbasic/shared/01.po,67,465,391,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1117,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/sbasic/shared/03.po,47,145,129,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/scalc/00.po,201,945,894,0,0,0,0,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/scalc/01.po,7495,73155,57390,0,0,0,0,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/scalc/02.po,123,810,625,0,0,0,0,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/scalc/04.po,187,1497,1122,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/scalc/05.po,137,853,733,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/scalc/06.po,1,3,3,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/schart/00.po,60,347,333,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/schart/01.po,972,11826,8735,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/schart/02.po,25,117,80,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/schart/04.po,32,133,94,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/sdraw/00.po,2,8,6,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/sdraw/01.po,3,12,11,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/sdraw/04.po,103,489,396,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/shared/00.po,1567,15694,12938,0,0,0,0,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/shared/01.po,5487,51962,39526,0,0,0,0,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/shared/02.po,2182,29122,20928,0,0,0,0,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/shared/04.po,313,2071,1665,0,0,0,0,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/shared/05.po,196,2340,1767,0,0,0,0,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/shared/06.po,3,7,7,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/shared/07.po,7,82,67,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/simpress/00.po,163,902,725,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/simpress/01.po,1046,8514,6275,0,0,0,0,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/simpress/02.po,660,6509,5011,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/simpress/04.po,239,1138,849,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/smath/00.po,66,355,277,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/smath/01.po,1551,13859,10770,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/smath/02.po,6,97,61,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/smath/04.po,26,135,97,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/smath/06.po,9,21,21,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/swriter/00.po,310,1818,1574,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/swriter/01.po,3346,33793,24402,0,0,0,0,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/swriter/02.po,426,3050,2396,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/swriter/04.po,254,1276,987,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/sbasic/shared/01.po,63,408,302,0,0,4,57,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/sbasic/shared/02.po,198,1482,950,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/scalc/00.po,63,155,135,0,0,138,790,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/scalc/01.po,0,0,0,0,0,7495,73155,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/scalc/02.po,118,796,562,0,0,5,14,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/scalc/04.po,183,1448,863,0,0,4,49,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/scalc/05.po,92,751,531,0,0,45,102,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/schart/00.po,50,314,265,0,0,10,33,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/schart/01.po,886,10516,6426,0,0,86,1310,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/schart/02.po,25,117,77,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/schart/04.po,32,133,100,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/sdraw/00.po,2,8,4,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/sdraw/01.po,3,12,10,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/sdraw/04.po,102,486,315,0,0,1,3,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/shared/00.po,816,7467,5184,0,0,751,8227,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/shared/01.po,4005,33602,21716,0,0,1482,18360,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/shared/02.po,1756,19732,12760,0,0,426,9390,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/shared/04.po,238,983,617,0,0,75,1088,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/shared/05.po,109,1125,786,0,0,87,1215,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/shared/07.po,4,29,14,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/simpress/00.po,154,873,675,0,0,9,29,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/simpress/01.po,895,6893,4507,0,0,151,1621,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/simpress/02.po,653,6468,4639,0,0,7,41,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/simpress/04.po,200,1002,690,0,0,39,136,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/smath/00.po,54,228,157,0,0,12,127,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/smath/01.po,1115,11613,7781,0,0,436,2246,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/smath/02.po,6,97,52,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/smath/04.po,25,130,79,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/swriter/00.po,216,1067,942,0,0,94,751,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/swriter/01.po,2786,26513,16771,0,0,560,7280,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/swriter/02.po,387,2645,1972,0,0,39,405,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/swriter/04.po,250,1252,895,0,0,4,24,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/sbasic/shared/01.po,67,465,540,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1686,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/sbasic/shared/03.po,47,145,157,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/scalc/00.po,201,945,1099,0,0,0,0,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/scalc/01.po,7495,73155,78556,0,0,0,0,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/scalc/02.po,123,810,882,0,0,0,0,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/scalc/04.po,187,1497,1693,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/scalc/05.po,137,853,897,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/scalc/06.po,1,3,3,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/schart/00.po,60,347,433,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/schart/01.po,972,11826,13335,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/schart/02.po,25,117,135,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/schart/04.po,32,133,172,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/sdraw/00.po,2,8,10,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/sdraw/01.po,3,12,14,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/sdraw/04.po,103,489,533,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/shared/00.po,1567,15694,17848,0,0,0,0,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/shared/01.po,5487,51962,56770,0,0,0,0,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/shared/02.po,2182,29122,32687,0,0,0,0,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/shared/04.po,313,2071,2442,0,0,0,0,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/shared/05.po,196,2340,2513,0,0,0,0,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/shared/06.po,3,7,10,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/shared/07.po,7,82,88,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/simpress/00.po,163,902,939,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/simpress/01.po,1046,8514,9159,0,0,0,0,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/simpress/02.po,660,6509,7938,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/simpress/04.po,239,1138,1344,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/smath/00.po,66,355,392,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/smath/01.po,1551,13859,14686,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/smath/02.po,6,97,104,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/smath/04.po,26,135,148,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/smath/06.po,9,21,42,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/swriter/00.po,310,1818,2188,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/swriter/01.po,3346,33793,37737,0,0,0,0,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/swriter/02.po,426,3050,3461,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/swriter/04.po,254,1276,1523,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/sbasic/shared/01.po,66,459,481,0,0,1,6,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1548,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/sbasic/shared/03.po,47,145,165,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/scalc/00.po,66,160,185,0,0,135,785,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/scalc/01.po,4598,31910,36106,0,0,2897,41245,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/scalc/02.po,119,797,815,0,0,4,13,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/scalc/04.po,186,1492,1748,1,5,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/scalc/05.po,86,499,571,0,0,51,354,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/scalc/06.po,1,3,5,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/schart/00.po,60,347,399,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/schart/01.po,745,7677,7780,0,0,227,4149,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/schart/02.po,25,117,116,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/schart/04.po,32,133,171,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/sdraw/00.po,2,8,10,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/sdraw/01.po,3,12,13,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/sdraw/04.po,103,489,521,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/shared/00.po,882,7766,8106,0,0,685,7928,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/shared/01.po,4098,30315,32372,0,0,1389,21647,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/shared/02.po,1685,17705,17651,0,0,497,11417,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/shared/04.po,250,996,1138,0,0,63,1075,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/shared/05.po,109,1125,1170,1,2,86,1213,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/shared/06.po,3,7,13,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/shared/07.po,5,47,47,0,0,2,35,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/simpress/00.po,163,902,1014,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/simpress/01.po,849,5838,5921,0,0,197,2676,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/simpress/02.po,612,4944,5097,1,29,47,1536,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/simpress/04.po,238,1129,1297,0,0,1,9,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/smath/00.po,66,355,358,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/smath/01.po,1475,11896,12039,0,0,76,1963,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/smath/02.po,6,97,98,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/smath/04.po,26,135,146,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/smath/06.po,9,21,44,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/swriter/00.po,296,1776,2003,2,2,12,40,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/swriter/01.po,3168,30350,31203,0,0,178,3443,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/swriter/02.po,412,2882,2867,0,0,14,168,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/swriter/04.po,253,1267,1469,0,0,1,9,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/sbasic/shared/01.po,41,220,227,0,0,26,245,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/sbasic/shared/02.po,148,859,860,0,0,50,623,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/scalc/00.po,44,93,99,0,0,157,852,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/scalc/01.po,4112,36553,35632,0,0,3383,36602,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/scalc/02.po,100,641,640,0,0,23,169,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/scalc/04.po,159,1173,1281,0,0,28,324,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/scalc/05.po,59,411,410,0,0,78,442,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/schart/00.po,34,159,157,0,0,26,188,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/schart/01.po,242,1669,1658,0,0,730,10157,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/schart/02.po,11,41,41,0,0,14,76,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/schart/04.po,32,133,134,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/sdraw/01.po,3,12,12,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/sdraw/04.po,93,416,430,0,0,10,73,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/shared/00.po,642,5516,5538,0,0,925,10178,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/shared/01.po,2945,21401,21310,0,0,2542,30561,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/shared/02.po,1494,17377,17402,0,0,688,11745,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/shared/04.po,217,859,924,0,0,96,1212,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/shared/05.po,78,849,849,0,0,118,1491,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/shared/07.po,1,5,5,0,0,6,77,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/simpress/00.po,131,764,761,0,0,32,138,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/simpress/01.po,741,5695,5709,0,0,305,2819,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/simpress/02.po,491,5791,5919,0,0,169,718,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/simpress/04.po,160,721,742,0,0,79,417,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/smath/00.po,53,224,221,0,0,13,131,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/smath/01.po,974,10890,10928,0,0,577,2969,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/smath/02.po,6,97,97,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/smath/04.po,25,130,130,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/swriter/00.po,179,893,846,0,0,131,925,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/swriter/01.po,2342,21934,21922,0,0,1004,11859,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/swriter/02.po,328,2048,2053,0,0,98,1002,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/swriter/04.po,228,1009,1053,0,0,26,267,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/sbasic/shared/01.po,38,99,122,0,0,29,366,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/sbasic/shared/02.po,68,350,348,0,0,130,1132,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/scalc/00.po,34,70,70,0,0,167,875,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/scalc/01.po,4339,32270,31817,0,0,3156,40885,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/scalc/02.po,57,339,348,0,0,66,471,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/scalc/04.po,105,914,914,0,0,82,583,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/scalc/05.po,72,445,459,0,0,65,408,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/schart/00.po,16,81,74,0,0,44,266,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/schart/01.po,205,1158,1149,0,0,767,10668,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/schart/02.po,11,34,32,0,0,14,83,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/schart/04.po,29,119,119,0,0,3,14,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/sdraw/00.po,1,4,4,0,0,1,4,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/sdraw/01.po,1,2,2,0,0,2,10,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/sdraw/04.po,78,376,372,0,0,25,113,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/shared/00.po,502,4386,4412,0,0,1065,11308,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/shared/01.po,2378,10718,10536,0,0,3109,41244,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/shared/02.po,1090,10534,10588,0,0,1092,18588,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/shared/04.po,168,815,815,0,0,145,1256,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/shared/05.po,53,720,708,0,0,143,1620,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/shared/07.po,3,27,27,0,0,4,55,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/simpress/00.po,106,654,675,0,0,57,248,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/simpress/01.po,557,2914,2919,0,0,489,5600,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/simpress/02.po,345,2698,2686,0,0,315,3811,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/simpress/04.po,129,682,695,0,0,110,456,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/smath/00.po,35,176,174,0,0,31,179,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/smath/01.po,736,6110,6143,0,0,815,7749,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/smath/02.po,5,56,56,0,0,1,41,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/smath/04.po,23,119,119,0,0,3,16,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/swriter/00.po,112,477,459,0,0,198,1341,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/swriter/01.po,1756,10950,10898,0,0,1590,22843,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/swriter/02.po,218,1005,1001,0,0,208,2045,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/swriter/04.po,147,863,853,0,0,107,413,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/sbasic/shared/01.po,27,43,50,0,0,40,422,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/sbasic/shared/02.po,40,83,88,0,0,158,1399,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/scalc/00.po,15,28,45,0,0,186,917,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/scalc/01.po,863,2958,3190,0,0,6632,70197,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/scalc/02.po,32,94,94,0,0,91,716,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/scalc/04.po,76,472,522,0,0,111,1025,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/scalc/05.po,21,85,92,0,0,116,768,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/schart/00.po,4,12,16,0,0,56,335,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/schart/01.po,96,284,299,0,0,876,11542,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/schart/02.po,1,3,3,0,0,24,114,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/schart/04.po,23,102,111,0,0,9,31,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/sdraw/00.po,1,4,6,0,0,1,4,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/sdraw/01.po,1,2,3,0,0,2,10,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/sdraw/04.po,58,315,370,0,0,45,174,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/shared/00.po,269,639,737,0,0,1298,15055,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/shared/01.po,1478,4295,4798,0,0,4009,47667,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/shared/02.po,634,1885,2075,0,0,1548,27237,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/shared/04.po,141,618,697,0,0,172,1453,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/shared/05.po,21,154,173,0,0,175,2186,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/shared/07.po,1,5,5,0,0,6,77,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/simpress/00.po,15,24,26,0,0,148,878,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/simpress/01.po,339,1102,1212,0,0,707,7412,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/simpress/02.po,148,840,1051,0,0,512,5669,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/simpress/04.po,91,353,374,0,0,148,785,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/smath/00.po,15,47,49,0,0,51,308,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/smath/01.po,469,1343,1453,0,0,1082,12516,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/smath/02.po,2,4,4,0,0,4,93,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/smath/04.po,17,80,76,0,0,9,55,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/swriter/00.po,33,81,105,0,0,277,1737,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/swriter/01.po,1228,4025,4465,0,0,2118,29768,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/swriter/02.po,143,673,741,0,0,283,2377,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/swriter/04.po,127,713,784,0,0,127,563,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/sbasic/shared/01.po,29,42,44,0,0,38,423,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/sbasic/shared/02.po,63,136,146,0,0,135,1346,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/scalc/00.po,29,54,56,0,0,172,891,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/scalc/01.po,1794,4614,3823,0,0,5701,68541,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/scalc/02.po,30,71,69,0,0,93,739,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/scalc/04.po,26,36,32,0,0,161,1461,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/scalc/05.po,10,20,17,0,0,127,833,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/schart/00.po,3,9,9,0,0,57,338,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/schart/01.po,214,699,641,0,0,758,11127,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/schart/02.po,8,20,20,0,0,17,97,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/schart/04.po,11,16,15,0,0,21,117,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/sdraw/00.po,1,4,4,0,0,1,4,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/sdraw/01.po,1,2,2,0,0,2,10,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/sdraw/04.po,18,23,20,0,0,85,466,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/shared/00.po,306,1396,1280,0,0,1261,14298,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/shared/01.po,1388,2408,2402,0,0,4099,49554,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/shared/02.po,672,1265,1311,0,0,1510,27857,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/shared/04.po,55,88,77,0,0,258,1983,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/shared/05.po,10,25,24,0,0,186,2315,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/shared/07.po,1,2,1,0,0,6,80,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/simpress/00.po,30,55,54,0,0,133,847,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/simpress/01.po,318,572,583,0,0,728,7942,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/simpress/02.po,263,700,704,0,0,397,5809,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/simpress/04.po,29,45,39,0,0,210,1093,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/smath/00.po,12,23,21,0,0,54,332,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/smath/01.po,265,443,434,0,0,1286,13416,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/smath/02.po,2,4,4,0,0,4,93,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/smath/04.po,10,12,12,0,0,16,123,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/swriter/00.po,44,110,112,0,0,266,1708,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/swriter/01.po,1227,3451,3218,0,0,2119,30342,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/swriter/02.po,160,269,265,0,0,266,2781,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/swriter/04.po,52,94,87,0,0,202,1182,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/sbasic/shared/01.po,66,459,406,0,0,1,6,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1144,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/sbasic/shared/03.po,47,145,140,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/scalc/00.po,65,159,197,0,0,136,786,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/scalc/01.po,6724,62640,56400,0,0,771,10515,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/scalc/02.po,118,796,637,0,0,5,14,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/scalc/04.po,186,1475,1265,0,0,1,22,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/scalc/05.po,92,751,677,0,0,45,102,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/schart/00.po,60,347,373,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/schart/01.po,958,11541,9294,0,0,14,285,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/schart/02.po,25,117,96,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/schart/04.po,32,133,106,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/sdraw/00.po,2,8,10,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/sdraw/01.po,3,12,13,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/sdraw/04.po,103,489,397,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/shared/00.po,886,9323,7838,0,0,681,6371,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/shared/01.po,4459,37358,31131,0,0,1028,14604,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/shared/02.po,1778,19926,15705,0,0,404,9196,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/shared/04.po,238,983,846,0,0,75,1088,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/shared/05.po,110,1129,963,0,0,86,1211,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/shared/06.po,2,5,4,0,0,1,2,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/shared/07.po,7,82,69,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/simpress/00.po,157,878,1030,0,0,6,24,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/simpress/01.po,935,7278,6001,0,0,111,1236,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/simpress/02.po,659,6480,5276,0,0,1,29,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/simpress/04.po,200,1002,846,0,0,39,136,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/smath/00.po,66,355,453,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/smath/01.po,1503,12929,11227,0,0,48,930,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/smath/02.po,6,97,81,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/smath/04.po,26,135,108,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/smath/06.po,9,21,19,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/swriter/00.po,299,1787,2173,0,0,11,31,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/swriter/01.po,2922,28146,23309,0,0,424,5647,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/swriter/02.po,426,3050,2621,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/swriter/04.po,254,1276,1110,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/sbasic/shared/01.po,67,465,418,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1368,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/sbasic/shared/03.po,47,145,124,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/scalc/00.po,201,945,999,0,0,0,0,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/scalc/01.po,7495,73155,62402,0,0,0,0,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/scalc/02.po,123,810,759,0,0,0,0,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/scalc/04.po,187,1497,1429,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/scalc/05.po,137,853,814,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/scalc/06.po,1,3,3,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/schart/00.po,60,347,340,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/schart/01.po,972,11826,10464,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/schart/02.po,25,117,105,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/schart/04.po,32,133,130,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/sdraw/01.po,3,12,13,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/sdraw/04.po,103,489,455,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/shared/00.po,1567,15694,14474,0,0,0,0,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/shared/01.po,5487,51962,45140,0,0,0,0,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/shared/02.po,2182,29122,24586,0,0,0,0,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/shared/04.po,313,2071,1867,0,0,0,0,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/shared/05.po,196,2340,2090,0,0,0,0,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/shared/06.po,3,7,8,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/shared/07.po,7,82,67,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/simpress/00.po,163,902,870,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/simpress/01.po,1046,8514,7550,0,0,0,0,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/simpress/02.po,660,6509,5779,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/simpress/04.po,239,1138,1065,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/smath/00.po,66,355,341,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/smath/01.po,1551,13859,12832,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/smath/02.po,6,97,80,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/smath/04.po,26,135,119,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/smath/06.po,9,21,23,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/swriter/00.po,310,1818,1820,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/swriter/01.po,3346,33793,29064,0,0,0,0,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/swriter/02.po,426,3050,2646,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/swriter/04.po,254,1276,1180,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/sbasic/shared/01.po,27,39,43,0,0,40,426,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/sbasic/shared/02.po,123,196,180,0,0,75,1286,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/scalc/00.po,46,73,75,0,0,155,872,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/scalc/01.po,2290,4098,3835,58,407,5147,68650,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/scalc/02.po,74,170,158,0,0,49,640,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/scalc/04.po,85,187,157,0,0,102,1310,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/scalc/05.po,30,37,35,0,0,107,816,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/schart/00.po,38,169,164,0,0,22,178,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/schart/01.po,305,516,460,0,0,667,11310,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/schart/02.po,25,117,102,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/schart/04.po,32,133,110,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/sdraw/00.po,2,8,10,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/sdraw/01.po,3,12,16,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/sdraw/04.po,103,489,443,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/shared/00.po,513,1357,1315,0,0,1054,14337,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/shared/01.po,2104,4378,4216,1,2,3382,47582,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/shared/02.po,899,1632,1507,0,0,1283,27490,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/shared/04.po,156,319,267,0,0,157,1752,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/shared/05.po,91,829,765,0,0,105,1511,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/shared/07.po,4,29,23,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/simpress/00.po,132,526,457,0,0,31,376,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/simpress/01.po,491,959,912,0,0,555,7555,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/simpress/02.po,486,1504,1411,0,0,174,5005,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/simpress/04.po,239,1138,1046,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/smath/00.po,20,34,35,0,0,46,321,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/smath/01.po,444,852,837,0,0,1107,13007,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/smath/02.po,5,74,58,0,0,1,23,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/smath/04.po,18,56,47,0,0,8,79,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/swriter/00.po,84,183,180,0,0,226,1635,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/swriter/01.po,1339,2364,2310,0,0,2007,31429,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/swriter/02.po,247,439,469,0,0,179,2611,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/swriter/04.po,204,561,491,0,0,50,715,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/sbasic/shared/01.po,67,465,493,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1655,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/sbasic/shared/03.po,47,145,152,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/scalc/00.po,201,945,1061,0,0,0,0,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/scalc/01.po,7495,73155,77045,0,0,0,0,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/scalc/02.po,123,810,827,0,0,0,0,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/scalc/04.po,187,1497,1515,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/scalc/05.po,137,853,975,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/scalc/06.po,1,3,4,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/schart/00.po,60,347,400,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/schart/01.po,972,11826,12350,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/schart/02.po,25,117,117,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/schart/04.po,32,133,168,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/sdraw/00.po,2,8,10,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/sdraw/01.po,3,12,11,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/sdraw/04.po,103,489,536,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/shared/00.po,1567,15694,17205,0,0,0,0,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/shared/01.po,5487,51962,52836,0,0,0,0,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/shared/02.po,2182,29122,30282,0,0,0,0,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/shared/04.po,313,2071,2260,0,0,0,0,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/shared/05.po,196,2340,2506,0,0,0,0,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/shared/06.po,3,7,10,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/shared/07.po,7,82,78,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/simpress/00.po,163,902,954,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/simpress/01.po,1046,8514,8559,0,0,0,0,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/simpress/02.po,660,6509,7129,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/simpress/04.po,239,1138,1164,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/smath/00.po,66,355,360,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/smath/01.po,1551,13859,14072,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/smath/02.po,6,97,95,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/smath/04.po,26,135,151,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/smath/06.po,9,21,37,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/swriter/00.po,310,1818,2117,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/swriter/01.po,3346,33793,35492,0,0,0,0,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/swriter/02.po,426,3050,3202,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/swriter/04.po,254,1276,1318,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/sbasic/shared/01.po,61,398,89,0,0,6,67,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/sbasic/shared/02.po,198,1482,273,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/scalc/00.po,64,156,131,0,0,137,789,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/scalc/01.po,5933,51214,15246,0,0,1562,21941,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/scalc/02.po,119,797,205,0,0,4,13,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/scalc/04.po,181,1428,410,0,0,6,69,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/scalc/05.po,90,715,205,0,0,47,138,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/schart/00.po,50,314,233,0,0,10,33,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/schart/01.po,854,10032,1693,0,0,118,1794,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/schart/02.po,25,117,28,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/schart/04.po,32,133,40,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/sdraw/00.po,2,8,2,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/sdraw/01.po,3,12,3,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/sdraw/04.po,103,489,187,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/shared/00.po,796,7003,1743,0,0,771,8691,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/shared/01.po,3756,29714,5894,0,0,1731,22248,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/shared/02.po,1712,19353,2978,0,0,470,9769,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/shared/04.po,235,965,368,0,0,78,1106,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/shared/05.po,108,1121,190,0,0,88,1219,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/shared/07.po,4,29,10,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/simpress/00.po,154,873,521,0,0,9,29,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/simpress/01.po,867,6546,1356,0,0,179,1968,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/simpress/02.po,652,6439,1057,0,0,8,70,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/simpress/04.po,189,928,314,0,0,50,210,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/smath/00.po,54,228,124,0,0,12,127,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/smath/01.po,1070,11386,3146,0,0,481,2473,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/smath/02.po,6,97,15,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/smath/04.po,25,130,35,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/swriter/00.po,213,1050,817,0,0,97,768,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/swriter/01.po,2700,25200,4435,0,0,646,8593,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/swriter/02.po,373,2443,710,0,0,53,607,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/swriter/04.po,247,1225,485,0,0,7,51,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/sbasic/shared/01.po,39,208,167,0,0,28,257,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/sbasic/shared/02.po,142,851,617,0,0,56,631,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/scalc/00.po,60,129,126,0,0,141,816,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/scalc/01.po,3482,19046,13441,0,0,4013,54109,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/scalc/02.po,110,715,524,0,0,13,95,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/scalc/04.po,163,1184,895,0,0,24,313,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/scalc/05.po,71,453,341,0,0,66,400,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/schart/00.po,0,0,0,0,0,60,347,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/schart/01.po,196,618,507,0,0,776,11208,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/schart/02.po,0,0,0,0,0,25,117,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/schart/04.po,27,101,75,0,0,5,32,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/sdraw/00.po,2,8,6,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/sdraw/01.po,0,0,0,0,0,3,12,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/sdraw/04.po,88,327,261,0,0,15,162,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/shared/00.po,414,933,794,0,0,1153,14761,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/shared/01.po,1401,4350,3295,0,0,4086,47612,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/shared/02.po,523,3108,2385,0,0,1659,26014,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/shared/04.po,142,288,313,0,0,171,1783,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/shared/05.po,64,546,411,0,0,132,1794,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/shared/07.po,1,5,3,0,0,6,77,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/simpress/00.po,143,811,722,0,0,20,91,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/simpress/01.po,182,284,237,0,0,864,8230,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/simpress/02.po,630,6164,4558,0,0,30,345,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/simpress/04.po,151,511,404,0,0,88,627,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/smath/00.po,53,224,170,0,0,13,131,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/smath/01.po,376,3116,2199,0,0,1175,10743,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/smath/02.po,2,4,4,0,0,4,93,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/smath/04.po,25,130,93,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/swriter/00.po,56,170,142,0,0,254,1648,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/swriter/01.po,2447,21342,14654,0,0,899,12451,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/swriter/02.po,354,2208,1650,0,0,72,842,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/swriter/04.po,228,1009,860,0,0,26,267,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/sbasic/shared/01.po,62,396,158,0,0,5,69,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/sbasic/shared/02.po,198,1482,496,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/scalc/00.po,63,155,123,0,0,138,790,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/scalc/01.po,5800,51349,22057,0,0,1695,21806,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/scalc/02.po,118,796,312,0,0,5,14,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/scalc/04.po,181,1428,491,0,0,6,69,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/scalc/05.po,92,751,312,0,0,45,102,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/schart/00.po,50,314,211,0,0,10,33,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/schart/01.po,886,10516,3263,0,0,86,1310,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/schart/02.po,25,117,37,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/schart/04.po,32,133,70,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/sdraw/00.po,2,8,3,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/sdraw/01.po,3,12,5,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/sdraw/04.po,102,486,224,0,0,1,3,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/shared/00.po,813,7460,2757,0,0,754,8234,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/shared/01.po,3879,31680,10779,0,0,1608,20282,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/shared/02.po,1750,19718,6073,0,0,432,9404,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/shared/04.po,238,983,478,0,0,75,1088,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/shared/05.po,109,1125,371,0,0,87,1215,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/shared/07.po,4,29,16,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/simpress/00.po,154,873,563,0,0,9,29,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/simpress/01.po,870,6631,2498,0,0,176,1883,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/simpress/02.po,653,6468,2214,0,0,7,41,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/simpress/04.po,198,989,468,0,0,41,149,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/smath/00.po,54,228,139,0,0,12,127,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/smath/01.po,1114,11612,5106,0,0,437,2247,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/smath/02.po,6,97,27,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/smath/04.po,25,130,63,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/swriter/00.po,213,1050,748,0,0,97,768,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/swriter/01.po,2754,26059,9165,0,0,592,7734,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/swriter/02.po,377,2486,1104,0,0,49,564,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/swriter/04.po,248,1239,561,0,0,6,37,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/sbasic/shared/01.po,57,336,262,0,0,10,129,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/sbasic/shared/02.po,195,1404,1100,0,0,3,78,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/scalc/00.po,61,152,164,0,0,140,793,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/scalc/01.po,5543,49144,34359,0,0,1952,24011,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/scalc/02.po,117,795,593,0,0,6,15,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/scalc/04.po,169,1264,1004,0,0,18,233,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/scalc/05.po,85,705,549,0,0,52,148,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/schart/00.po,56,331,281,0,0,4,16,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/schart/01.po,972,11826,8479,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/schart/02.po,25,117,89,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/schart/04.po,32,133,117,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/sdraw/00.po,2,8,6,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/sdraw/01.po,3,12,10,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/sdraw/04.po,103,489,504,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/shared/00.po,834,8369,6330,0,0,733,7325,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/shared/01.po,3827,30604,21924,0,0,1660,21358,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/shared/02.po,1711,19340,13633,0,0,471,9782,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/shared/04.po,240,988,947,0,0,73,1083,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/shared/05.po,111,1155,851,0,0,85,1185,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/shared/06.po,1,2,2,0,0,2,5,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/shared/07.po,4,29,22,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/simpress/00.po,163,902,773,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/simpress/01.po,1025,8309,5876,0,0,21,205,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/simpress/02.po,660,6509,4461,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/simpress/04.po,239,1138,1021,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/smath/00.po,66,355,286,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/smath/01.po,1513,13418,10159,0,0,38,441,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/smath/02.po,6,97,61,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/smath/04.po,26,135,102,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/swriter/00.po,250,1284,1300,27,393,33,141,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/swriter/01.po,2673,24857,17697,0,0,673,8936,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/swriter/02.po,426,3050,2301,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/swriter/04.po,254,1276,1238,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/sbasic/shared/01.po,0,0,0,0,0,67,465,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/sbasic/shared/02.po,0,0,0,0,0,198,1482,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/scalc/00.po,0,0,0,0,0,201,945,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/scalc/01.po,0,0,0,0,0,7495,73155,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/scalc/02.po,0,0,0,0,0,123,810,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/scalc/04.po,0,0,0,0,0,187,1497,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/scalc/05.po,0,0,0,0,0,137,853,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/schart/00.po,0,0,0,0,0,60,347,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/schart/01.po,0,0,0,0,0,972,11826,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/schart/02.po,0,0,0,0,0,25,117,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/schart/04.po,0,0,0,0,0,32,133,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/sdraw/00.po,0,0,0,0,0,2,8,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/sdraw/01.po,0,0,0,0,0,3,12,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/sdraw/04.po,0,0,0,0,0,103,489,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/shared/00.po,0,0,0,0,0,1567,15694,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/shared/01.po,0,0,0,0,0,5487,51962,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/shared/02.po,0,0,0,0,0,2182,29122,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/shared/04.po,0,0,0,0,0,313,2071,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/shared/05.po,0,0,0,0,0,196,2340,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/shared/07.po,0,0,0,0,0,7,82,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/simpress/00.po,0,0,0,0,0,163,902,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/simpress/01.po,0,0,0,0,0,1046,8514,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/simpress/02.po,0,0,0,0,0,660,6509,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/simpress/04.po,0,0,0,0,0,239,1138,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/smath/00.po,0,0,0,0,0,66,355,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/smath/01.po,0,0,0,0,0,1551,13859,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/smath/02.po,0,0,0,0,0,6,97,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/smath/04.po,0,0,0,0,0,26,135,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/swriter/00.po,0,0,0,0,0,310,1818,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/swriter/01.po,0,0,0,0,0,3346,33793,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/swriter/02.po,0,0,0,0,0,426,3050,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/swriter/04.po,0,0,0,0,0,254,1276,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/sbasic/shared/01.po,0,0,0,0,0,67,465,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/sbasic/shared/02.po,0,0,0,0,0,198,1482,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/scalc/00.po,201,945,1147,0,0,0,0,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/scalc/01.po,3734,36644,28743,0,0,3761,36511,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/scalc/02.po,121,804,631,0,0,2,6,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/scalc/04.po,187,1497,1150,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/scalc/05.po,137,853,691,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/scalc/06.po,1,3,3,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/schart/00.po,0,0,0,0,0,60,347,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/schart/01.po,0,0,0,0,0,972,11826,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/schart/02.po,0,0,0,0,0,25,117,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/schart/04.po,0,0,0,0,0,32,133,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/sdraw/01.po,0,0,0,0,0,3,12,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/sdraw/04.po,0,0,0,0,0,103,489,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/shared/00.po,656,5402,6262,7,95,904,10197,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/shared/01.po,634,6509,5435,0,0,4853,45453,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/shared/02.po,115,1002,742,1,10,2066,28110,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/shared/04.po,311,2067,1759,0,0,2,4,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/shared/05.po,115,1256,1012,0,0,81,1084,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/shared/07.po,7,82,62,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/simpress/00.po,3,12,16,0,0,160,890,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/simpress/01.po,0,0,0,0,0,1046,8514,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/simpress/02.po,0,0,0,0,0,660,6509,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/simpress/04.po,0,0,0,0,0,239,1138,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/smath/00.po,0,0,0,0,0,66,355,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/smath/01.po,2,0,0,0,0,1549,13859,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/smath/02.po,0,0,0,0,0,6,97,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/smath/04.po,0,0,0,0,0,26,135,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/swriter/00.po,310,1818,2018,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/swriter/01.po,290,2664,2221,0,0,3056,31129,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/swriter/02.po,160,1389,1132,0,0,266,1661,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/swriter/04.po,3,20,16,0,0,251,1256,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/sbasic/shared/01.po,41,101,92,0,0,26,364,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/sbasic/shared/02.po,136,261,245,0,0,62,1221,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/scalc/00.po,63,132,135,0,0,138,813,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/scalc/01.po,3083,7389,6847,0,0,4412,65766,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/scalc/02.po,43,88,80,0,0,80,722,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/scalc/04.po,69,176,138,0,0,118,1321,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/scalc/05.po,51,92,90,0,0,86,761,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/schart/00.po,48,260,254,0,0,12,87,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/schart/01.po,318,839,738,0,0,654,10987,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/schart/02.po,13,27,23,0,0,12,90,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/schart/04.po,19,38,34,0,0,13,95,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/sdraw/01.po,3,12,10,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/sdraw/04.po,34,50,44,0,0,69,439,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/shared/00.po,560,1233,1166,0,0,1007,14461,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/shared/01.po,2094,4577,4232,0,0,3393,47385,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/shared/02.po,1037,2430,2196,0,0,1145,26692,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/shared/04.po,110,280,231,0,0,203,1791,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/shared/05.po,29,54,47,0,0,167,2286,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/shared/07.po,3,9,8,0,0,4,73,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/simpress/00.po,108,428,372,0,0,55,474,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/simpress/01.po,449,887,838,0,0,597,7627,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/simpress/02.po,472,1088,1062,0,0,188,5421,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/simpress/04.po,60,147,127,0,0,179,991,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/smath/00.po,30,78,70,0,0,36,277,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/smath/01.po,464,978,945,0,0,1087,12881,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/smath/02.po,2,4,4,0,0,4,93,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/smath/04.po,17,35,31,0,0,9,100,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/swriter/00.po,197,792,779,0,0,113,1026,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/swriter/01.po,1377,2969,2807,0,0,1969,30824,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/swriter/02.po,292,657,596,0,0,134,2393,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/swriter/04.po,97,295,280,0,0,157,981,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/sbasic/shared/01.po,57,336,369,0,0,10,129,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/sbasic/shared/02.po,177,1092,1108,0,0,21,390,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/scalc/00.po,61,152,169,0,0,140,793,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/scalc/01.po,5293,45191,44753,0,0,2202,27964,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/scalc/02.po,117,795,808,0,0,6,15,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/scalc/04.po,163,1185,1297,0,0,24,312,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/scalc/05.po,77,540,528,0,0,60,313,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/schart/00.po,47,249,283,0,0,13,98,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/schart/01.po,418,2709,2680,0,0,554,9117,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/schart/02.po,25,117,132,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/schart/04.po,32,133,150,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/sdraw/00.po,2,8,10,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/sdraw/01.po,3,12,9,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/sdraw/04.po,102,486,451,0,0,1,3,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/shared/00.po,754,6643,6880,0,0,813,9051,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/shared/01.po,3486,26142,25916,0,0,2001,25820,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/shared/02.po,1675,18891,19071,0,0,507,10231,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/shared/04.po,233,941,1129,0,0,80,1130,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/shared/05.po,102,1031,1053,0,0,94,1309,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/shared/07.po,4,29,22,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/simpress/00.po,154,873,922,0,0,9,29,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/simpress/01.po,852,6311,6260,0,0,194,2203,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/simpress/02.po,650,6431,6079,0,0,10,78,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/simpress/04.po,185,900,884,0,0,54,238,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/smath/00.po,53,224,214,0,0,13,131,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/smath/01.po,1036,11283,11247,0,0,515,2576,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/smath/02.po,6,97,95,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/smath/04.po,25,130,130,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/swriter/00.po,210,1037,1053,0,0,100,781,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/swriter/01.po,2597,23754,23948,0,0,749,10039,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/swriter/02.po,366,2437,2407,0,0,60,613,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/swriter/04.po,236,1148,1251,0,0,18,128,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/sbasic/shared/01.po,67,465,448,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1342,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/sbasic/shared/03.po,47,145,94,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/scalc/00.po,99,388,437,0,0,102,557,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/scalc/01.po,3901,27345,24306,0,0,3594,45810,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/scalc/02.po,121,804,678,0,0,2,6,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/scalc/04.po,187,1497,1295,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/scalc/05.po,137,853,800,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/scalc/06.po,1,3,2,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/schart/00.po,60,347,358,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/schart/01.po,972,11826,9882,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/schart/02.po,25,117,96,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/schart/04.po,32,133,114,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/sdraw/01.po,3,12,15,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/sdraw/04.po,103,489,502,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/shared/00.po,1550,15490,15414,0,0,17,204,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/shared/01.po,3531,26056,22942,0,0,1956,25906,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/shared/02.po,2181,29096,25043,0,0,1,26,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/shared/04.po,311,2067,2037,0,0,2,4,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/shared/05.po,196,2340,2120,0,0,0,0,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/shared/06.po,3,7,7,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/shared/07.po,7,82,87,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/simpress/00.po,163,902,995,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/simpress/01.po,1046,8514,7575,0,0,0,0,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/simpress/02.po,660,6509,6005,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/simpress/04.po,239,1138,1073,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/smath/00.po,66,355,313,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/smath/01.po,1551,13859,13295,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/smath/02.po,6,97,79,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/smath/04.po,26,135,126,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/smath/06.po,9,21,25,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/swriter/00.po,310,1818,1854,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/swriter/01.po,3346,33793,31183,0,0,0,0,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/swriter/02.po,426,3050,2962,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/swriter/04.po,254,1276,1447,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/sbasic/shared/01.po,52,279,275,0,0,15,186,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/sbasic/shared/02.po,175,1063,959,0,0,23,419,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/scalc/00.po,59,125,133,0,0,142,820,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/scalc/01.po,5132,43002,35487,0,0,2363,30153,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/scalc/02.po,114,744,654,0,0,9,66,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/scalc/04.po,167,1184,1030,0,0,20,313,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/scalc/05.po,71,453,404,0,0,66,400,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/schart/00.po,47,249,237,0,0,13,98,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/schart/01.po,326,2324,2003,0,0,646,9502,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/schart/02.po,25,117,106,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/schart/04.po,32,133,119,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/sdraw/01.po,3,12,12,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/sdraw/04.po,100,454,421,1,1,2,34,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/shared/00.po,738,6297,5612,0,0,829,9397,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/shared/01.po,3204,22868,20622,0,0,2283,29094,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/shared/02.po,1644,18386,15656,0,0,538,10736,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/shared/04.po,220,893,903,0,0,93,1178,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/shared/05.po,96,1009,905,0,0,100,1331,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/shared/07.po,1,5,5,0,0,6,77,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/simpress/00.po,152,833,747,0,0,11,69,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/simpress/01.po,837,5968,5271,0,0,209,2546,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/simpress/02.po,649,6206,5348,0,0,11,303,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/simpress/04.po,176,745,672,0,0,63,393,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/smath/00.po,54,225,186,0,0,12,130,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/smath/01.po,1086,10741,9407,0,0,465,3118,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/smath/02.po,6,97,70,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/smath/04.po,26,135,108,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/swriter/00.po,208,1024,891,0,0,102,794,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/swriter/01.po,2548,22727,19974,0,0,798,11066,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/swriter/02.po,345,2053,1775,0,0,81,997,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/swriter/04.po,228,1049,987,0,0,26,227,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/sbasic/shared/01.po,67,465,482,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1496,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/sbasic/shared/03.po,47,145,146,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/scalc/00.po,201,945,938,0,0,0,0,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/scalc/01.po,7492,73047,72747,0,0,3,108,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/scalc/02.po,123,810,774,0,0,0,0,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/scalc/04.po,187,1497,1488,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/scalc/05.po,137,853,850,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/scalc/06.po,1,3,1,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/schart/00.po,60,347,320,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/schart/01.po,972,11826,11404,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/schart/02.po,25,117,115,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/schart/04.po,32,133,121,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/sdraw/00.po,2,8,14,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/sdraw/01.po,3,12,13,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/sdraw/04.po,103,489,514,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/shared/00.po,1567,15694,15751,0,0,0,0,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/shared/01.po,5486,51927,51930,0,0,1,35,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/shared/02.po,2181,29109,28760,0,0,1,13,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/shared/04.po,313,2071,2112,0,0,0,0,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/shared/05.po,196,2340,2336,0,0,0,0,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/shared/06.po,3,7,7,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/shared/07.po,7,82,82,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/simpress/00.po,163,902,896,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/simpress/01.po,1044,8490,9000,0,0,2,24,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/simpress/02.po,660,6509,6807,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/simpress/04.po,239,1138,1199,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/smath/00.po,66,355,357,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/smath/01.po,1551,13859,14080,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/smath/02.po,6,97,98,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/smath/04.po,26,135,138,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/smath/06.po,9,21,20,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/swriter/00.po,310,1818,1694,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/swriter/01.po,3345,33786,33284,0,0,1,7,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/swriter/02.po,426,3050,3019,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/swriter/04.po,254,1276,1288,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/sbasic/shared/01.po,67,465,459,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1361,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/sbasic/shared/03.po,47,145,94,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/scalc/00.po,197,924,1157,0,0,4,21,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/scalc/01.po,7487,72880,67336,0,0,8,275,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/scalc/02.po,121,804,695,0,0,2,6,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/scalc/04.po,187,1497,1447,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/scalc/05.po,137,853,816,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/scalc/06.po,1,3,2,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/schart/00.po,60,347,404,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/schart/01.po,972,11826,10103,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/schart/02.po,25,117,97,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/schart/04.po,32,133,116,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/sdraw/01.po,3,12,15,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/sdraw/04.po,103,489,511,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/shared/00.po,1550,15490,15599,0,0,17,204,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/shared/01.po,5483,51844,46700,0,0,4,118,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/shared/02.po,2181,29096,25171,0,0,1,26,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/shared/04.po,311,2067,2091,0,0,2,4,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/shared/05.po,196,2340,2144,0,0,0,0,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/shared/06.po,3,7,7,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/shared/07.po,7,82,75,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/simpress/00.po,163,902,1038,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/simpress/01.po,1046,8514,7744,0,0,0,0,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/simpress/02.po,660,6509,6071,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/simpress/04.po,239,1138,1175,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/smath/00.po,66,355,332,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/smath/01.po,1551,13859,13434,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/smath/02.po,6,97,78,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/smath/04.po,26,135,126,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/smath/06.po,9,21,26,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/swriter/00.po,310,1818,2128,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/swriter/01.po,3346,33793,30986,0,0,0,0,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/swriter/02.po,426,3050,2964,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/swriter/04.po,254,1276,1451,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/sbasic/shared/01.po,57,336,281,0,0,10,129,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/sbasic/shared/02.po,183,1139,900,0,0,15,343,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/scalc/00.po,61,152,146,0,0,140,793,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/scalc/01.po,5504,48601,36711,0,0,1991,24554,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/scalc/02.po,116,782,616,0,0,7,28,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/scalc/04.po,169,1264,1061,0,0,18,233,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/scalc/05.po,82,672,556,0,0,55,181,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/schart/00.po,47,249,240,0,0,13,98,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/schart/01.po,833,9886,7556,0,0,139,1940,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/schart/02.po,25,117,99,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/schart/04.po,32,133,117,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/sdraw/00.po,2,8,6,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/sdraw/01.po,3,12,10,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/sdraw/04.po,101,455,351,0,0,2,34,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/shared/00.po,769,6653,5411,0,0,798,9041,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/shared/01.po,3657,28360,21577,0,0,1830,23602,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/shared/02.po,1694,19239,15755,0,0,488,9883,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/shared/04.po,234,960,802,0,0,79,1111,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/shared/05.po,103,1011,737,0,0,93,1329,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/shared/07.po,4,29,24,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/simpress/00.po,154,873,778,0,0,9,29,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/simpress/01.po,858,6389,4995,0,0,188,2125,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/simpress/02.po,648,6360,4723,0,0,12,149,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/simpress/04.po,185,900,770,0,0,54,238,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/smath/00.po,53,224,184,0,0,13,131,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/smath/01.po,1055,11355,9548,0,0,496,2504,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/smath/02.po,6,97,69,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/smath/04.po,25,130,109,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/swriter/00.po,210,1037,935,0,0,100,781,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/swriter/01.po,2632,24244,19004,0,0,714,9549,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/swriter/02.po,366,2437,2034,0,0,60,613,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/swriter/04.po,236,1153,1025,0,0,18,123,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/sbasic/shared/01.po,66,459,411,0,0,1,6,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1256,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/sbasic/shared/03.po,46,141,121,0,0,1,4,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/scalc/00.po,140,585,619,0,0,61,360,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/scalc/01.po,7254,68937,61503,0,0,241,4218,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/scalc/02.po,119,797,659,0,0,4,13,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/scalc/04.po,187,1497,1304,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/scalc/05.po,92,751,730,0,0,45,102,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/scalc/06.po,1,3,3,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/schart/00.po,60,347,331,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/schart/01.po,966,11652,10020,0,0,6,174,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/schart/02.po,25,117,92,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/schart/04.po,32,133,143,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/sdraw/01.po,3,12,10,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/sdraw/04.po,103,489,418,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/shared/00.po,1104,11376,10390,0,0,463,4318,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/shared/01.po,4668,40405,33996,0,0,819,11557,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/shared/02.po,1872,22446,18919,0,0,310,6676,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/shared/04.po,238,983,877,0,0,75,1088,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/shared/05.po,111,1141,982,0,0,85,1199,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/shared/07.po,4,29,24,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/simpress/00.po,162,898,840,0,0,1,4,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/simpress/01.po,1021,8277,6946,0,0,25,237,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/simpress/02.po,659,6480,5709,0,0,1,29,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/simpress/04.po,224,1098,1009,0,0,15,40,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/smath/00.po,66,355,341,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/smath/01.po,1521,13088,11662,0,0,30,771,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/smath/02.po,6,97,77,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/smath/04.po,26,135,117,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/swriter/00.po,284,1689,1671,0,0,26,129,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/swriter/01.po,3041,29965,25034,0,0,305,3828,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/swriter/02.po,395,2738,2384,0,0,31,312,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/swriter/04.po,251,1257,1176,0,0,3,19,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/sbasic/shared/01.po,67,465,495,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1652,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/sbasic/shared/03.po,47,145,156,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/scalc/00.po,201,945,1028,0,0,0,0,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/scalc/01.po,7495,73155,75958,0,0,0,0,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/scalc/02.po,123,810,860,0,0,0,0,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/scalc/04.po,187,1497,1590,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/scalc/05.po,137,853,950,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/scalc/06.po,1,3,5,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/schart/00.po,60,347,434,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/schart/01.po,972,11826,12769,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/schart/02.po,25,117,120,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/schart/04.po,32,133,154,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/sdraw/01.po,3,12,13,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/sdraw/04.po,103,489,531,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/shared/00.po,1567,15694,17842,0,0,0,0,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/shared/01.po,5487,51962,54651,0,0,0,0,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/shared/02.po,2182,29122,31214,0,0,0,0,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/shared/04.po,313,2071,2401,0,0,0,0,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/shared/05.po,196,2340,2538,0,0,0,0,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/shared/06.po,3,7,10,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/shared/07.po,7,82,85,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/simpress/00.po,163,902,1036,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/simpress/01.po,1046,8514,8974,0,0,0,0,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/simpress/02.po,660,6509,6997,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/simpress/04.po,239,1138,1324,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/smath/00.po,66,355,363,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/smath/01.po,1551,13859,14199,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/smath/02.po,6,97,100,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/smath/04.po,26,135,146,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/smath/06.po,9,21,37,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/swriter/00.po,310,1818,2024,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/swriter/01.po,3346,33793,35909,0,0,0,0,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/swriter/02.po,426,3050,3179,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/swriter/04.po,254,1276,1488,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/sbasic/shared/01.po,67,465,483,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1639,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/sbasic/shared/03.po,47,145,151,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/scalc/00.po,196,920,998,0,0,5,25,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/scalc/01.po,7243,68798,71510,0,0,252,4357,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/scalc/02.po,121,804,854,0,0,2,6,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/scalc/04.po,187,1497,1595,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/scalc/05.po,137,853,955,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/scalc/06.po,1,3,5,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/schart/00.po,60,347,389,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/schart/01.po,972,11826,12802,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/schart/02.po,25,117,123,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/schart/04.po,32,133,144,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/sdraw/00.po,2,8,10,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/sdraw/01.po,3,12,12,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/sdraw/04.po,103,489,534,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/shared/00.po,1522,15187,16822,0,0,45,507,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/shared/01.po,4873,41259,42998,0,0,614,10703,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/shared/02.po,1914,22714,24470,0,0,268,6408,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/shared/04.po,313,2071,2366,0,0,0,0,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/shared/05.po,196,2340,2456,0,0,0,0,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/shared/06.po,3,7,12,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/shared/07.po,7,82,84,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/simpress/00.po,163,902,1044,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/simpress/01.po,1046,8514,9045,0,0,0,0,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/simpress/02.po,660,6509,7217,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/simpress/04.po,239,1138,1285,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/smath/00.po,66,355,328,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/smath/01.po,1551,13859,14565,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/smath/02.po,6,97,97,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/smath/04.po,26,135,148,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/smath/06.po,9,21,43,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/swriter/00.po,310,1818,1957,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/swriter/01.po,3346,33793,35609,0,0,0,0,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/swriter/02.po,426,3050,3154,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/swriter/04.po,254,1276,1441,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/sbasic/shared/01.po,0,0,0,0,0,67,465,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/sbasic/shared/02.po,0,0,0,0,0,198,1482,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/scalc/00.po,0,0,0,0,0,201,945,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/scalc/01.po,0,0,0,0,0,7495,73155,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/scalc/02.po,0,0,0,0,0,123,810,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/scalc/04.po,0,0,0,0,0,187,1497,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/scalc/05.po,0,0,0,0,0,137,853,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/schart/00.po,0,0,0,0,0,60,347,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/schart/01.po,0,0,0,0,0,972,11826,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/schart/02.po,0,0,0,0,0,25,117,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/schart/04.po,0,0,0,0,0,32,133,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/sdraw/00.po,0,0,0,0,0,2,8,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/sdraw/01.po,0,0,0,0,0,3,12,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/sdraw/04.po,0,0,0,0,0,103,489,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/shared/00.po,0,0,0,0,0,1567,15694,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/shared/01.po,0,0,0,0,0,5487,51962,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/shared/02.po,0,0,0,0,0,2182,29122,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/shared/04.po,0,0,0,0,0,313,2071,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/shared/05.po,0,0,0,0,0,196,2340,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/shared/07.po,0,0,0,0,0,7,82,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/simpress/00.po,0,0,0,0,0,163,902,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/simpress/01.po,0,0,0,0,0,1046,8514,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/simpress/02.po,0,0,0,0,0,660,6509,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/simpress/04.po,0,0,0,0,0,239,1138,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/smath/00.po,0,0,0,0,0,66,355,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/smath/01.po,0,0,0,0,0,1551,13859,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/smath/02.po,0,0,0,0,0,6,97,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/smath/04.po,0,0,0,0,0,26,135,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/swriter/00.po,0,0,0,0,0,310,1818,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/swriter/01.po,0,0,0,0,0,3346,33793,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/swriter/02.po,0,0,0,0,0,426,3050,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/swriter/04.po,0,0,0,0,0,254,1276,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/sbasic/shared/01.po,57,336,297,0,0,10,129,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/sbasic/shared/02.po,195,1404,1276,0,0,3,78,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/scalc/00.po,66,160,161,0,0,135,785,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/scalc/01.po,5826,51764,42897,0,0,1669,21391,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/scalc/02.po,118,796,661,0,0,5,14,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/scalc/04.po,182,1429,1147,0,0,5,68,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/scalc/05.po,91,734,639,0,0,46,119,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/schart/00.po,52,262,302,1,11,7,74,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/schart/01.po,839,10021,8305,0,0,133,1805,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/schart/02.po,25,117,98,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/schart/04.po,32,133,124,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/sdraw/01.po,3,12,11,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/sdraw/04.po,102,486,440,0,0,1,3,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/shared/00.po,780,6875,5987,0,0,787,8819,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/shared/01.po,3759,29984,24800,0,0,1728,21978,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/shared/02.po,1709,19410,15790,0,0,473,9712,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/shared/04.po,233,958,842,0,0,80,1113,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/shared/05.po,106,1108,876,0,0,90,1232,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/shared/07.po,4,29,21,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/simpress/00.po,157,878,920,0,0,6,24,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/simpress/01.po,878,6654,5482,0,0,168,1860,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/simpress/02.po,658,6451,5590,0,0,2,58,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/simpress/04.po,190,920,825,0,0,49,218,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/smath/00.po,54,228,256,0,0,12,127,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/smath/01.po,1058,11389,9979,0,0,493,2470,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/smath/02.po,6,97,73,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/smath/04.po,25,130,126,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/swriter/00.po,221,1103,1056,0,0,89,715,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/swriter/01.po,2749,26050,21156,0,0,597,7743,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/swriter/02.po,372,2557,2171,0,0,58,612,430,3169,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/swriter/04.po,245,1170,1047,0,0,9,106,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/sbasic/shared/01.po,57,336,312,0,0,10,129,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/sbasic/shared/02.po,183,1139,1037,0,0,15,343,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/scalc/00.po,8,13,19,0,0,193,932,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/scalc/01.po,1156,3251,2788,0,0,6339,69904,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/scalc/02.po,14,20,21,0,0,109,790,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/scalc/04.po,56,137,96,0,0,131,1360,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/scalc/05.po,28,42,48,0,0,109,811,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/schart/00.po,30,115,120,0,0,30,232,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/schart/01.po,38,91,75,0,0,934,11735,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/schart/02.po,22,82,74,0,0,3,35,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/schart/04.po,32,133,142,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/sdraw/00.po,1,4,4,0,0,1,4,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/sdraw/01.po,0,0,0,0,0,3,12,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/sdraw/04.po,100,445,410,0,0,3,44,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/shared/00.po,232,523,433,0,0,1335,15171,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/shared/01.po,1674,7857,7119,0,0,3813,44105,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/shared/02.po,715,4058,3511,0,0,1467,25064,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/shared/04.po,147,349,330,0,0,166,1722,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/shared/05.po,12,88,80,0,0,184,2252,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/shared/07.po,3,27,20,0,0,4,55,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/simpress/00.po,154,873,797,0,0,9,29,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/simpress/01.po,250,824,778,0,0,796,7690,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/simpress/02.po,272,532,569,0,0,388,5977,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/simpress/04.po,151,688,617,0,0,88,450,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/smath/00.po,53,224,206,0,0,13,131,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/smath/01.po,140,195,195,0,0,1411,13664,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/smath/02.po,6,97,70,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/smath/04.po,25,130,109,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/swriter/00.po,209,1030,1012,0,0,101,788,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/swriter/01.po,866,3680,3522,0,0,2480,30113,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/swriter/02.po,275,650,684,0,0,151,2400,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/swriter/04.po,153,365,361,0,0,101,911,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/sbasic/shared/01.po,60,386,286,0,0,7,79,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/sbasic/shared/02.po,195,1404,1106,0,0,3,78,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/scalc/00.po,62,153,148,0,0,139,792,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/scalc/01.po,4896,38345,27903,0,0,2599,34810,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/scalc/02.po,115,793,592,0,0,8,17,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/scalc/04.po,181,1428,1043,0,0,6,69,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/scalc/05.po,89,732,538,0,0,48,121,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/schart/00.po,47,249,243,0,0,13,98,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/schart/01.po,855,10113,6829,0,0,117,1713,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/schart/02.po,25,117,84,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/schart/04.po,32,133,98,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/sdraw/00.po,2,8,6,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/sdraw/01.po,3,12,10,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/sdraw/04.po,102,486,362,0,0,1,3,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/shared/00.po,787,7100,5012,0,0,780,8594,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/shared/01.po,1732,9722,7242,0,0,3755,42240,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/shared/02.po,1710,18911,13273,0,0,472,10211,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/shared/04.po,238,983,773,0,0,75,1088,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/shared/05.po,106,1108,746,0,0,90,1232,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/shared/07.po,4,29,22,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/simpress/00.po,154,873,679,0,0,9,29,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/simpress/01.po,0,0,0,0,0,1046,8514,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/simpress/02.po,653,6468,4580,0,0,7,41,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/simpress/04.po,196,985,779,0,0,43,153,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/smath/00.po,54,228,190,0,0,12,127,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/smath/01.po,1111,11553,9765,0,0,440,2306,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/smath/02.po,6,97,67,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/smath/04.po,25,130,99,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/swriter/00.po,202,1010,919,0,0,108,808,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/swriter/01.po,2582,22974,18057,0,0,764,10819,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/swriter/02.po,372,2466,1827,0,0,54,584,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/swriter/04.po,246,1205,952,0,0,8,71,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/sbasic/shared/01.po,58,357,302,0,0,9,108,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/sbasic/shared/02.po,187,1147,1022,0,0,11,335,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/scalc/00.po,63,155,160,0,0,138,790,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/scalc/01.po,4429,29368,24095,0,0,3066,43787,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/scalc/02.po,117,783,652,0,0,6,27,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/scalc/04.po,124,1017,806,0,0,63,480,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/scalc/05.po,75,522,450,0,0,62,331,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/schart/00.po,27,83,88,0,0,33,264,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/schart/01.po,776,8625,6925,0,0,196,3201,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/schart/02.po,25,117,98,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/schart/04.po,32,133,121,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/sdraw/00.po,2,8,10,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/sdraw/01.po,3,12,10,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/sdraw/04.po,83,372,334,0,0,20,117,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/shared/00.po,590,3400,2953,0,0,977,12294,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/shared/01.po,2235,7905,7469,0,0,3252,44057,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/shared/02.po,1132,7467,6118,0,0,1050,21655,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/shared/04.po,236,971,859,0,0,77,1100,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/shared/05.po,43,309,286,0,0,153,2031,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/shared/07.po,4,29,23,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/simpress/00.po,151,833,768,0,0,12,69,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/simpress/01.po,848,5929,4798,0,0,198,2585,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/simpress/02.po,607,4860,3759,0,0,53,1649,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/simpress/04.po,180,841,790,0,0,59,297,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/smath/00.po,55,229,218,0,0,11,126,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/smath/01.po,1406,11403,9719,0,0,145,2456,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/smath/02.po,6,97,75,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/smath/04.po,25,130,124,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/swriter/00.po,211,1040,1038,0,0,99,778,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/swriter/01.po,2494,21184,17359,0,0,852,12609,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/swriter/02.po,382,2502,2114,0,0,44,548,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/swriter/04.po,232,1002,943,0,0,22,274,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/sbasic/shared/01.po,67,465,405,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1296,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/sbasic/shared/03.po,47,145,140,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/scalc/00.po,201,945,1223,0,0,0,0,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/scalc/01.po,7495,73155,62659,0,0,0,0,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/scalc/02.po,123,810,708,0,0,0,0,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/scalc/04.po,187,1497,1413,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/scalc/05.po,137,853,765,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/scalc/06.po,1,3,4,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/schart/00.po,60,347,415,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/schart/01.po,972,11826,9989,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/schart/02.po,25,117,104,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/schart/04.po,32,133,135,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/sdraw/00.po,2,8,10,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/sdraw/01.po,3,12,10,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/sdraw/04.po,103,489,460,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/shared/00.po,1567,15694,15835,0,0,0,0,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/shared/01.po,5487,51962,45473,0,0,0,0,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/shared/02.po,2182,29122,24676,0,0,0,0,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/shared/04.po,313,2071,1916,0,0,0,0,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/shared/05.po,196,2340,2063,0,0,0,0,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/shared/06.po,3,7,9,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/shared/07.po,7,82,74,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/simpress/00.po,163,904,959,0,0,0,0,163,904,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/simpress/01.po,1046,8514,7146,0,0,0,0,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/simpress/02.po,660,6509,5370,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/simpress/04.po,239,1138,1099,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/smath/00.po,66,355,366,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/smath/01.po,1551,13859,12065,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/smath/02.po,6,97,83,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/smath/04.po,26,135,131,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/smath/06.po,9,21,30,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/swriter/00.po,310,1818,2074,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/swriter/01.po,3346,33793,28939,0,0,0,0,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/swriter/02.po,426,3050,2682,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/swriter/04.po,254,1276,1289,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/sbasic/shared/01.po,33,53,67,0,0,34,412,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/sbasic/shared/02.po,61,112,144,0,0,137,1370,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/scalc/00.po,26,49,53,0,0,175,896,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/scalc/01.po,1850,3819,5502,0,0,5645,69336,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/scalc/02.po,35,89,96,0,0,88,721,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/scalc/04.po,25,54,63,0,0,162,1443,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/scalc/05.po,8,17,23,0,0,129,836,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/schart/00.po,7,24,30,0,0,53,323,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/schart/01.po,203,363,439,0,0,769,11463,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/schart/02.po,9,23,28,0,0,16,94,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/schart/04.po,16,37,51,0,0,16,96,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/sdraw/00.po,1,4,5,0,0,1,4,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/sdraw/01.po,1,2,2,0,0,2,10,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/sdraw/04.po,36,98,132,0,0,67,391,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/shared/00.po,320,607,723,0,0,1247,15087,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/shared/01.po,1567,2723,3274,0,0,3920,49239,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/shared/02.po,665,1335,1646,0,0,1517,27787,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/shared/04.po,87,220,248,0,0,226,1851,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/shared/05.po,14,36,45,0,0,182,2304,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/shared/07.po,2,7,7,0,0,5,75,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/simpress/00.po,30,57,65,0,0,133,845,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/simpress/01.po,345,676,828,0,0,701,7838,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/simpress/02.po,281,746,866,0,0,379,5763,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/simpress/04.po,60,158,186,0,0,179,980,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/smath/00.po,16,51,48,0,0,50,304,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/smath/01.po,210,368,473,0,0,1341,13491,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/smath/02.po,2,4,4,0,0,4,93,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/smath/04.po,10,22,30,0,0,16,113,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/swriter/00.po,89,206,206,0,0,221,1612,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/swriter/01.po,1229,2292,2806,0,0,2117,31501,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/swriter/02.po,155,334,366,0,0,271,2716,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/swriter/04.po,80,200,230,0,0,174,1076,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/sbasic/shared/01.po,63,408,405,0,0,4,57,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1316,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/scalc/00.po,70,237,227,0,0,131,708,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/scalc/01.po,5937,52524,44767,0,0,1558,20631,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/scalc/02.po,118,796,672,0,0,5,14,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/scalc/04.po,187,1497,1352,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/scalc/05.po,92,751,678,0,0,45,102,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/scalc/06.po,1,3,2,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/schart/00.po,60,347,303,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/schart/01.po,899,10687,8948,0,0,73,1139,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/schart/02.po,25,117,96,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/schart/04.po,32,133,118,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/sdraw/00.po,2,8,13,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/sdraw/01.po,3,12,12,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/sdraw/04.po,103,489,483,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/shared/00.po,827,7637,6742,0,0,740,8057,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/shared/01.po,3903,31924,28264,0,0,1584,20038,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/shared/02.po,1750,19718,16780,0,0,432,9404,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/shared/04.po,238,983,791,0,0,75,1088,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/shared/05.po,127,1430,1304,0,0,69,910,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/shared/07.po,6,65,63,0,0,1,17,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/simpress/00.po,163,902,804,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/simpress/01.po,877,6683,5961,0,0,169,1831,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/simpress/02.po,653,6468,6056,0,0,7,41,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/simpress/04.po,198,989,818,0,0,41,149,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/smath/00.po,62,334,261,0,0,4,21,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/smath/01.po,1116,11790,10902,0,0,435,2069,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/smath/02.po,6,97,85,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/smath/04.po,25,130,106,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/swriter/00.po,231,1113,949,0,0,79,705,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/swriter/01.po,2770,26230,23228,0,0,576,7563,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/swriter/02.po,378,2494,2241,0,0,48,556,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/swriter/04.po,253,1273,1098,0,0,1,3,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/sbasic/shared/01.po,63,408,312,0,0,4,57,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1093,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/scalc/00.po,65,159,141,0,0,136,786,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/scalc/01.po,785,3972,3074,0,0,6710,69183,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/scalc/02.po,118,796,620,0,0,5,14,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/scalc/04.po,167,1442,988,0,0,20,55,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/scalc/05.po,90,745,550,0,0,47,108,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/schart/00.po,33,137,124,0,0,27,210,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/schart/01.po,217,1856,1317,0,0,755,9970,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/schart/02.po,21,97,79,0,0,4,20,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/schart/04.po,28,89,73,0,0,4,44,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/sdraw/00.po,2,8,4,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/sdraw/01.po,3,12,12,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/sdraw/04.po,95,402,304,0,0,8,87,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/shared/00.po,433,1222,1052,0,0,1134,14472,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/shared/01.po,979,4783,3626,0,0,4508,47179,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/shared/02.po,1240,14286,9650,1,1,941,14835,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/shared/04.po,228,891,670,0,0,85,1180,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/shared/05.po,110,1129,796,0,0,86,1211,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/shared/06.po,1,2,2,0,0,2,5,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/shared/07.po,4,29,23,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/simpress/00.po,157,878,811,0,0,6,24,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/simpress/01.po,790,5627,4082,0,0,256,2887,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/simpress/02.po,205,996,764,0,0,455,5513,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/simpress/04.po,67,231,188,0,0,172,907,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/smath/00.po,66,355,312,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/smath/01.po,234,2436,1759,0,0,1317,11423,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/smath/02.po,6,97,61,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/smath/04.po,25,130,94,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/swriter/00.po,263,1534,1385,0,0,47,284,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/swriter/01.po,1511,16151,10845,0,0,1835,17642,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/swriter/02.po,243,1566,1146,0,0,183,1484,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/swriter/04.po,251,1257,935,0,0,3,19,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/sbasic/shared/01.po,24,34,37,0,0,43,431,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/sbasic/shared/02.po,51,89,98,0,0,147,1393,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/scalc/00.po,56,125,159,0,0,145,820,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/scalc/01.po,4082,38692,24039,0,0,3413,34463,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/scalc/02.po,108,748,600,0,0,15,62,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/scalc/04.po,152,1167,843,0,0,35,330,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/scalc/05.po,52,457,371,0,0,85,396,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/schart/00.po,47,249,240,0,0,13,98,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/schart/01.po,305,2255,1600,0,0,667,9571,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/schart/02.po,25,117,82,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/schart/04.po,28,129,128,0,0,4,4,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/sdraw/01.po,3,12,11,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/sdraw/04.po,89,472,361,0,0,14,17,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/shared/00.po,497,4053,3802,0,0,1070,11641,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/shared/01.po,1480,2529,2496,0,0,4007,49433,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/shared/02.po,698,1150,1136,0,0,1484,27972,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/shared/04.po,199,876,877,0,0,114,1195,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/shared/05.po,83,946,757,0,0,113,1394,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/shared/07.po,4,29,26,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/simpress/00.po,145,796,756,0,0,18,106,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/simpress/01.po,314,644,650,0,0,732,7870,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/simpress/02.po,398,1065,1129,0,0,262,5444,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/simpress/04.po,30,52,47,0,0,209,1086,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/smath/00.po,51,222,206,0,0,15,133,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/smath/01.po,440,3232,2623,0,0,1111,10627,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/smath/02.po,6,97,75,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/smath/04.po,19,124,92,0,0,7,11,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/swriter/00.po,80,167,160,0,0,230,1651,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/swriter/01.po,965,2497,2464,0,0,2381,31296,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/swriter/02.po,106,178,181,0,0,320,2872,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/swriter/04.po,76,115,164,0,0,178,1161,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/sbasic/shared/01.po,66,459,375,0,0,1,6,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1190,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/scalc/00.po,66,160,164,0,0,135,785,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/scalc/01.po,7274,69667,58415,0,0,221,3488,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/scalc/02.po,119,797,642,0,0,4,13,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/scalc/04.po,187,1497,1238,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/scalc/05.po,92,751,633,0,0,45,102,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/scalc/06.po,1,3,3,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/schart/00.po,60,347,358,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/schart/01.po,972,11826,9118,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/schart/02.po,25,117,85,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/schart/04.po,32,133,122,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/sdraw/00.po,2,8,6,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/sdraw/01.po,3,12,11,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/sdraw/04.po,103,489,389,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/shared/00.po,914,9848,7999,0,0,653,5846,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/shared/01.po,5005,43885,34056,0,0,482,8077,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/shared/02.po,1826,20600,15300,0,0,356,8522,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/shared/04.po,240,988,851,0,0,73,1083,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/shared/05.po,111,1155,910,0,0,85,1185,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/shared/06.po,1,2,2,0,0,2,5,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/shared/07.po,4,29,22,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/simpress/00.po,163,902,825,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/simpress/01.po,1026,8315,6105,0,0,20,199,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/simpress/02.po,660,6509,5040,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/simpress/04.po,239,1138,945,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/smath/00.po,66,355,312,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/smath/01.po,1523,13447,11139,0,0,28,412,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/smath/02.po,6,97,66,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/smath/04.po,26,135,108,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/smath/06.po,9,21,25,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/swriter/00.po,282,1700,1673,0,0,28,118,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/swriter/01.po,3284,32862,24621,0,0,62,931,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/swriter/02.po,426,3050,2401,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/swriter/04.po,254,1276,1024,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/sbasic/shared/01.po,24,35,35,0,0,43,430,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/sbasic/shared/02.po,183,1139,972,0,0,15,343,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/scalc/00.po,61,152,151,0,0,140,793,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/scalc/01.po,1093,1585,1502,0,0,6402,71570,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/scalc/02.po,116,782,649,0,0,7,28,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/scalc/04.po,168,1254,1047,0,0,19,243,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/scalc/05.po,79,602,534,0,0,58,251,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/schart/00.po,16,68,75,0,0,44,279,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/schart/01.po,158,351,367,0,0,814,11475,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/schart/02.po,25,117,104,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/schart/04.po,32,133,117,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/sdraw/01.po,3,12,10,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/sdraw/04.po,99,443,345,0,0,4,46,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/shared/00.po,362,718,665,0,0,1205,14976,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/shared/01.po,1572,2974,2778,0,0,3915,48988,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/shared/02.po,631,1153,1173,0,0,1551,27969,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/shared/04.po,231,930,825,0,0,82,1141,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/shared/05.po,101,991,775,0,0,95,1349,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/shared/07.po,4,29,22,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/simpress/00.po,152,849,849,0,0,11,53,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/simpress/01.po,351,752,839,0,0,695,7762,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/simpress/02.po,436,1585,1581,0,0,224,4924,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/simpress/04.po,182,864,772,0,0,57,274,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/smath/00.po,54,228,203,0,0,12,127,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/smath/01.po,258,407,423,0,0,1293,13452,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/smath/02.po,6,97,72,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/smath/04.po,25,130,104,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/swriter/00.po,208,1026,1000,0,0,102,792,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/swriter/01.po,1042,1613,1737,0,0,2304,32180,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/swriter/02.po,366,2437,2147,0,0,60,613,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/swriter/04.po,235,1080,960,0,0,19,196,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/sbasic/shared/01.po,67,465,394,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1320,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/sbasic/shared/03.po,47,145,139,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/scalc/00.po,197,924,975,0,0,4,21,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/scalc/01.po,1929,15996,13393,0,0,5566,57159,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/scalc/02.po,123,810,666,0,0,0,0,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/scalc/04.po,187,1497,1207,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/scalc/05.po,137,853,757,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/scalc/06.po,1,3,3,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/schart/00.po,60,347,356,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/schart/01.po,972,11826,9754,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/schart/02.po,25,117,97,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/schart/04.po,32,133,117,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/sdraw/00.po,2,8,8,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/sdraw/01.po,3,12,11,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/sdraw/04.po,103,489,438,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/shared/00.po,1553,15574,14257,0,0,14,120,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/shared/01.po,4207,36352,29783,0,0,1280,15610,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/shared/02.po,743,6507,5435,0,0,1439,22615,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/shared/04.po,313,2071,1726,0,0,0,0,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/shared/05.po,196,2340,1851,0,0,0,0,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/shared/06.po,3,7,9,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/shared/07.po,7,82,60,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/simpress/00.po,163,902,881,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/simpress/01.po,1046,8514,6934,0,0,0,0,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/simpress/02.po,660,6509,5599,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/simpress/04.po,239,1138,1012,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/smath/00.po,66,355,371,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/smath/01.po,1551,13859,13642,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/smath/02.po,6,97,110,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/smath/04.po,26,135,118,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/smath/06.po,9,21,30,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/swriter/00.po,310,1818,1744,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/swriter/01.po,3346,33793,27011,0,0,0,0,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/swriter/02.po,426,3050,2569,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/swriter/04.po,254,1276,1186,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/sbasic/shared/01.po,57,336,452,0,0,10,129,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/sbasic/shared/02.po,183,1139,1466,0,0,15,343,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/scalc/00.po,61,152,224,0,0,140,793,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/scalc/01.po,5504,48601,58538,0,0,1991,24554,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/scalc/02.po,116,782,1048,0,0,7,28,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/scalc/04.po,169,1264,1476,0,0,18,233,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/scalc/05.po,82,672,855,0,0,55,181,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/schart/00.po,47,249,391,0,0,13,98,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/schart/01.po,828,9773,12092,0,0,144,2053,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/schart/02.po,25,117,186,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/schart/04.po,32,133,204,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/sdraw/00.po,2,8,10,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/sdraw/01.po,3,12,13,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/sdraw/04.po,101,455,575,0,0,2,34,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/shared/00.po,770,6654,9327,0,0,797,9040,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/shared/01.po,3659,28285,36732,0,0,1828,23677,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/shared/02.po,1694,19239,24927,0,0,488,9883,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/shared/04.po,234,960,1230,0,0,79,1111,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/shared/05.po,103,1011,1340,0,0,93,1329,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/shared/07.po,4,29,30,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/simpress/00.po,154,873,1204,0,0,9,29,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/simpress/01.po,857,6356,8379,0,0,189,2158,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/simpress/02.po,648,6360,8122,0,0,12,149,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/simpress/04.po,185,900,1102,0,0,54,238,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/smath/00.po,53,224,325,0,0,13,131,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/smath/01.po,1056,11356,13918,0,0,495,2503,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/smath/02.po,6,97,119,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/smath/04.po,25,130,141,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/swriter/00.po,210,1037,1490,0,0,100,781,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/swriter/01.po,2630,24157,30684,0,0,716,9636,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/swriter/02.po,366,2437,3058,0,0,60,613,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/swriter/04.po,241,1158,1483,0,0,13,118,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/sbasic/shared/01.po,67,465,94,0,0,0,0,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/sbasic/shared/02.po,198,1482,244,0,0,0,0,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/sbasic/shared/03.po,47,145,93,0,0,0,0,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/scalc/00.po,201,945,459,0,0,0,0,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/scalc/01.po,6656,61055,16007,95,2372,744,9728,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/scalc/02.po,123,810,194,0,0,0,0,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/scalc/04.po,187,1497,290,0,0,0,0,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/scalc/05.po,137,853,279,0,0,0,0,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/scalc/06.po,1,3,2,0,0,0,0,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/schart/00.po,60,347,170,0,0,0,0,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/schart/01.po,972,11826,1771,0,0,0,0,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/schart/02.po,25,117,28,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/schart/04.po,32,133,41,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/sdraw/00.po,2,8,2,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/sdraw/01.po,3,12,3,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/sdraw/04.po,103,489,161,0,0,0,0,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/shared/00.po,1567,15694,4432,0,0,0,0,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/shared/01.po,5487,51962,8876,0,0,0,0,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/shared/02.po,2522,37155,4158,0,0,0,0,2522,37155,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/shared/04.po,313,2071,434,0,0,0,0,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/shared/05.po,196,2340,321,0,0,0,0,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/shared/06.po,3,7,5,0,0,0,0,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/shared/07.po,7,82,25,0,0,0,0,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/simpress/00.po,163,902,339,0,0,0,0,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/simpress/01.po,1046,8514,1444,0,0,0,0,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/simpress/02.po,660,6509,925,0,0,0,0,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/simpress/04.po,239,1138,347,0,0,0,0,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/smath/00.po,66,355,123,0,0,0,0,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/smath/01.po,1551,13859,2778,0,0,0,0,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/smath/02.po,6,97,10,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/smath/04.po,26,135,42,0,0,0,0,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/smath/06.po,9,21,10,0,0,0,0,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/swriter/00.po,310,1818,753,0,0,0,0,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/swriter/01.po,3346,33793,4757,0,0,0,0,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/swriter/02.po,426,3050,686,0,0,0,0,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/swriter/04.po,254,1276,406,0,0,0,0,254,1276,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/sbasic/shared/01.po,63,408,91,0,0,4,57,67,465,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/sbasic/shared/02.po,195,1404,262,0,0,3,78,198,1482,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/scalc/00.po,62,153,105,0,0,139,792,201,945,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/scalc/01.po,5680,50268,14910,0,0,1815,22887,7495,73155,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/scalc/02.po,117,795,191,0,0,6,15,123,810,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/scalc/04.po,169,1264,237,0,0,18,233,187,1497,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/scalc/05.po,85,705,175,0,0,52,148,137,853,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/scalc/06.po,0,0,0,0,0,1,3,1,3,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/schart/00.po,47,249,193,0,0,13,98,60,347,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/schart/01.po,831,9897,1720,0,0,141,1929,972,11826,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/schart/02.po,25,117,28,0,0,0,0,25,117,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/schart/04.po,32,133,41,0,0,0,0,32,133,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/sdraw/00.po,2,8,2,0,0,0,0,2,8,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/sdraw/01.po,3,12,3,0,0,0,0,3,12,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/sdraw/04.po,102,486,149,0,0,1,3,103,489,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/00.po,776,6562,1556,0,0,791,9132,1567,15694,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/01.po,3686,29029,5804,0,0,1801,22933,5487,51962,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/02.po,1704,19334,2810,0,0,478,9788,2182,29122,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/04.po,234,960,271,0,0,79,1111,313,2071,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/05.po,107,1112,174,0,0,89,1228,196,2340,05.po,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/06.po,0,0,0,0,0,3,7,3,7,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/07.po,4,29,9,0,0,3,53,7,82,07.po,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/simpress/00.po,154,873,382,0,0,9,29,163,902,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/simpress/01.po,865,6507,1274,0,0,181,2007,1046,8514,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/simpress/02.po,658,6451,1015,0,0,2,58,660,6509,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/simpress/04.po,194,976,269,0,0,45,162,239,1138,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/smath/00.po,54,228,105,0,0,12,127,66,355,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/smath/01.po,1051,11443,2840,0,0,500,2416,1551,13859,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/smath/02.po,6,97,17,0,0,0,0,6,97,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/smath/04.po,25,130,35,0,0,1,5,26,135,04.po,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/00.po,214,1080,558,0,0,96,738,310,1818,00.po,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/01.po,2669,24832,4110,0,0,677,8961,3346,33793,01.po,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/02.po,370,2480,616,0,0,56,570,426,3050,02.po,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/04.po,247,1206,323,0,0,7,70,254,1276,04.po,,04, diff --git a/results/f30/0.error.len(language)>3.csv b/results/f30/0.error.len(language)>3.csv new file mode 100644 index 0000000..3fd39d8 --- /dev/null +++ b/results/f30/0.error.len(language)>3.csv @@ -0,0 +1,12594 @@ +src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,script,language,region +boost-1.69.0-6.fc30.src.rpm.stats.csv,tools/build/example/gettext/russian.po,1,1,2,0,0,0,0,1,1,russian.po,,russian, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/tr/messages.po,86,693,680,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/sv/messages.po,86,693,685,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/sr/messages.po,86,693,700,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/sl/messages.po,85,693,694,0,0,1,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/sk/messages.po,86,693,717,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/ru/messages.po,86,693,676,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/pt_pt/messages.po,86,693,699,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/pt_br/messages.po,86,693,768,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/pl/messages.po,86,693,688,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/oc/messages.po,86,693,734,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/nl/messages.po,86,693,716,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/nb/messages.po,85,693,692,0,0,1,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/ko/messages.po,86,693,705,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/it/messages.po,86,693,746,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/id/messages.po,86,693,696,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/hu/messages.po,86,693,693,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/hr/messages.po,86,693,688,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/gl/messages.po,86,693,777,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/gd/messages.po,86,693,797,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/fr/messages.po,86,693,784,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/fi/messages.po,86,693,676,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/et/messages.po,86,693,696,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/es/messages.po,86,693,775,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/en/messages.po,85,693,693,0,0,1,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/el/messages.po,86,693,718,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/de/messages.po,86,693,712,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/da/messages.po,86,693,695,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/cs/messages.po,86,693,703,0,0,0,0,86,693,messages.po,,messages, +chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/ca/messages.po,86,693,768,0,0,0,0,86,693,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/accessibility/messages.po,8,10,11,0,0,3,17,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/avmedia/messages.po,21,44,36,0,0,1,1,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/basctl/messages.po,114,269,219,3,4,38,338,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/basic/messages.po,94,347,285,2,7,39,195,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/chart2/messages.po,289,488,459,3,3,328,877,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/connectivity/messages.po,9,52,29,1,6,96,989,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/cui/messages.po,1505,2562,2304,49,97,789,2899,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dbaccess/messages.po,399,1074,859,39,106,374,3330,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/desktop/messages.po,74,173,147,3,5,85,1047,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/en/dialog.po,1,1,1,1,2,35,173,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/en/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/hu_hu/dialog.po,3,4,4,2,2,27,65,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/pt_br/dialog.po,1,2,2,0,0,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/ru_ru/dialog.po,10,18,14,0,0,4,8,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/editeng/messages.po,159,322,300,6,16,100,318,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/extensions/messages.po,275,468,441,15,31,373,1600,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/extras/source/autocorr/emoji.po,434,455,538,27,27,1114,1335,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/extras/source/gallery/share.po,11,14,12,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/filter/messages.po,86,182,170,5,8,131,628,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/filter/source/config/fragments/filters.po,134,482,487,5,10,81,240,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/filter/source/config/fragments/internalgraphicfilters.po,25,91,91,0,0,13,48,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/filter/source/config/fragments/types.po,16,59,64,0,0,22,62,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/forms/messages.po,26,84,58,1,7,31,239,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/formula/messages.po,116,122,122,17,17,305,375,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/fpicker/messages.po,47,87,83,1,1,13,75,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/framework/messages.po,17,33,32,0,0,12,177,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/librelogo/source/pythonpath.po,87,107,101,9,9,42,57,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,1,4,4,0,0,1,17,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/nlpsolver/src/locale.po,25,41,41,0,0,16,64,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/officecfg/registry/data/org/openoffice.po,2,7,7,0,0,7,21,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/officecfg/registry/data/org/openoffice/office.po,256,318,306,112,135,940,1388,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/readlicense_oo/docs.po,12,57,57,0,0,91,2346,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/reportbuilder/java/org/libreoffice/report/function/metadata.po,2,6,3,0,0,4,14,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/reportdesign/messages.po,139,219,207,4,8,115,390,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/sc/messages.po,1573,2504,2274,77,134,3036,17622,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scaddins/messages.po,263,529,430,27,66,611,2593,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/sccomp/messages.po,6,24,18,0,0,8,41,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/activex.po,0,0,0,0,0,2,16,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/base.po,4,8,9,1,3,5,33,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/calc.po,7,18,22,6,19,9,57,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/draw.po,29,94,94,4,11,8,44,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/extensions.po,7,21,19,1,1,8,43,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/graphicfilter.po,28,91,90,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/impress.po,10,25,25,6,19,5,37,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/math.po,6,29,23,1,3,3,10,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/onlineupdate.po,1,2,2,0,0,1,11,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/python.po,1,1,1,0,0,1,6,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/quickstart.po,0,0,0,0,0,2,15,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/winexplorerext.po,0,0,0,0,0,2,18,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/writer.po,17,51,51,3,10,7,53,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/sd/messages.po,408,703,672,58,110,853,2138,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/sfx2/messages.po,240,429,391,19,28,322,1769,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/starmath/messages.po,257,401,369,33,85,215,482,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/svl/messages.po,0,0,0,0,0,1,1,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/svtools/messages.po,229,549,495,10,19,675,2043,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/svx/messages.po,860,1490,1388,67,148,1919,5586,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/sw/messages.po,1649,2664,2633,90,129,1702,4947,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/swext/mediawiki/help.po,32,73,63,0,0,57,1331,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,21,38,34,0,0,11,143,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/sysui/desktop/share.po,60,192,205,0,0,6,85,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/uui/messages.po,56,199,150,1,3,100,1352,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/vcl/messages.po,141,211,199,11,13,204,513,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/wizards/messages.po,119,225,164,4,6,142,811,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/wizards/source/resources.po,243,520,405,11,44,300,1722,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/writerperfect/messages.po,10,18,18,0,0,20,47,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/xmlsecurity/messages.po,71,186,146,0,0,20,238,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/accessibility/messages.po,8,14,14,1,1,2,12,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/avmedia/messages.po,19,33,35,0,0,3,12,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/basctl/messages.po,94,388,388,37,54,24,169,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/basic/messages.po,18,52,51,117,497,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/chart2/messages.po,547,1151,935,18,57,55,160,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/connectivity/messages.po,96,942,967,6,48,4,57,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,3,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,1,5,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/cui/messages.po,744,1485,1427,653,1076,946,2997,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dbaccess/messages.po,407,2456,2401,247,1315,158,739,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/desktop/messages.po,106,795,828,28,175,28,255,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/en/dialog.po,1,1,1,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/hu_hu/dialog.po,2,2,2,6,9,24,60,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/ru_ru/dialog.po,3,3,3,2,4,9,19,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/editeng/messages.po,234,561,555,18,61,13,34,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/extensions/messages.po,400,970,850,208,827,55,302,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/extras/source/autocorr/emoji.po,43,39,39,186,178,1346,1600,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/extras/source/gallery/share.po,10,13,12,0,0,2,2,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/filter/messages.po,52,205,188,31,61,139,552,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/filter/source/config/fragments/filters.po,81,280,242,10,25,129,427,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/filter/source/config/fragments/internalgraphicfilters.po,35,127,124,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/filter/source/config/fragments/types.po,16,46,39,2,7,20,68,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/forms/messages.po,54,314,322,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/formula/messages.po,306,309,308,61,87,71,118,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/fpicker/messages.po,31,88,79,15,34,15,41,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/framework/messages.po,17,163,153,6,14,6,33,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/librelogo/source/pythonpath.po,19,21,21,42,44,77,108,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/nlpsolver/src/locale.po,10,10,11,3,4,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/officecfg/registry/data/org/openoffice/office.po,1192,1279,1236,4,7,112,555,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/readlicense_oo/docs.po,19,219,209,0,0,84,2184,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/reportbuilder/java/org/libreoffice/report/function/metadata.po,1,1,1,0,0,5,19,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/reportdesign/messages.po,186,440,411,57,137,15,40,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/sc/messages.po,2257,11179,10377,1011,2984,1418,6097,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/scaddins/messages.po,781,2471,2393,23,79,97,638,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/sccomp/messages.po,11,47,43,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/scp2/source/activex.po,1,2,1,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/scp2/source/base.po,8,40,38,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/scp2/source/calc.po,15,49,39,3,29,4,16,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/scp2/source/draw.po,11,45,36,1,5,29,99,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/scp2/source/gnome.po,1,2,1,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/scp2/source/graphicfilter.po,28,91,46,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/scp2/source/impress.po,17,67,52,1,4,3,10,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/scp2/source/math.po,9,39,33,0,0,1,3,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/scp2/source/onlineupdate.po,2,13,15,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/scp2/source/quickstart.po,2,15,16,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/scp2/source/winexplorerext.po,2,18,17,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/scp2/source/writer.po,19,56,34,0,0,8,58,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/scp2/source/xsltfilter.po,2,6,2,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/sd/messages.po,419,1043,1012,325,556,575,1352,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/sfx2/messages.po,192,523,519,139,430,250,1273,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/starmath/messages.po,275,477,433,104,148,126,343,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/svtools/messages.po,559,1460,1367,71,144,284,1007,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/svx/messages.po,1472,3375,3032,559,1299,815,2550,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/sw/messages.po,1279,2118,2020,1055,1990,1107,3632,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/swext/mediawiki/help.po,44,304,289,24,702,21,398,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,170,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/sysui/desktop/share.po,43,153,104,10,52,13,72,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/uui/messages.po,87,804,835,23,136,47,614,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/vcl/messages.po,151,225,209,47,104,158,408,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/wizards/messages.po,229,985,959,12,13,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/wizards/source/resources.po,470,1917,1871,34,192,50,177,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/writerperfect/messages.po,1,1,1,5,10,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/xmlsecurity/messages.po,21,40,37,17,118,53,266,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/accessibility/messages.po,11,27,29,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/avmedia/messages.po,22,45,43,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/basctl/messages.po,155,611,575,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/basic/messages.po,135,549,593,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/chart2/messages.po,620,1368,1595,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/connectivity/messages.po,106,1047,891,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,5,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,6,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,4,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/cui/messages.po,2341,5556,6092,0,0,2,2,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dbaccess/messages.po,812,4510,3899,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/desktop/messages.po,162,1225,1016,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/en/dialog.po,37,176,190,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/hu_hu/dialog.po,32,71,71,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/ru_ru/dialog.po,14,26,30,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/editeng/messages.po,265,656,828,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/extensions/messages.po,663,2099,2042,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/extras/source/autocorr/emoji.po,1058,1243,1432,0,0,517,574,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/extras/source/gallery/share.po,11,14,16,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/filter/messages.po,222,818,849,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/filter/source/config/fragments/filters.po,220,732,748,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/filter/source/config/fragments/internalgraphicfilters.po,38,139,139,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/filter/source/config/fragments/types.po,38,121,125,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/forms/messages.po,58,330,265,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/formula/messages.po,426,502,862,0,0,0,0,426,502,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/fpicker/messages.po,61,163,168,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/framework/messages.po,29,210,195,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/auxiliary.po,105,302,384,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/sbasic/guide.po,100,1293,1243,0,0,3,52,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/sbasic/shared.po,4126,33357,32837,0,0,379,2074,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/scalc.po,187,986,1008,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/scalc/guide.po,1460,21281,19892,0,0,9,312,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/schart.po,96,931,885,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/sdraw.po,123,732,714,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/sdraw/guide.po,275,3072,2760,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/shared.po,245,2167,2034,0,0,5,141,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/shared/autokorr.po,48,420,353,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/shared/autopi.po,887,8394,7626,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/shared/explorer/database.po,1544,16165,15065,0,0,97,2692,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/shared/guide.po,2494,35802,34655,0,0,22,641,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/shared/help.po,76,109,110,0,0,2,8,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/shared/menu.po,16,120,132,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/shared/optionen.po,1893,22145,21213,0,0,41,1206,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/simpress.po,199,1395,1313,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/simpress/guide.po,765,10243,9716,0,0,2,39,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/smath.po,60,739,719,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/smath/guide.po,104,1193,1162,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/swriter.po,331,2836,2735,0,0,5,110,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/swriter/guide.po,2143,27900,26772,0,0,1,37,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/swriter/librelogo.po,326,3019,3361,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/swriter/menu.po,17,96,110,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/librelogo/source/pythonpath.po,138,173,246,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,21,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/nlpsolver/src/locale.po,41,105,114,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/officecfg/registry/data/org/openoffice.po,9,28,36,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/officecfg/registry/data/org/openoffice/office.po,1308,1841,3081,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/readlicense_oo/docs.po,87,1857,1812,0,0,16,546,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,14,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/reportdesign/messages.po,258,617,679,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/sc/messages.po,4645,20072,17775,0,0,41,188,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/scaddins/messages.po,900,3187,3209,0,0,0,0,900,3187,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/sccomp/messages.po,14,65,63,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/scp2/source/activex.po,2,16,17,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/scp2/source/base.po,10,44,44,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/scp2/source/calc.po,22,94,95,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/scp2/source/draw.po,41,149,149,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/scp2/source/extensions.po,16,65,69,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/scp2/source/gnome.po,2,11,11,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/scp2/source/graphicfilter.po,30,101,103,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/scp2/source/impress.po,21,81,82,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/scp2/source/math.po,10,42,41,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/scp2/source/onlineupdate.po,2,13,14,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/scp2/source/python.po,2,7,10,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/scp2/source/quickstart.po,2,15,13,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/scp2/source/winexplorerext.po,2,18,20,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/scp2/source/writer.po,27,114,118,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/sd/messages.po,1319,2951,3212,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/sfx2/messages.po,577,2096,2015,0,0,4,130,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/starmath/messages.po,505,968,1206,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/svtools/messages.po,914,2611,2618,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/svx/messages.po,2846,7224,7877,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/sw/messages.po,3438,7734,8620,0,0,1,3,3439,7737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/swext/mediawiki/help.po,89,1404,1320,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,151,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/sysui/desktop/share.po,66,277,288,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/uui/messages.po,157,1554,1448,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/vcl/messages.po,292,576,626,0,0,64,161,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/wizards/messages.po,265,1042,982,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/wizards/source/resources.po,554,2286,2192,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/writerperfect/messages.po,30,65,76,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/xmlsecurity/messages.po,91,424,416,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/accessibility/messages.po,1,1,1,0,0,10,26,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/avmedia/messages.po,16,26,29,0,0,6,19,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/basctl/messages.po,7,7,8,11,14,137,590,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/basic/messages.po,1,1,1,0,0,134,548,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/chart2/messages.po,39,39,55,90,144,491,1185,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/connectivity/messages.po,0,0,0,1,4,105,1043,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,3,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/cui/messages.po,170,180,215,257,321,1916,5057,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dbaccess/messages.po,24,31,34,59,86,729,4393,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/desktop/messages.po,2,2,2,6,6,154,1217,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/en/dialog.po,0,0,0,0,0,37,176,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/hu_hu/dialog.po,0,0,0,1,1,31,70,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/ru_ru/dialog.po,0,0,0,0,0,14,26,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/editeng/messages.po,11,12,12,15,19,239,625,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/extensions/messages.po,50,53,77,61,80,552,1966,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/extras/source/autocorr/emoji.po,1,1,1,49,31,1525,1785,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/extras/source/gallery/share.po,1,1,1,0,0,11,14,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/filter/messages.po,7,7,7,10,10,205,801,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/filter/source/config/fragments/filters.po,6,13,14,1,3,213,716,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/filter/source/config/fragments/types.po,0,0,0,0,0,38,121,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/forms/messages.po,3,3,3,3,3,52,324,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/formula/messages.po,9,9,9,12,13,417,492,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/fpicker/messages.po,3,4,5,4,4,54,155,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/framework/messages.po,0,0,0,1,1,28,209,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/librelogo/source/pythonpath.po,1,1,1,13,13,124,159,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/nlpsolver/src/locale.po,6,6,6,5,5,30,94,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/officecfg/registry/data/org/openoffice/office.po,286,327,339,891,928,131,586,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/readlicense_oo/docs.po,0,0,0,0,0,103,2403,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/reportdesign/messages.po,18,18,30,45,65,195,534,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/sc/messages.po,568,1972,2143,2295,11350,1823,6938,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/scaddins/messages.po,49,49,49,16,18,836,3121,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/scp2/source/activex.po,0,0,0,0,0,2,16,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/scp2/source/base.po,0,0,0,1,2,9,42,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/scp2/source/calc.po,1,1,3,3,4,18,89,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/scp2/source/draw.po,0,0,0,3,4,38,145,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/scp2/source/extensions.po,0,0,0,0,0,16,65,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/scp2/source/graphicfilter.po,0,0,0,0,0,30,101,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/scp2/source/impress.po,1,1,1,2,2,18,78,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/scp2/source/math.po,0,0,0,2,3,8,39,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/scp2/source/quickstart.po,0,0,0,0,0,2,15,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/scp2/source/winexplorerext.po,0,0,0,0,0,2,18,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/scp2/source/writer.po,1,2,2,3,6,23,106,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/sd/messages.po,81,88,113,129,185,1109,2678,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/sfx2/messages.po,36,37,40,52,59,493,2130,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/starmath/messages.po,19,19,21,48,55,438,894,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/svl/messages.po,0,0,0,0,0,1,1,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/svtools/messages.po,26,26,31,43,59,845,2526,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/svx/messages.po,156,169,200,188,246,2502,6809,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/sw/messages.po,313,330,425,517,675,2611,6735,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/swext/mediawiki/help.po,2,2,2,2,2,85,1400,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,5,5,5,1,1,26,175,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/sysui/desktop/share.po,2,3,7,2,3,62,271,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/uui/messages.po,1,2,2,2,2,154,1550,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/vcl/messages.po,30,33,34,42,64,284,640,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/wizards/messages.po,23,23,33,20,21,222,998,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/wizards/source/resources.po,32,35,38,36,49,486,2202,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/writerperfect/messages.po,0,0,0,2,4,28,61,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/xmlsecurity/messages.po,5,7,5,4,5,82,412,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/accessibility/messages.po,11,27,26,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/avmedia/messages.po,22,45,40,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/basctl/messages.po,155,611,517,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/basic/messages.po,135,549,542,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/chart2/messages.po,541,1197,1210,32,55,47,116,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/connectivity/messages.po,105,1033,876,0,0,1,14,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,8,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/cui/messages.po,2177,5153,5081,62,121,104,284,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dbaccess/messages.po,767,4289,3511,9,36,36,185,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/desktop/messages.po,160,1172,973,0,0,2,53,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/en/dialog.po,37,176,193,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/hu_hu/dialog.po,32,71,80,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/ru_ru/dialog.po,13,25,30,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/editeng/messages.po,265,656,719,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/extensions/messages.po,575,1784,1661,77,283,11,32,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/extras/source/autocorr/emoji.po,914,1045,1142,47,53,614,719,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/extras/source/gallery/share.po,11,14,13,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/filter/messages.po,200,744,679,9,22,13,52,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/filter/source/config/fragments/filters.po,154,528,581,16,58,50,146,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/filter/source/config/fragments/internalgraphicfilters.po,36,131,150,2,8,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/filter/source/config/fragments/types.po,22,71,75,3,13,13,37,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/forms/messages.po,58,330,306,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/formula/messages.po,333,340,339,45,67,60,107,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/fpicker/messages.po,57,155,145,1,4,3,4,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/framework/messages.po,23,196,160,6,14,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/auxiliary.po,89,256,271,1,3,15,43,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/sbasic/guide.po,74,867,833,0,0,29,478,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/sbasic/shared.po,752,1162,1122,0,0,3753,34269,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/scalc.po,92,151,157,0,0,95,835,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/scalc/guide.po,5,6,6,0,0,1464,21587,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/schart.po,0,0,0,0,0,96,931,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/sdraw.po,49,103,100,0,0,74,629,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/sdraw/guide.po,15,136,104,0,0,260,2936,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/shared.po,6,21,20,0,0,244,2287,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/shared/autokorr.po,36,254,171,0,0,12,166,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/shared/autopi.po,17,23,23,0,0,870,8371,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/shared/explorer/database.po,40,40,42,0,0,1601,18817,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/shared/guide.po,13,34,29,0,0,2503,36409,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/shared/optionen.po,54,55,55,0,0,1880,23296,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/simpress.po,63,91,78,0,0,136,1304,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/simpress/guide.po,2,3,3,0,0,765,10279,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/smath.po,55,608,470,0,0,5,131,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/smath/guide.po,1,1,1,1,1,102,1191,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/swriter.po,74,145,143,0,0,262,2801,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/swriter/guide.po,8,13,12,0,0,2136,27924,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/swriter/librelogo.po,2,2,2,0,0,324,3017,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/librelogo/source/pythonpath.po,135,170,168,0,0,3,3,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,19,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/nlpsolver/src/locale.po,41,105,107,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/officecfg/registry/data/org/openoffice.po,9,28,29,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/officecfg/registry/data/org/openoffice/office.po,1290,1777,1792,3,14,15,50,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/readlicense_oo/docs.po,92,1954,1693,0,0,11,449,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,15,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/reportdesign/messages.po,242,574,568,16,43,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/sc/messages.po,3151,14337,11722,746,2060,789,3863,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/scaddins/messages.po,877,3041,2349,15,31,9,116,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/sccomp/messages.po,12,51,50,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/scp2/source/activex.po,2,16,15,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/scp2/source/base.po,10,44,40,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/scp2/source/calc.po,22,94,103,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/scp2/source/draw.po,25,89,90,0,0,16,60,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/scp2/source/extensions.po,16,65,70,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/scp2/source/graphicfilter.po,30,101,100,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/scp2/source/impress.po,21,81,85,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/scp2/source/math.po,10,42,40,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/scp2/source/quickstart.po,2,15,15,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/scp2/source/writer.po,26,109,100,0,0,1,5,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/sd/messages.po,853,2205,2052,173,238,293,508,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/sfx2/messages.po,514,1886,1677,29,40,38,300,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/starmath/messages.po,436,747,758,15,38,54,183,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/svtools/messages.po,825,2406,2346,11,15,78,190,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/svx/messages.po,2320,5945,5843,260,514,266,765,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/sw/messages.po,2811,6177,6197,253,470,377,1093,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/swext/mediawiki/help.po,68,978,793,6,211,15,215,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,137,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/sysui/desktop/share.po,66,277,286,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/uui/messages.po,148,1322,1157,0,0,9,232,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/vcl/messages.po,273,534,516,0,0,83,203,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/wizards/messages.po,261,1032,876,4,10,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/wizards/source/resources.po,480,2027,1711,67,208,7,51,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/writerperfect/messages.po,22,45,47,0,0,8,20,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/xmlsecurity/messages.po,88,420,370,1,1,2,3,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/accessibility/messages.po,11,27,31,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/avmedia/messages.po,17,27,29,0,0,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/basctl/messages.po,132,540,551,21,39,2,32,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/basic/messages.po,17,49,55,118,500,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/chart2/messages.po,357,755,872,137,249,126,364,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/connectivity/messages.po,104,1017,845,0,0,2,30,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/cui/messages.po,1324,3088,3617,622,1236,397,1234,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dbaccess/messages.po,559,3170,3056,226,1225,27,115,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/desktop/messages.po,126,705,684,26,395,10,125,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/en/dialog.po,37,176,188,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/hu_hu/dialog.po,32,71,72,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/ru_ru/dialog.po,13,25,26,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/editeng/messages.po,258,641,694,3,4,4,11,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/extensions/messages.po,436,1357,1384,194,628,33,114,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/extras/source/autocorr/emoji.po,55,47,47,201,198,1319,1572,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/extras/source/gallery/share.po,11,14,14,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/filter/messages.po,80,281,302,37,79,105,458,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/filter/source/config/fragments/filters.po,105,380,380,18,62,97,290,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/filter/source/config/fragments/internalgraphicfilters.po,35,127,127,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/filter/source/config/fragments/types.po,24,80,80,1,5,13,36,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/forms/messages.po,57,321,296,0,0,1,9,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/formula/messages.po,390,438,443,20,26,28,50,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/fpicker/messages.po,31,88,107,19,43,11,32,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/framework/messages.po,20,184,151,6,14,3,12,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/librelogo/source/pythonpath.po,137,170,183,1,3,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,21,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/nlpsolver/src/locale.po,41,105,116,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/officecfg/registry/data/org/openoffice.po,8,25,25,0,0,1,3,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/officecfg/registry/data/org/openoffice/office.po,1233,1420,2457,11,26,64,395,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/readlicense_oo/docs.po,88,1760,1628,1,85,14,558,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,16,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/reportdesign/messages.po,204,489,456,51,125,3,3,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/sc/messages.po,2822,13161,11611,958,2632,906,4467,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/scaddins/messages.po,881,3056,3125,15,31,5,101,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/sccomp/messages.po,12,51,42,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/scp2/source/base.po,10,44,48,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/scp2/source/calc.po,21,89,93,0,0,1,5,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/scp2/source/draw.po,41,149,153,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/scp2/source/extensions.po,16,65,72,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/scp2/source/graphicfilter.po,30,101,99,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/scp2/source/impress.po,21,81,85,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/scp2/source/math.po,10,42,45,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/scp2/source/onlineupdate.po,2,13,9,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/scp2/source/quickstart.po,2,15,15,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/scp2/source/winexplorerext.po,2,18,17,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/scp2/source/writer.po,27,114,118,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/sd/messages.po,718,1779,1921,302,575,299,597,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/sfx2/messages.po,259,744,815,149,496,173,986,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/starmath/messages.po,311,533,533,93,135,99,298,503,966,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/svtools/messages.po,770,1983,1945,55,349,89,279,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/svx/messages.po,1789,4064,4339,533,1268,524,1892,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/sw/messages.po,1766,3350,3904,904,1807,771,2583,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/swext/mediawiki/help.po,47,353,313,26,817,16,234,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,5,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,168,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/sysui/desktop/share.po,64,257,253,2,20,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/uui/messages.po,122,1088,957,18,150,17,316,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/vcl/messages.po,239,451,552,23,57,94,229,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/wizards/messages.po,259,1032,1067,5,9,1,1,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/wizards/source/resources.po,491,1998,2008,54,225,9,63,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/writerperfect/messages.po,1,2,2,5,9,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/xmlsecurity/messages.po,55,223,211,18,131,18,70,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/accessibility/messages.po,11,27,29,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/avmedia/messages.po,21,44,47,1,1,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/basctl/messages.po,118,431,447,21,30,16,150,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/basic/messages.po,18,52,53,117,497,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/chart2/messages.po,364,763,890,132,240,124,365,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/connectivity/messages.po,103,1005,1039,0,0,3,42,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,3,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,7,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/cui/messages.po,1433,3352,3697,584,1121,326,1085,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dbaccess/messages.po,480,2884,3082,230,1230,102,396,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/desktop/messages.po,111,643,669,34,405,17,177,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/en/dialog.po,37,176,194,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/hu_hu/dialog.po,32,71,77,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/pt_br/dialog.po,2,5,6,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/ru_ru/dialog.po,13,25,28,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/editeng/messages.po,253,628,756,5,8,7,20,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/extensions/messages.po,418,1088,1201,207,789,38,222,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/extras/source/autocorr/emoji.po,55,48,48,205,203,1315,1566,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/extras/source/gallery/share.po,11,14,15,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/filter/messages.po,160,538,588,38,107,24,173,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/filter/source/config/fragments/filters.po,153,528,626,12,44,55,160,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/filter/source/config/fragments/internalgraphicfilters.po,37,135,157,0,0,1,4,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/filter/source/config/fragments/types.po,24,80,100,1,5,13,36,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/forms/messages.po,57,321,338,0,0,1,9,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/formula/messages.po,356,377,383,35,50,47,87,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/fpicker/messages.po,31,88,91,18,42,12,33,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/framework/messages.po,20,184,180,6,14,3,12,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/auxiliary.po,92,266,320,0,0,13,36,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/sbasic/guide.po,89,1185,1270,0,0,14,160,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/sbasic/shared.po,3553,29607,29498,0,0,952,5824,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/scalc.po,178,940,1015,0,0,9,46,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/scalc/guide.po,1338,18990,19080,0,0,131,2603,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/schart.po,87,794,900,0,0,9,137,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/sdraw.po,120,718,750,0,0,3,14,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/sdraw/guide.po,259,2780,2958,0,0,16,292,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/shared.po,218,1962,1988,0,0,32,346,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/shared/autokorr.po,48,420,396,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/shared/autopi.po,755,6555,6789,0,0,132,1839,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/shared/explorer/database.po,1469,14596,15433,0,0,172,4261,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/shared/guide.po,2082,29179,30402,0,0,434,7264,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/shared/optionen.po,1325,12663,13216,0,0,609,10688,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/simpress.po,185,1314,1408,0,0,14,81,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/simpress/guide.po,603,7994,8319,0,0,164,2288,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/smath.po,56,609,655,0,0,4,130,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/smath/guide.po,96,1031,1030,0,0,8,162,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/swriter.po,217,1414,1495,0,0,119,1532,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/swriter/guide.po,1929,24096,24381,0,0,215,3841,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/swriter/librelogo.po,39,40,41,1,1,286,2978,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/librelogo/source/pythonpath.po,134,167,166,2,4,2,2,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,23,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/nlpsolver/src/locale.po,41,105,127,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/officecfg/registry/data/org/openoffice.po,8,25,36,0,0,1,3,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/officecfg/registry/data/org/openoffice/office.po,1278,1726,1797,9,51,21,64,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/readlicense_oo/docs.po,88,1760,1788,1,85,14,558,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,17,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/reportdesign/messages.po,203,485,527,51,127,4,5,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/sc/messages.po,3123,14208,14354,785,2265,778,3787,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/scaddins/messages.po,880,3053,2943,15,31,6,104,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/sccomp/messages.po,11,47,53,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/scp2/source/base.po,10,44,49,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/scp2/source/calc.po,21,89,121,0,0,1,5,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/scp2/source/draw.po,41,149,194,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/scp2/source/extensions.po,16,65,82,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/scp2/source/graphicfilter.po,30,101,104,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/scp2/source/impress.po,21,81,96,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/scp2/source/math.po,10,42,45,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/scp2/source/python.po,2,7,10,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/scp2/source/quickstart.po,2,15,18,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/scp2/source/winexplorerext.po,2,18,23,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/scp2/source/writer.po,27,114,139,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/sd/messages.po,714,1763,1921,290,553,315,635,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/sfx2/messages.po,296,866,894,139,500,146,860,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/starmath/messages.po,406,762,855,63,101,36,105,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/svtools/messages.po,752,1936,2082,60,368,102,307,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/svx/messages.po,1910,4477,4951,498,1203,438,1544,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/sw/messages.po,2257,4668,5246,681,1534,503,1538,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/swext/mediawiki/help.po,47,353,353,26,817,16,234,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,165,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/sysui/desktop/share.po,64,257,332,2,20,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/uui/messages.po,106,1003,1020,18,133,33,418,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/vcl/messages.po,222,412,427,20,45,114,280,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/wizards/messages.po,257,1034,1104,7,7,1,1,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/wizards/source/resources.po,506,2018,2024,38,192,10,76,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/writerperfect/messages.po,1,2,3,5,9,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/xmlsecurity/messages.po,48,204,213,23,144,20,76,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/accessibility/messages.po,11,27,26,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/avmedia/messages.po,17,37,35,1,1,4,7,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/basctl/messages.po,146,484,440,6,17,3,110,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/basic/messages.po,23,52,51,6,20,106,477,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/chart2/messages.po,7,7,7,31,34,582,1327,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/connectivity/messages.po,0,0,0,0,0,106,1047,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/connectivity/registry/calc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/connectivity/registry/flat/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/cui/messages.po,98,123,129,175,240,2070,5195,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dbaccess/messages.po,28,41,36,26,28,758,4441,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/desktop/messages.po,116,761,668,7,49,39,415,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/en/dialog.po,0,0,0,0,0,37,176,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/hu_hu/dialog.po,0,0,0,0,0,32,71,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/ru_ru/dialog.po,0,0,0,0,0,14,26,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/editeng/messages.po,4,4,4,8,8,253,644,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/extensions/messages.po,21,29,30,30,41,612,2029,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/extras/source/autocorr/emoji.po,294,310,319,86,85,1195,1422,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/extras/source/gallery/share.po,5,7,7,0,0,7,8,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/filter/messages.po,6,7,7,9,10,207,801,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/filter/source/config/fragments/filters.po,0,0,0,0,0,220,732,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/filter/source/config/fragments/types.po,0,0,0,0,0,38,121,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/forms/messages.po,5,11,14,0,0,53,319,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/formula/messages.po,3,3,3,0,0,435,511,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/fpicker/messages.po,5,9,9,9,15,47,139,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/framework/messages.po,17,44,48,6,14,6,152,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/librelogo/source/pythonpath.po,9,11,11,12,14,117,148,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/nlpsolver/src/locale.po,1,1,1,0,0,40,104,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/officecfg/registry/data/org/openoffice/office.po,37,40,40,92,100,1179,1701,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/readlicense_oo/docs.po,0,0,0,0,0,103,2403,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,14,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/reportdesign/messages.po,10,12,13,16,20,232,585,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/sc/messages.po,158,174,176,176,196,4352,19890,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/scaddins/messages.po,5,5,5,3,3,893,3180,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/sccomp/messages.po,12,51,49,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/scp2/source/activex.po,0,0,0,0,0,2,16,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/scp2/source/base.po,0,0,0,0,0,10,44,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/scp2/source/calc.po,0,0,0,2,3,20,91,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/scp2/source/draw.po,0,0,0,2,3,39,146,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/scp2/source/extensions.po,2,4,4,0,0,14,61,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/scp2/source/graphicfilter.po,0,0,0,0,0,30,101,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/scp2/source/impress.po,0,0,0,2,3,19,78,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/scp2/source/math.po,0,0,0,2,3,8,39,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/scp2/source/quickstart.po,0,0,0,0,0,2,15,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/scp2/source/winexplorerext.po,1,3,3,0,0,1,15,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/scp2/source/writer.po,0,0,0,1,1,26,113,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/sd/messages.po,36,43,46,82,95,1201,2813,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/sfx2/messages.po,25,29,30,43,48,513,2149,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/starmath/messages.po,35,35,36,34,40,436,893,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/svl/messages.po,0,0,0,0,0,1,1,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/svtools/messages.po,17,21,23,29,46,868,2544,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/svx/messages.po,71,80,87,124,142,2651,7002,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/sw/messages.po,120,140,149,277,331,3044,7269,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/swext/mediawiki/help.po,3,3,3,0,0,86,1401,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,3,3,3,4,4,25,174,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/sysui/desktop/share.po,1,2,2,2,3,63,272,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/uui/messages.po,19,60,58,6,12,132,1482,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/vcl/messages.po,14,17,17,33,35,309,685,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/wizards/messages.po,5,5,5,14,14,246,1023,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/wizards/source/resources.po,11,11,12,24,33,519,2242,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/writerperfect/messages.po,0,0,0,1,1,29,64,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/xmlsecurity/messages.po,5,5,5,3,3,83,416,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/accessibility/messages.po,11,27,26,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/avmedia/messages.po,22,45,39,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/basctl/messages.po,155,611,526,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/basic/messages.po,135,549,528,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/chart2/messages.po,617,1340,1349,0,0,3,28,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/connectivity/messages.po,105,1033,923,0,0,1,14,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/cui/messages.po,2249,5315,5076,0,0,94,243,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dbaccess/messages.po,804,4474,3840,0,0,8,36,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/desktop/messages.po,160,1172,968,0,0,2,53,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/en/dialog.po,37,176,166,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/hu_hu/dialog.po,32,71,71,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/pt_br/dialog.po,2,5,4,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/ru_ru/dialog.po,13,25,28,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/editeng/messages.po,265,656,644,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/extensions/messages.po,658,2078,1860,0,0,5,21,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/extras/source/autocorr/emoji.po,1575,1817,1823,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/extras/source/gallery/share.po,11,14,12,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/filter/messages.po,222,818,766,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/filter/source/config/fragments/filters.po,196,667,677,0,0,24,65,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/filter/source/config/fragments/internalgraphicfilters.po,38,139,139,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/filter/source/config/fragments/types.po,28,95,99,0,0,10,26,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/forms/messages.po,58,330,267,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/formula/messages.po,372,401,400,24,36,42,77,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/fpicker/messages.po,58,159,144,0,0,3,4,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/framework/messages.po,29,210,167,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/librelogo/source/pythonpath.po,105,140,134,12,12,21,21,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,20,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/nlpsolver/src/locale.po,22,41,36,11,42,8,22,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/officecfg/registry/data/org/openoffice.po,8,25,26,0,0,1,3,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/officecfg/registry/data/org/openoffice/office.po,1275,1647,1635,20,51,13,143,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/readlicense_oo/docs.po,60,939,839,21,709,22,755,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,13,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/reportdesign/messages.po,258,617,596,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/sc/messages.po,3248,14380,11031,827,2551,611,3329,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/scaddins/messages.po,724,2532,1985,109,140,68,516,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/sccomp/messages.po,14,65,58,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/scp2/source/activex.po,2,16,17,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/scp2/source/base.po,10,44,47,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/scp2/source/calc.po,22,94,101,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/scp2/source/draw.po,41,149,146,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/scp2/source/extensions.po,16,65,70,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/scp2/source/gnome.po,1,2,3,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/scp2/source/graphicfilter.po,30,101,101,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/scp2/source/impress.po,21,81,83,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/scp2/source/math.po,10,42,41,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/scp2/source/onlineupdate.po,2,13,10,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/scp2/source/python.po,2,7,9,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/scp2/source/quickstart.po,2,15,14,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/scp2/source/writer.po,27,114,112,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/sd/messages.po,1106,2590,2435,15,26,198,335,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/sfx2/messages.po,500,1521,1376,6,65,75,640,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/starmath/messages.po,464,805,782,3,9,38,154,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/svtools/messages.po,830,2102,2018,1,9,83,500,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/svx/messages.po,2598,6095,5873,29,128,219,1001,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/sw/messages.po,3217,7168,7016,0,0,224,572,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/swext/mediawiki/help.po,59,702,598,16,489,14,213,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,166,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/sysui/desktop/share.po,66,277,289,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/uui/messages.po,148,1322,1102,0,0,9,232,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/vcl/messages.po,270,525,498,0,0,86,212,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/wizards/messages.po,265,1042,937,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/wizards/source/resources.po,554,2286,1918,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/writerperfect/messages.po,15,40,40,0,0,15,25,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/xmlsecurity/messages.po,89,421,350,0,0,2,3,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/accessibility/messages.po,11,27,25,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/avmedia/messages.po,22,45,49,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/basctl/messages.po,155,611,664,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/basic/messages.po,135,549,630,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/chart2/messages.po,620,1368,1602,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/connectivity/messages.po,106,1047,1079,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,7,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,6,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,6,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,4,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,3,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/cui/messages.po,2343,5558,6154,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dbaccess/messages.po,812,4510,4645,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/desktop/messages.po,162,1225,1220,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/en/dialog.po,37,176,199,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/hu_hu/dialog.po,32,71,80,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/pt_br/dialog.po,2,5,6,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/ru_ru/dialog.po,14,26,34,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/editeng/messages.po,265,656,706,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/extensions/messages.po,663,2099,2195,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/extras/source/autocorr/emoji.po,1575,1817,1893,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/extras/source/gallery/share.po,12,15,16,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/filter/messages.po,222,818,876,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/filter/source/config/fragments/filters.po,220,732,899,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/filter/source/config/fragments/internalgraphicfilters.po,38,139,181,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/filter/source/config/fragments/types.po,38,121,156,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/forms/messages.po,58,330,329,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/formula/messages.po,438,514,514,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/fpicker/messages.po,61,163,179,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/framework/messages.po,29,210,217,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/auxiliary.po,105,302,345,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/sbasic/guide.po,103,1345,1411,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/sbasic/shared.po,4505,35431,33152,0,0,0,0,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/scalc.po,187,986,1016,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/scalc/guide.po,1469,21593,20299,0,0,0,0,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/schart.po,96,931,922,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/sdraw.po,123,732,741,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/sdraw/guide.po,275,3072,2887,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/shared.po,250,2308,2221,0,0,0,0,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/shared/autokorr.po,48,420,318,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/shared/autopi.po,887,8394,7998,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/shared/explorer/database.po,1641,18857,18509,0,0,0,0,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/shared/guide.po,2516,36443,35411,0,0,0,0,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/shared/help.po,78,117,126,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/shared/menu.po,16,120,130,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/shared/optionen.po,1934,23351,22570,0,0,0,0,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/simpress.po,199,1395,1313,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/simpress/guide.po,767,10282,9559,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/smath.po,60,739,712,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/smath/guide.po,104,1193,1173,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/swriter.po,336,2946,2914,0,0,0,0,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/swriter/guide.po,2144,27937,26224,0,0,0,0,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/swriter/librelogo.po,326,3019,3017,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/helpcontent2/source/text/swriter/menu.po,17,96,107,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/librelogo/source/pythonpath.po,138,173,175,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,21,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/nlpsolver/src/locale.po,41,105,123,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/officecfg/registry/data/org/openoffice.po,9,28,40,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/officecfg/registry/data/org/openoffice/office.po,1308,1841,1873,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/readlicense_oo/docs.po,103,2403,2300,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,15,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/reportdesign/messages.po,258,617,701,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/sc/messages.po,4686,20260,18664,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/scaddins/messages.po,901,3188,3361,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/sccomp/messages.po,14,65,65,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/scp2/source/activex.po,2,16,17,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/scp2/source/base.po,10,44,54,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/scp2/source/calc.po,22,94,118,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/scp2/source/draw.po,41,149,130,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/scp2/source/extensions.po,16,65,77,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/scp2/source/gnome.po,2,11,12,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/scp2/source/graphicfilter.po,30,101,143,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/scp2/source/impress.po,21,81,86,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/scp2/source/math.po,10,42,45,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/scp2/source/python.po,2,7,10,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/scp2/source/quickstart.po,2,15,18,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/scp2/source/winexplorerext.po,2,18,22,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/scp2/source/writer.po,27,114,127,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/scp2/source/xsltfilter.po,2,6,8,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/sd/messages.po,1319,2951,3194,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/sfx2/messages.po,581,2226,2305,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/starmath/messages.po,505,968,1024,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/svtools/messages.po,914,2611,2776,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/svx/messages.po,2846,7224,7896,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/sw/messages.po,3441,7740,8736,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/swext/mediawiki/help.po,89,1404,1286,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,158,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/sysui/desktop/share.po,66,277,320,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/uui/messages.po,157,1554,1516,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/vcl/messages.po,356,737,801,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/wizards/messages.po,265,1042,1040,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/wizards/source/resources.po,554,2286,2269,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/writerperfect/messages.po,30,65,77,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/xmlsecurity/messages.po,91,424,430,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/accessibility/messages.po,11,27,32,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/avmedia/messages.po,22,45,44,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/basctl/messages.po,155,611,660,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/basic/messages.po,135,549,557,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/chart2/messages.po,611,1348,1564,4,7,5,13,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/connectivity/messages.po,106,1047,859,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/cui/messages.po,2113,4923,5743,59,98,171,537,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dbaccess/messages.po,697,4179,4041,103,245,12,86,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/desktop/messages.po,157,1146,1154,3,26,2,53,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/en/dialog.po,37,176,203,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/hu_hu/dialog.po,32,71,93,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/ru_ru/dialog.po,13,25,31,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/editeng/messages.po,264,654,712,1,2,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/extensions/messages.po,663,2099,2121,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/extensions/source/update/check/org/openoffice/office.po,1,3,5,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/extras/source/autocorr/emoji.po,90,84,84,185,182,1300,1551,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/extras/source/gallery/share.po,11,14,16,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/filter/messages.po,221,815,931,0,0,1,3,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/filter/source/config/fragments/filters.po,206,689,697,4,18,10,25,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/filter/source/config/fragments/internalgraphicfilters.po,38,139,139,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/filter/source/config/fragments/types.po,25,85,85,1,5,12,31,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/forms/messages.po,58,330,283,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/formula/messages.po,431,507,518,0,0,1,1,432,508,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/fpicker/messages.po,50,133,167,5,9,6,21,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/framework/messages.po,29,210,232,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/auxiliary.po,22,30,37,0,0,83,272,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/sbasic/guide.po,83,1116,1052,0,0,20,229,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/sbasic/shared.po,3429,28633,27367,0,0,1076,6798,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/scalc.po,171,830,831,0,0,16,156,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/scalc/guide.po,1239,16840,15413,0,0,230,4753,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/schart.po,83,676,699,0,0,13,255,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/sdraw.po,117,702,696,0,0,6,30,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/sdraw/guide.po,254,2683,2606,0,0,21,389,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/shared.po,206,1691,1644,0,0,44,617,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/shared/autokorr.po,47,403,431,0,0,1,17,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/shared/autopi.po,744,6488,6094,0,0,143,1906,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/shared/explorer/database.po,1447,14227,12874,0,0,194,4630,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/shared/guide.po,1967,26766,25124,0,0,549,9677,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/shared/optionen.po,1192,10164,9659,0,0,742,13187,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/simpress.po,181,1264,1287,0,0,18,131,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/simpress/guide.po,580,7392,6942,0,0,187,2890,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/smath.po,56,609,557,0,0,4,130,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/smath/guide.po,94,1001,1010,0,0,10,192,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/swriter.po,212,1244,1211,0,0,124,1702,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/swriter/guide.po,1794,21537,20111,0,0,350,6400,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/swriter/librelogo.po,39,40,40,1,1,286,2978,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/librelogo/source/pythonpath.po,138,173,182,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,24,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/nlpsolver/src/locale.po,41,105,116,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/officecfg/registry/data/org/openoffice.po,9,28,28,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/officecfg/registry/data/org/openoffice/office.po,1297,1822,1853,4,9,7,10,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/readlicense_oo/docs.po,89,1773,1591,1,85,13,545,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,18,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/reportdesign/messages.po,249,578,609,9,39,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/sc/messages.po,3456,15546,14079,682,1928,548,2786,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/scaddins/messages.po,880,3055,2665,15,31,5,101,900,3187,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/sccomp/messages.po,14,65,65,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/scp2/source/activex.po,2,16,14,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/scp2/source/base.po,10,44,45,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/scp2/source/calc.po,22,94,93,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/scp2/source/draw.po,41,149,150,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/scp2/source/extensions.po,16,65,67,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/scp2/source/gnome.po,2,11,10,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/scp2/source/graphicfilter.po,30,101,101,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/scp2/source/impress.po,21,81,82,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/scp2/source/math.po,10,42,43,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/scp2/source/python.po,2,7,7,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/scp2/source/quickstart.po,2,15,16,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/scp2/source/writer.po,27,114,113,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/sd/messages.po,852,2119,2320,216,396,251,436,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/sfx2/messages.po,544,1780,1894,10,36,27,410,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/starmath/messages.po,504,962,1041,0,0,1,6,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/svtools/messages.po,778,2151,2119,49,187,87,273,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/svx/messages.po,2020,4825,5080,417,1024,409,1375,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/sw/messages.po,1730,3173,3482,881,1745,829,2821,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/swext/mediawiki/help.po,75,1191,1101,0,0,14,213,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,168,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/sysui/desktop/share.po,66,277,274,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/uui/messages.po,99,959,918,24,169,34,426,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/vcl/messages.po,237,428,501,33,83,86,226,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/wizards/messages.po,263,1040,1059,0,0,2,2,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/wizards/source/resources.po,492,2073,1997,44,187,18,26,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/writerperfect/messages.po,30,65,77,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/xmlsecurity/messages.po,91,424,446,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/accessibility/messages.po,7,13,15,1,1,3,13,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/avmedia/messages.po,17,27,24,0,0,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/basctl/messages.po,97,393,404,35,51,23,167,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/basic/messages.po,18,52,53,117,497,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/chart2/messages.po,231,511,519,175,300,214,557,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/connectivity/messages.po,102,990,815,0,0,4,57,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,4,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,1,5,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/cui/messages.po,622,1382,1394,774,1309,947,2867,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dbaccess/messages.po,414,2523,2318,245,1301,153,686,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/desktop/messages.po,99,499,502,41,505,22,221,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/en/dialog.po,1,1,1,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/hu_hu/dialog.po,2,2,2,6,9,24,60,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/pt_br/dialog.po,0,0,0,1,2,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/ru_ru/dialog.po,4,4,6,2,4,8,18,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/editeng/messages.po,225,533,581,29,93,11,30,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/extensions/messages.po,399,992,1013,212,833,52,274,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/extras/source/autocorr/emoji.po,42,39,39,190,181,1343,1597,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/extras/source/gallery/share.po,6,8,8,2,2,4,5,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/filter/messages.po,53,207,205,31,65,138,546,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/filter/source/config/fragments/filters.po,83,291,293,12,34,125,407,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/filter/source/config/fragments/internalgraphicfilters.po,33,119,119,0,0,5,20,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/filter/source/config/fragments/types.po,17,50,50,4,17,17,54,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/forms/messages.po,54,314,265,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/formula/messages.po,304,307,309,63,89,71,118,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/fpicker/messages.po,30,76,96,16,46,15,41,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/framework/messages.po,18,167,176,6,14,5,29,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/auxiliary.po,22,30,37,0,0,83,272,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/sbasic/guide.po,83,1116,1052,0,0,20,229,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/sbasic/shared.po,3429,28633,27367,0,0,1076,6798,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/scalc.po,171,830,831,0,0,16,156,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/scalc/guide.po,1239,16840,15413,0,0,230,4753,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/schart.po,83,676,699,0,0,13,255,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/sdraw.po,117,702,696,0,0,6,30,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/sdraw/guide.po,254,2683,2606,0,0,21,389,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/shared.po,206,1691,1644,0,0,44,617,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/shared/autokorr.po,47,403,431,0,0,1,17,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/shared/autopi.po,744,6488,6094,0,0,143,1906,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/shared/explorer/database.po,1447,14227,12874,0,0,194,4630,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/shared/guide.po,1967,26766,25124,0,0,549,9677,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/shared/optionen.po,1193,10172,9669,0,0,741,13179,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/simpress.po,181,1264,1287,0,0,18,131,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/simpress/guide.po,580,7392,6942,0,0,187,2890,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/smath.po,56,609,557,0,0,4,130,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/smath/guide.po,94,1001,1010,0,0,10,192,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/swriter.po,212,1244,1211,0,0,124,1702,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/swriter/guide.po,1795,21544,20118,0,0,349,6393,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/swriter/librelogo.po,39,40,40,1,1,286,2978,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/librelogo/source/pythonpath.po,19,21,22,42,44,77,108,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,1,4,4,0,0,1,17,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/nlpsolver/src/locale.po,7,7,8,8,9,26,89,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/officecfg/registry/data/org/openoffice/office.po,1185,1270,1288,11,16,112,555,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/readlicense_oo/docs.po,58,1137,997,11,224,34,1042,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/reportdesign/messages.po,176,428,444,68,151,14,38,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/sc/messages.po,2256,11243,9347,1053,3119,1377,5898,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/scaddins/messages.po,781,2471,2072,23,79,97,638,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/sccomp/messages.po,11,47,46,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/scp2/source/base.po,8,40,41,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/scp2/source/calc.po,17,56,55,3,29,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/scp2/source/draw.po,13,52,53,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/scp2/source/extensions.po,15,51,53,0,0,1,14,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/scp2/source/graphicfilter.po,28,91,91,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/scp2/source/impress.po,19,74,75,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/scp2/source/math.po,10,42,43,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/scp2/source/quickstart.po,2,15,16,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/scp2/source/writer.po,22,69,69,0,0,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/sd/messages.po,439,1153,1147,341,591,539,1207,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/sfx2/messages.po,178,539,537,161,462,242,1225,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/starmath/messages.po,274,477,464,107,152,124,339,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/svtools/messages.po,603,1543,1488,75,231,236,837,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/svx/messages.po,1487,3473,3607,578,1318,781,2433,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/sw/messages.po,1218,2104,2174,1155,2161,1067,3474,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/swext/mediawiki/help.po,44,304,281,24,702,21,398,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,168,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/sysui/desktop/share.po,44,171,171,10,52,12,54,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/uui/messages.po,92,904,867,23,151,42,499,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/vcl/messages.po,159,270,304,53,99,144,368,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/wizards/messages.po,207,909,905,34,89,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/wizards/source/resources.po,429,1827,1761,75,282,50,177,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/writerperfect/messages.po,1,1,1,5,10,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/xmlsecurity/messages.po,18,37,41,21,122,52,265,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/accessibility/messages.po,7,13,8,1,1,3,13,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/avmedia/messages.po,16,25,16,1,2,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/basctl/messages.po,88,301,104,37,54,30,256,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/basic/messages.po,17,49,21,118,500,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/chart2/messages.po,215,452,256,179,335,226,581,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/connectivity/messages.po,0,0,0,8,56,98,991,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/connectivity/registry/calc/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,3,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,1,5,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/cui/messages.po,406,570,413,741,1146,1196,3842,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dbaccess/messages.po,367,2312,535,239,1067,206,1131,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/desktop/messages.po,80,327,99,35,399,47,499,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/en/dialog.po,1,1,1,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/hu_hu/dialog.po,1,1,1,5,8,26,62,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/ru_ru/dialog.po,2,2,2,2,4,10,20,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/editeng/messages.po,60,99,62,72,118,133,439,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/extensions/messages.po,355,775,379,215,770,93,554,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/extras/source/autocorr/emoji.po,40,37,37,187,178,1348,1602,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/extras/source/gallery/share.po,6,8,6,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/filter/messages.po,40,159,59,31,59,151,600,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/filter/source/config/fragments/filters.po,31,91,72,10,28,179,613,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/filter/source/config/fragments/types.po,15,41,35,3,12,20,68,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/forms/messages.po,53,312,56,1,2,4,16,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/formula/messages.po,56,59,57,54,58,324,393,434,510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/fpicker/messages.po,28,73,30,14,37,19,53,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/framework/messages.po,17,163,30,6,14,6,33,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/auxiliary.po,19,27,19,0,0,86,275,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/sbasic/guide.po,51,598,146,0,0,52,747,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/sbasic/shared.po,3352,27120,8986,0,0,1153,8311,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/scalc.po,156,679,192,0,0,31,307,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/scalc/guide.po,1045,14327,2762,0,0,424,7266,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/schart.po,16,147,31,0,0,80,784,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/sdraw.po,114,691,169,0,0,9,41,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/sdraw/guide.po,247,2629,469,0,0,28,443,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/shared.po,201,1739,323,0,0,49,569,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/shared/autokorr.po,47,403,64,0,0,1,17,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/shared/autopi.po,713,6025,1373,0,0,174,2369,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/shared/explorer/database.po,1195,10187,2270,0,0,446,8670,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/shared/guide.po,1589,21151,4163,0,0,927,15292,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/shared/optionen.po,1106,9138,2133,0,0,828,14213,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/simpress.po,162,1041,244,0,0,37,354,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/simpress/guide.po,480,5569,1144,0,0,287,4713,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/smath.po,55,576,120,0,0,5,163,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/smath/guide.po,65,652,168,0,0,39,541,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/swriter.po,197,1033,271,0,0,139,1913,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/swriter/guide.po,1381,15737,2816,0,0,763,12200,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/swriter/librelogo.po,38,39,38,1,1,287,2979,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/librelogo/source/pythonpath.po,13,15,13,47,49,78,109,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/nlpsolver/src/locale.po,4,4,4,9,10,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/officecfg/registry/data/org/openoffice/office.po,1168,1249,1214,12,15,128,577,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/readlicense_oo/docs.po,23,301,131,2,97,78,2005,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/reportdesign/messages.po,61,83,61,81,131,116,403,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/sc/messages.po,2160,10980,2905,1045,3024,1481,6256,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/scaddins/messages.po,781,2471,832,23,79,97,638,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/scp2/source/activex.po,1,2,1,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/scp2/source/base.po,8,40,15,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/scp2/source/calc.po,17,56,38,3,29,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/scp2/source/draw.po,13,52,25,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/scp2/source/gnome.po,1,2,1,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/scp2/source/graphicfilter.po,27,89,46,0,0,3,12,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/scp2/source/impress.po,19,74,49,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/scp2/source/math.po,10,42,18,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/scp2/source/quickstart.po,2,15,3,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/scp2/source/winexplorerext.po,2,18,7,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/scp2/source/writer.po,22,69,45,0,0,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/scp2/source/xsltfilter.po,2,6,2,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/sd/messages.po,370,919,397,364,662,585,1370,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/sfx2/messages.po,166,459,188,161,462,254,1305,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/starmath/messages.po,269,471,276,109,153,127,344,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/svl/messages.po,0,0,0,1,1,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/svtools/messages.po,539,1346,693,73,183,302,1082,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/svx/messages.po,1304,3040,1480,616,1360,926,2824,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/sw/messages.po,1087,1861,1230,1195,2122,1147,3722,3429,7705,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/swext/mediawiki/help.po,5,6,5,6,8,78,1390,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,5,5,5,8,8,19,168,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/sysui/desktop/share.po,43,153,99,10,52,13,72,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/uui/messages.po,86,818,236,22,84,49,652,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/vcl/messages.po,119,173,121,56,104,181,460,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/wizards/messages.po,215,971,246,26,27,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/wizards/source/resources.po,408,1802,498,88,288,58,196,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/writerperfect/messages.po,0,0,0,6,11,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/xmlsecurity/messages.po,17,36,20,20,105,54,283,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/accessibility/messages.po,11,27,30,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/avmedia/messages.po,22,45,50,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/basctl/messages.po,154,610,716,1,1,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/basic/messages.po,135,549,680,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/chart2/messages.po,615,1355,1657,3,9,2,4,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/connectivity/messages.po,105,1033,1152,0,0,1,14,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,5,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/cui/messages.po,2160,5098,6176,49,104,134,356,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dbaccess/messages.po,789,4439,4940,13,23,10,48,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/desktop/messages.po,158,1146,1321,0,0,4,79,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/en/dialog.po,37,176,224,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/hu_hu/dialog.po,32,71,92,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/pt_br/dialog.po,2,5,6,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/ru_ru/dialog.po,13,25,38,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/editeng/messages.po,258,641,747,4,6,3,9,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/extensions/messages.po,569,1918,2152,84,150,10,31,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/extras/source/autocorr/emoji.po,1104,1313,1387,0,0,471,504,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/extras/source/gallery/share.po,11,14,16,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/filter/messages.po,220,813,1027,0,0,2,5,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/filter/source/config/fragments/filters.po,186,635,729,1,2,33,95,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/filter/source/config/fragments/internalgraphicfilters.po,38,139,139,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/filter/source/config/fragments/types.po,27,92,109,0,0,11,29,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/forms/messages.po,58,330,347,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/formula/messages.po,425,497,562,7,9,2,2,434,508,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/fpicker/messages.po,54,148,178,2,3,5,12,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/framework/messages.po,23,196,222,6,14,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/librelogo/source/pythonpath.po,137,170,199,1,3,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,34,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/nlpsolver/src/locale.po,41,105,133,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/officecfg/registry/data/org/openoffice.po,8,25,32,0,0,1,3,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/officecfg/registry/data/org/openoffice/office.po,1300,1827,1956,1,4,7,10,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/readlicense_oo/docs.po,89,1845,1997,0,0,14,558,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,22,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/reportdesign/messages.po,251,605,740,7,12,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/sc/messages.po,3745,17017,18317,549,1627,392,1616,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/scaddins/messages.po,887,3170,3424,14,18,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/sccomp/messages.po,12,51,63,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/scp2/source/activex.po,2,16,18,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/scp2/source/base.po,10,44,57,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/scp2/source/calc.po,21,89,103,0,0,1,5,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/scp2/source/draw.po,41,149,170,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/scp2/source/extensions.po,16,65,75,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/scp2/source/graphicfilter.po,30,101,103,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/scp2/source/impress.po,21,81,89,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/scp2/source/math.po,10,42,41,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/scp2/source/onlineupdate.po,2,13,13,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/scp2/source/quickstart.po,2,15,16,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/scp2/source/winexplorerext.po,2,18,23,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/scp2/source/writer.po,27,114,129,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/scp2/source/xsltfilter.po,2,6,12,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/sd/messages.po,942,2311,2705,158,308,219,332,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/sfx2/messages.po,446,1591,1819,46,83,89,552,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/starmath/messages.po,484,895,986,0,0,21,73,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/svtools/messages.po,820,2274,2559,20,87,74,250,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/svx/messages.po,2382,5791,6687,198,521,266,912,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/sw/messages.po,2927,6451,7712,237,568,277,721,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/swext/mediawiki/help.po,47,353,383,26,817,16,234,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,196,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/sysui/desktop/share.po,66,277,313,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/uui/messages.po,144,1205,1333,2,92,11,257,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/vcl/messages.po,255,499,592,12,16,89,222,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/wizards/messages.po,262,1039,1097,3,3,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/wizards/source/resources.po,498,1989,2126,48,236,8,61,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/writerperfect/messages.po,4,6,6,2,5,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/xmlsecurity/messages.po,80,372,441,3,12,8,40,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/accessibility/messages.po,8,22,21,0,0,3,5,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/avmedia/messages.po,16,26,27,1,1,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/basctl/messages.po,85,292,291,31,40,39,279,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/basic/messages.po,17,49,47,118,500,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/chart2/messages.po,127,165,188,153,272,340,931,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/connectivity/messages.po,0,0,0,8,56,98,991,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/connectivity/registry/calc/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,4,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/cui/messages.po,444,612,735,674,1056,1225,3890,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dbaccess/messages.po,333,1880,1654,234,1077,245,1553,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/desktop/messages.po,45,199,194,14,68,103,958,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/en/dialog.po,1,1,1,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/hu_hu/dialog.po,1,1,1,5,8,26,62,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/ru_ru/dialog.po,2,2,3,2,4,10,20,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/editeng/messages.po,60,97,126,71,118,134,441,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/extensions/messages.po,343,743,849,181,675,139,681,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/extras/source/autocorr/emoji.po,42,39,39,181,172,1352,1606,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/extras/source/gallery/share.po,6,8,9,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/filter/messages.po,43,162,159,28,56,151,600,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/filter/source/config/fragments/filters.po,20,58,63,9,24,191,650,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/filter/source/config/fragments/types.po,2,8,8,5,18,31,95,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/forms/messages.po,51,294,263,1,2,6,34,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/formula/messages.po,62,65,67,52,53,320,392,434,510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/fpicker/messages.po,29,61,63,16,46,16,56,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/framework/messages.po,10,69,65,7,16,12,125,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/librelogo/source/pythonpath.po,14,16,18,45,47,79,110,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/nlpsolver/src/locale.po,7,7,8,6,7,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/officecfg/registry/data/org/openoffice/office.po,1182,1262,2494,6,10,120,569,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/readlicense_oo/docs.po,0,0,0,1,1,102,2402,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/reportdesign/messages.po,69,93,121,67,110,122,414,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/sc/messages.po,2161,10657,9111,982,2946,1543,6657,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/scaddins/messages.po,780,2459,2316,24,91,97,638,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/scp2/source/base.po,8,40,39,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/scp2/source/calc.po,15,48,48,4,33,3,13,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/scp2/source/draw.po,13,52,60,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/scp2/source/graphicfilter.po,28,91,107,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/scp2/source/impress.po,17,66,64,2,8,2,7,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/scp2/source/math.po,10,42,39,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/scp2/source/quickstart.po,2,15,14,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/scp2/source/winexplorerext.po,2,18,19,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/scp2/source/writer.po,17,50,62,2,7,8,57,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/sd/messages.po,366,905,1011,352,633,601,1413,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/sfx2/messages.po,170,443,468,128,367,283,1416,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/starmath/messages.po,265,467,497,104,147,128,346,497,960,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/svl/messages.po,0,0,0,1,1,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/svtools/messages.po,329,932,1024,67,141,518,1538,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/svx/messages.po,1171,2556,2828,561,1198,1114,3470,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/sw/messages.po,1148,1925,2377,1117,2001,1173,3809,3438,7735,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/swext/mediawiki/help.po,4,4,7,6,8,79,1392,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,5,5,5,7,7,20,169,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/sysui/desktop/share.po,30,117,147,14,66,22,94,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/uui/messages.po,62,525,447,20,120,75,909,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/vcl/messages.po,101,139,146,62,100,193,498,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/wizards/messages.po,228,984,922,13,14,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/wizards/source/resources.po,421,1805,1684,72,271,61,210,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/writerperfect/messages.po,0,0,0,6,11,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/xmlsecurity/messages.po,20,39,42,15,56,56,329,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/accessibility/messages.po,11,27,30,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/avmedia/messages.po,19,39,37,1,1,2,5,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/basctl/messages.po,108,404,366,29,46,18,161,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/basic/messages.po,135,549,541,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/chart2/messages.po,361,756,739,135,247,124,365,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/connectivity/messages.po,103,1005,808,0,0,3,42,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/cui/messages.po,1423,3338,3264,594,1144,326,1076,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dbaccess/messages.po,476,2881,2538,234,1233,102,396,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/desktop/messages.po,110,636,584,35,412,17,177,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/en/dialog.po,37,176,174,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/hu_hu/dialog.po,32,71,70,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/ru_ru/dialog.po,13,25,23,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/editeng/messages.po,253,628,663,5,8,7,20,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/extensions/messages.po,420,1089,1064,206,789,37,221,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/extras/source/autocorr/emoji.po,57,49,49,242,241,1276,1527,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/extras/source/gallery/share.po,11,14,14,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/filter/messages.po,160,538,517,38,107,24,173,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/filter/source/config/fragments/filters.po,155,536,545,10,36,55,160,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/filter/source/config/fragments/internalgraphicfilters.po,37,135,135,0,0,1,4,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/filter/source/config/fragments/types.po,24,80,86,1,5,13,36,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/forms/messages.po,57,321,282,0,0,1,9,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/formula/messages.po,356,377,380,35,50,47,87,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/fpicker/messages.po,31,88,79,18,42,12,33,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/framework/messages.po,20,184,161,6,14,3,12,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/auxiliary.po,92,266,277,0,0,13,36,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/sbasic/guide.po,6,61,55,0,0,97,1284,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/sbasic/shared.po,2574,18088,15721,0,0,1931,17343,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/scalc.po,184,973,923,0,0,3,13,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/scalc/guide.po,697,9833,8385,0,0,772,11760,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/schart.po,6,16,18,0,0,90,915,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/sdraw.po,51,63,71,0,0,72,669,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/sdraw/guide.po,6,18,19,0,0,269,3054,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/shared.po,51,122,112,0,0,199,2186,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/shared/autokorr.po,46,390,333,0,0,2,30,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/shared/autopi.po,497,3886,3414,0,0,390,4508,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/shared/explorer/database.po,517,2385,1927,0,0,1124,16472,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/shared/guide.po,341,3639,3081,0,0,2175,32804,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/shared/optionen.po,796,4976,4483,0,0,1138,18375,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/simpress.po,97,189,206,0,0,102,1206,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/simpress/guide.po,27,102,86,0,0,740,10180,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/smath.po,21,24,25,0,0,39,715,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/smath/guide.po,3,3,3,0,0,101,1190,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/swriter.po,118,228,212,0,0,218,2718,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/swriter/guide.po,551,5356,4705,0,0,1593,22581,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/swriter/librelogo.po,26,27,28,1,1,299,2991,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/librelogo/source/pythonpath.po,134,167,167,2,4,2,2,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,20,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/nlpsolver/src/locale.po,41,105,103,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/officecfg/registry/data/org/openoffice.po,8,25,26,0,0,1,3,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/officecfg/registry/data/org/openoffice/office.po,1278,1726,1703,10,52,20,63,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/readlicense_oo/docs.po,88,1760,1592,1,85,14,558,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,14,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/reportdesign/messages.po,200,481,455,54,131,4,5,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/sc/messages.po,3094,14177,11445,816,2298,776,3785,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/scaddins/messages.po,880,3053,2403,15,31,6,104,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/sccomp/messages.po,12,51,49,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/scp2/source/base.po,10,44,46,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/scp2/source/calc.po,21,89,91,0,0,1,5,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/scp2/source/draw.po,41,149,148,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/scp2/source/extensions.po,16,65,66,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/scp2/source/gnome.po,1,2,4,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/scp2/source/graphicfilter.po,30,101,123,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/scp2/source/impress.po,21,81,83,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/scp2/source/math.po,10,42,39,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/scp2/source/onlineupdate.po,2,13,10,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/scp2/source/python.po,2,7,7,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/scp2/source/quickstart.po,2,15,15,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/scp2/source/writer.po,27,114,111,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/sd/messages.po,700,1750,1661,304,566,315,635,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/sfx2/messages.po,291,849,807,144,517,146,860,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/starmath/messages.po,406,762,719,63,101,36,105,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/svtools/messages.po,748,1931,1860,64,373,102,307,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/svx/messages.po,1888,4454,4325,520,1226,438,1544,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/sw/messages.po,2215,4627,4597,727,1579,499,1534,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/swext/mediawiki/help.po,47,353,311,26,817,16,234,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,156,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/sysui/desktop/share.po,66,277,293,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/uui/messages.po,106,1003,893,18,133,33,418,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/vcl/messages.po,222,412,398,21,43,113,282,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/wizards/messages.po,255,1032,979,9,9,1,1,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/wizards/source/resources.po,497,1994,1807,47,216,10,76,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/writerperfect/messages.po,1,2,2,5,9,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/xmlsecurity/messages.po,48,204,195,23,144,20,76,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/accessibility/messages.po,11,27,32,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/avmedia/messages.po,22,45,52,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/basctl/messages.po,146,595,686,9,16,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/basic/messages.po,21,63,86,114,486,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/chart2/messages.po,611,1326,1700,6,14,3,28,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/connectivity/messages.po,105,1033,1199,0,0,1,14,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,3,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,5,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,6,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/cui/messages.po,2249,5315,6607,0,0,94,243,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dbaccess/messages.po,787,4433,5161,17,41,8,36,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/desktop/messages.po,155,1122,1273,5,50,2,53,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/en/dialog.po,37,176,202,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/hu_hu/dialog.po,32,71,90,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,9,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/pt_br/dialog.po,2,5,7,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/ru_ru/dialog.po,13,25,30,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/editeng/messages.po,262,651,779,3,5,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/extensions/messages.po,582,1936,2286,76,142,5,21,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/extras/source/autocorr/emoji.po,1575,1817,1975,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/extras/source/gallery/share.po,11,14,15,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/filter/messages.po,221,814,994,1,4,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/filter/source/config/fragments/filters.po,195,665,856,1,2,24,65,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/filter/source/config/fragments/internalgraphicfilters.po,38,139,172,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/filter/source/config/fragments/types.po,28,95,130,0,0,10,26,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/forms/messages.po,58,330,399,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/formula/messages.po,428,502,514,9,11,1,1,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/fpicker/messages.po,56,156,181,2,3,3,4,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/framework/messages.po,23,196,207,6,14,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/auxiliary.po,93,268,331,0,0,12,34,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/sbasic/guide.po,89,1185,1442,0,0,14,160,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po,3690,30641,32546,0,0,815,4790,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/scalc.po,187,986,1162,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/scalc/guide.po,1365,19662,21742,0,0,104,1931,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/schart.po,88,796,946,0,0,8,135,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/sdraw.po,123,732,805,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/sdraw/guide.po,266,2860,3101,0,0,9,212,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/shared.po,239,2135,2380,0,0,11,173,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/shared/autokorr.po,47,403,447,0,0,1,17,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/shared/autopi.po,758,6585,7061,0,0,129,1809,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/shared/explorer/database.po,1470,14520,16997,0,0,171,4337,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/shared/guide.po,2099,29358,32804,0,0,417,7085,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/shared/menu.po,10,12,14,0,0,6,108,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/shared/optionen.po,1515,15685,17625,0,0,419,7666,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/simpress.po,199,1395,1538,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/simpress/guide.po,605,8019,9075,0,0,162,2263,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/smath.po,59,722,769,0,0,1,17,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/smath/guide.po,102,1165,1269,0,0,2,28,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/swriter.po,250,1676,1888,0,0,86,1270,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/swriter/guide.po,1938,24117,26846,0,0,206,3820,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/swriter/librelogo.po,217,894,1083,0,0,109,2125,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/helpcontent2/source/text/swriter/menu.po,17,96,125,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/librelogo/source/pythonpath.po,137,170,227,1,3,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,25,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/nlpsolver/src/locale.po,41,105,131,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/officecfg/registry/data/org/openoffice.po,8,25,35,0,0,1,3,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/officecfg/registry/data/org/openoffice/office.po,1300,1827,2004,1,4,7,10,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/readlicense_oo/docs.po,89,1845,2002,0,0,14,558,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,16,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/reportdesign/messages.po,237,552,705,21,65,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/sc/messages.po,4437,19496,21377,0,0,249,764,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/scaddins/messages.po,887,3170,3254,14,18,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/sccomp/messages.po,14,65,91,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/scp2/source/activex.po,2,16,20,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/scp2/source/base.po,10,44,56,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/scp2/source/calc.po,22,94,129,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/scp2/source/draw.po,41,149,194,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/scp2/source/extensions.po,16,65,87,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/scp2/source/gnome.po,1,2,4,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/scp2/source/graphicfilter.po,30,101,109,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/scp2/source/impress.po,21,81,94,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/scp2/source/math.po,10,42,45,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/scp2/source/onlineupdate.po,2,13,14,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/scp2/source/python.po,2,7,9,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/scp2/source/quickstart.po,2,15,19,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/scp2/source/winexplorerext.po,2,18,23,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/scp2/source/writer.po,27,114,137,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/scp2/source/xsltfilter.po,2,6,8,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/sd/messages.po,1143,2698,3274,0,0,176,253,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/sfx2/messages.po,555,1948,2183,0,0,26,278,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/starmath/messages.po,498,956,1127,7,12,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/svtools/messages.po,845,2346,2662,17,82,52,183,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/svx/messages.po,2715,6888,8039,0,0,131,336,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/sw/messages.po,3217,7168,9093,0,0,224,572,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/swext/mediawiki/help.po,49,374,423,26,817,14,213,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,181,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/sysui/desktop/share.po,66,277,358,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/uui/messages.po,146,1230,1370,2,92,9,232,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/vcl/messages.po,259,510,629,11,15,86,212,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/wizards/messages.po,265,1042,1194,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/wizards/source/resources.po,554,2286,2467,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/writerperfect/messages.po,12,33,46,3,7,15,25,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/xmlsecurity/messages.po,86,416,476,3,5,2,3,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/accessibility/messages.po,11,27,32,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/avmedia/messages.po,22,45,52,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/basctl/messages.po,155,611,709,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/basic/messages.po,135,549,755,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/chart2/messages.po,620,1368,1767,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/connectivity/messages.po,106,1047,1214,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,3,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,5,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,6,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,4,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,3,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/cui/messages.po,2343,5558,6889,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dbaccess/messages.po,812,4510,5225,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/desktop/messages.po,162,1225,1394,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/en/dialog.po,37,176,202,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,9,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/hu_hu/dialog.po,32,71,90,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,9,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/pt_br/dialog.po,2,5,7,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/ru_ru/dialog.po,14,26,31,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/editeng/messages.po,265,656,790,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/extensions/messages.po,663,2099,2473,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/extensions/source/update/check/org/openoffice/office.po,1,3,5,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/extras/source/autocorr/emoji.po,1575,1817,1947,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/extras/source/gallery/share.po,12,15,16,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/filter/messages.po,222,818,1000,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/filter/source/config/fragments/filters.po,220,732,936,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/filter/source/config/fragments/internalgraphicfilters.po,38,139,172,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/filter/source/config/fragments/types.po,38,121,162,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/forms/messages.po,58,330,399,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/formula/messages.po,438,514,526,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/fpicker/messages.po,61,163,192,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/framework/messages.po,29,210,233,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/auxiliary.po,105,302,378,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/sbasic/guide.po,103,1345,1633,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/sbasic/shared.po,4378,33585,35611,0,0,127,1846,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/scalc.po,187,986,1155,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/scalc/guide.po,1425,20799,23070,0,0,44,794,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/schart.po,96,931,1100,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/sdraw.po,123,732,807,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/sdraw/guide.po,275,3072,3330,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/shared.po,250,2308,2592,0,0,0,0,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/shared/autokorr.po,48,420,467,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/shared/autopi.po,876,8191,8737,0,0,11,203,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/shared/explorer/database.po,1513,15331,17926,0,0,128,3526,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/shared/guide.po,2306,32152,36116,0,0,210,4291,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/shared/help.po,78,117,128,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/shared/menu.po,16,120,139,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/shared/optionen.po,1703,18248,20617,0,0,231,5103,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/simpress.po,199,1395,1542,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/simpress/guide.po,636,8450,9541,0,0,131,1832,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/smath.po,60,739,784,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/smath/guide.po,104,1193,1303,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/swriter.po,315,2359,2680,0,0,21,587,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/swriter/guide.po,2097,26876,30258,35,668,12,393,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/swriter/librelogo.po,239,1207,1465,81,1616,6,196,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/helpcontent2/source/text/swriter/menu.po,17,96,125,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/librelogo/source/pythonpath.po,138,173,230,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,25,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/nlpsolver/src/locale.po,41,105,131,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/officecfg/registry/data/org/openoffice.po,9,28,38,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/officecfg/registry/data/org/openoffice/office.po,1308,1841,2023,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/readlicense_oo/docs.po,103,2403,2582,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,16,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/reportdesign/messages.po,258,617,790,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/sc/messages.po,4686,20260,22231,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/scaddins/messages.po,901,3188,3264,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/sccomp/messages.po,14,65,91,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/scp2/source/activex.po,2,16,20,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/scp2/source/base.po,10,44,55,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/scp2/source/calc.po,22,94,129,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/scp2/source/draw.po,41,149,194,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/scp2/source/extensions.po,16,65,87,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/scp2/source/gnome.po,2,11,11,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/scp2/source/graphicfilter.po,30,101,108,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/scp2/source/impress.po,21,81,94,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/scp2/source/math.po,10,42,45,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/scp2/source/onlineupdate.po,2,13,14,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/scp2/source/python.po,2,7,9,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/scp2/source/quickstart.po,2,15,19,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/scp2/source/winexplorerext.po,2,18,23,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/scp2/source/writer.po,27,114,137,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/scp2/source/xsltfilter.po,2,6,8,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/sd/messages.po,1319,2951,3561,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/sfx2/messages.po,581,2226,2493,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/starmath/messages.po,505,968,1142,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/svtools/messages.po,914,2611,2970,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/svx/messages.po,2846,7224,8428,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/sw/messages.po,3441,7740,9781,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/swext/mediawiki/help.po,89,1404,1549,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,183,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/sysui/desktop/share.po,66,277,357,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/uui/messages.po,157,1554,1720,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/vcl/messages.po,356,737,882,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/wizards/messages.po,265,1042,1198,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/wizards/source/resources.po,554,2286,2469,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/writerperfect/messages.po,30,65,87,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/xmlsecurity/messages.po,91,424,488,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/accessibility/messages.po,11,27,25,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/avmedia/messages.po,22,45,43,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/basctl/messages.po,155,611,550,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/basic/messages.po,135,549,513,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/chart2/messages.po,620,1368,1344,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/connectivity/messages.po,106,1047,754,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/cui/messages.po,2343,5558,5303,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dbaccess/messages.po,812,4510,3700,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/desktop/messages.po,162,1225,1013,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/en/dialog.po,37,176,178,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/hu_hu/dialog.po,32,71,73,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/ru_ru/dialog.po,14,26,26,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/editeng/messages.po,265,656,655,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/extensions/messages.po,663,2099,1856,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/extras/source/autocorr/emoji.po,1575,1817,1813,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/extras/source/gallery/share.po,12,15,16,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/filter/messages.po,222,818,749,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/filter/source/config/fragments/filters.po,220,732,737,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/filter/source/config/fragments/internalgraphicfilters.po,38,139,139,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/filter/source/config/fragments/types.po,38,121,124,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/forms/messages.po,58,330,286,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/formula/messages.po,438,514,513,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/fpicker/messages.po,61,163,157,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/framework/messages.po,29,210,160,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/auxiliary.po,105,302,302,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/sbasic/guide.po,103,1345,1213,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/sbasic/shared.po,4505,35431,29202,0,0,0,0,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/scalc.po,187,986,885,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/scalc/guide.po,1469,21593,17208,0,0,0,0,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/schart.po,96,931,772,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/sdraw.po,123,732,670,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/sdraw/guide.po,275,3072,2511,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/shared.po,250,2308,1933,0,0,0,0,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/shared/autokorr.po,48,420,385,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/shared/autopi.po,887,8394,6718,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/shared/explorer/database.po,1641,18857,14824,0,0,0,0,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/shared/guide.po,2516,36443,30066,0,0,0,0,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/shared/help.po,78,117,116,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/shared/menu.po,16,120,111,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/shared/optionen.po,1934,23351,19711,0,0,0,0,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/simpress.po,199,1395,1189,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/simpress/guide.po,767,10282,8547,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/smath.po,60,739,681,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/smath/guide.po,104,1193,1028,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/swriter.po,336,2946,2575,0,0,0,0,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/swriter/guide.po,2144,27937,23553,0,0,0,0,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/swriter/librelogo.po,326,3019,2927,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/helpcontent2/source/text/swriter/menu.po,17,96,98,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/librelogo/source/pythonpath.po,138,173,168,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,15,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/nlpsolver/src/locale.po,41,105,102,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/officecfg/registry/data/org/openoffice.po,9,28,30,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/officecfg/registry/data/org/openoffice/office.po,1308,1841,1778,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/readlicense_oo/docs.po,103,2403,2017,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,14,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/reportdesign/messages.po,258,617,581,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/sc/messages.po,4686,20260,17039,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/scaddins/messages.po,901,3188,2935,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/sccomp/messages.po,14,65,58,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/scp2/source/activex.po,2,16,18,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/scp2/source/base.po,10,44,45,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/scp2/source/calc.po,22,94,103,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/scp2/source/draw.po,41,149,149,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/scp2/source/extensions.po,16,65,61,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/scp2/source/gnome.po,2,11,11,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/scp2/source/graphicfilter.po,30,101,116,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/scp2/source/impress.po,21,81,80,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/scp2/source/math.po,10,42,40,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/scp2/source/onlineupdate.po,2,13,9,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/scp2/source/quickstart.po,2,15,15,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/scp2/source/winexplorerext.po,2,18,15,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/scp2/source/writer.po,27,114,114,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/sd/messages.po,1319,2951,2853,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/sfx2/messages.po,581,2226,1984,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/starmath/messages.po,505,968,1047,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/svtools/messages.po,914,2611,2456,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/svx/messages.po,2846,7224,6918,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/sw/messages.po,3441,7740,7586,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/swext/mediawiki/help.po,89,1404,1164,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,137,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/sysui/desktop/share.po,66,277,284,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/uui/messages.po,157,1554,1256,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/vcl/messages.po,356,737,721,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/wizards/messages.po,265,1042,894,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/wizards/source/resources.po,554,2286,1890,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/writerperfect/messages.po,30,65,68,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/xmlsecurity/messages.po,91,424,379,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/accessibility/messages.po,11,27,27,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/avmedia/messages.po,22,45,46,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/basctl/messages.po,155,611,604,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/basic/messages.po,135,549,607,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/chart2/messages.po,620,1368,1428,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/connectivity/messages.po,106,1047,1041,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,6,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,3,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/cui/messages.po,2343,5558,5725,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dbaccess/messages.po,812,4510,4433,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/desktop/messages.po,162,1225,1261,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/en/dialog.po,37,176,178,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/hu_hu/dialog.po,32,71,78,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/ru_ru/dialog.po,14,26,29,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/editeng/messages.po,265,656,712,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/extensions/messages.po,663,2099,2121,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/extras/source/autocorr/emoji.po,1575,1817,1948,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/extras/source/gallery/share.po,12,15,15,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/filter/messages.po,222,818,855,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/filter/source/config/fragments/filters.po,220,732,735,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/filter/source/config/fragments/internalgraphicfilters.po,38,139,139,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/filter/source/config/fragments/types.po,38,121,124,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/forms/messages.po,58,330,322,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/formula/messages.po,438,514,515,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/fpicker/messages.po,61,163,168,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/framework/messages.po,29,210,214,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/librelogo/source/pythonpath.po,138,173,189,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,27,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/nlpsolver/src/locale.po,41,105,111,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/officecfg/registry/data/org/openoffice.po,9,28,29,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/officecfg/registry/data/org/openoffice/office.po,1308,1841,1891,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/readlicense_oo/docs.po,103,2403,2520,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,15,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/reportdesign/messages.po,258,617,634,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/sc/messages.po,4686,20260,19050,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/scaddins/messages.po,901,3188,2947,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/sccomp/messages.po,14,65,70,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/scp2/source/activex.po,2,16,16,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/scp2/source/base.po,10,44,48,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/scp2/source/calc.po,22,94,91,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/scp2/source/draw.po,41,149,147,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/scp2/source/extensions.po,16,65,70,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/scp2/source/gnome.po,2,11,11,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/scp2/source/graphicfilter.po,30,101,103,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/scp2/source/impress.po,21,81,83,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/scp2/source/math.po,10,42,40,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/scp2/source/onlineupdate.po,2,13,13,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/scp2/source/python.po,2,7,9,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/scp2/source/quickstart.po,2,15,15,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/scp2/source/winexplorerext.po,2,18,18,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/scp2/source/writer.po,27,114,111,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/sd/messages.po,1319,2951,2993,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/sfx2/messages.po,581,2226,2264,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/starmath/messages.po,505,968,998,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/svtools/messages.po,914,2611,2623,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/svx/messages.po,2846,7224,7301,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/sw/messages.po,3441,7740,7925,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/swext/mediawiki/help.po,89,1404,1433,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,164,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/sysui/desktop/share.po,66,277,288,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/uui/messages.po,157,1554,1629,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/vcl/messages.po,356,737,766,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/wizards/messages.po,265,1042,997,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/wizards/source/resources.po,554,2286,2232,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/writerperfect/messages.po,30,65,66,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/xmlsecurity/messages.po,91,424,446,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/accessibility/messages.po,11,27,27,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/avmedia/messages.po,22,45,40,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/basctl/messages.po,155,611,539,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/basic/messages.po,135,549,541,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/chart2/messages.po,620,1368,1129,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/connectivity/messages.po,106,1047,859,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,1,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,1,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/cui/messages.po,2343,5558,5047,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dbaccess/messages.po,812,4510,3906,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/desktop/messages.po,162,1225,1142,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/en/dialog.po,37,176,179,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/hu_hu/dialog.po,32,71,71,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/pt_br/dialog.po,2,5,3,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/ru_ru/dialog.po,14,26,29,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/editeng/messages.po,265,656,639,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/extensions/messages.po,663,2099,1784,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/extras/source/autocorr/emoji.po,1575,1817,1732,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/extras/source/gallery/share.po,12,15,14,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/filter/messages.po,222,818,748,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/filter/source/config/fragments/filters.po,220,732,632,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/filter/source/config/fragments/internalgraphicfilters.po,38,139,135,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/filter/source/config/fragments/types.po,38,121,103,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/forms/messages.po,58,330,308,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/formula/messages.po,438,514,552,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/fpicker/messages.po,61,163,143,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/framework/messages.po,29,210,187,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/auxiliary.po,105,302,273,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/sbasic/guide.po,103,1345,1203,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/sbasic/shared.po,4505,35431,31119,0,0,0,0,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/scalc.po,187,986,872,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/scalc/guide.po,1469,21593,19192,0,0,0,0,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/schart.po,96,931,782,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/sdraw.po,123,732,687,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/sdraw/guide.po,275,3072,2849,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/shared.po,250,2308,2050,0,0,0,0,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/shared/autokorr.po,48,420,413,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/shared/autopi.po,887,8394,6968,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/shared/explorer/database.po,1641,18857,15998,0,0,0,0,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/shared/guide.po,2516,36443,32392,0,0,0,0,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/shared/help.po,78,117,116,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/shared/menu.po,16,120,111,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/shared/optionen.po,1934,23351,20428,0,0,0,0,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/simpress.po,199,1395,1312,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/simpress/guide.po,767,10282,9229,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/smath.po,60,739,700,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/smath/guide.po,104,1193,1132,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/swriter.po,336,2946,2587,0,0,0,0,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/swriter/guide.po,2144,27937,25311,0,0,0,0,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/swriter/librelogo.po,326,3019,2929,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/helpcontent2/source/text/swriter/menu.po,17,96,91,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/librelogo/source/pythonpath.po,138,173,173,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,21,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/nlpsolver/src/locale.po,41,105,95,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/officecfg/registry/data/org/openoffice.po,9,28,18,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/officecfg/registry/data/org/openoffice/office.po,1308,1841,1747,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/readlicense_oo/docs.po,103,2403,2233,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,15,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/reportdesign/messages.po,258,617,550,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/sc/messages.po,4686,20260,16806,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/scaddins/messages.po,901,3188,2669,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/sccomp/messages.po,14,65,60,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/scp2/source/activex.po,2,16,16,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/scp2/source/base.po,10,44,44,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/scp2/source/calc.po,22,94,83,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/scp2/source/draw.po,41,149,138,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/scp2/source/extensions.po,16,65,59,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/scp2/source/gnome.po,2,11,8,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/scp2/source/graphicfilter.po,30,101,55,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/scp2/source/impress.po,21,81,68,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/scp2/source/math.po,10,42,40,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/scp2/source/onlineupdate.po,2,13,11,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/scp2/source/python.po,2,7,6,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/scp2/source/quickstart.po,2,15,14,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/scp2/source/winexplorerext.po,2,18,18,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/scp2/source/writer.po,27,114,85,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/scp2/source/xsltfilter.po,2,6,2,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/sd/messages.po,1319,2951,2711,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/sfx2/messages.po,581,2226,2032,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/starmath/messages.po,505,968,989,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/svtools/messages.po,914,2611,2415,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/svx/messages.po,2846,7224,6402,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/sw/messages.po,3441,7740,7001,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/swext/mediawiki/help.po,89,1404,1243,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,150,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/sysui/desktop/share.po,66,277,211,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/uui/messages.po,157,1554,1409,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/vcl/messages.po,356,737,682,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/wizards/messages.po,265,1042,897,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/wizards/source/resources.po,554,2286,1940,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/writerperfect/messages.po,30,65,58,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/xmlsecurity/messages.po,91,424,389,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/accessibility/messages.po,11,27,23,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/avmedia/messages.po,22,45,41,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/basctl/messages.po,155,611,574,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/basic/messages.po,135,549,510,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/chart2/messages.po,620,1368,1124,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/connectivity/messages.po,106,1047,1035,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,3,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,1,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,1,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/cui/messages.po,2343,5558,5080,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dbaccess/messages.po,812,4510,4173,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/desktop/messages.po,162,1225,1297,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/en/dialog.po,37,176,172,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/hu_hu/dialog.po,32,71,65,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/pt_br/dialog.po,2,5,3,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/ru_ru/dialog.po,14,26,23,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/editeng/messages.po,265,656,601,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/extensions/messages.po,663,2099,1855,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/extras/source/autocorr/emoji.po,1575,1817,2233,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/extras/source/gallery/share.po,12,15,14,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/filter/messages.po,222,818,720,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/filter/source/config/fragments/filters.po,220,732,684,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/filter/source/config/fragments/internalgraphicfilters.po,38,139,134,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/filter/source/config/fragments/types.po,38,121,112,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/forms/messages.po,58,330,303,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/formula/messages.po,438,514,512,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/fpicker/messages.po,61,163,148,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/framework/messages.po,29,210,210,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/auxiliary.po,105,302,258,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/sbasic/guide.po,103,1345,1344,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/sbasic/shared.po,4505,35431,33787,0,0,0,0,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/scalc.po,187,986,928,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/scalc/guide.po,1469,21593,20655,0,0,0,0,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/schart.po,96,931,876,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/sdraw.po,123,732,772,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/sdraw/guide.po,275,3072,3459,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/shared.po,250,2308,2212,0,0,0,0,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/shared/autokorr.po,48,420,318,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/shared/autopi.po,887,8394,7881,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/shared/explorer/database.po,1641,18857,17403,0,0,0,0,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/shared/guide.po,2516,36443,35372,0,0,0,0,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/shared/help.po,78,117,120,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/shared/menu.po,16,120,113,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/shared/optionen.po,1934,23351,21941,0,0,0,0,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/simpress.po,199,1395,1374,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/simpress/guide.po,767,10282,10239,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/smath.po,60,739,751,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/smath/guide.po,104,1193,1100,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/swriter.po,336,2946,2768,0,0,0,0,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/swriter/guide.po,2144,27937,27023,0,0,0,0,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/swriter/librelogo.po,326,3019,3133,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/helpcontent2/source/text/swriter/menu.po,17,96,80,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/librelogo/source/pythonpath.po,138,173,169,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,22,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/nlpsolver/src/locale.po,41,105,95,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/officecfg/registry/data/org/openoffice.po,9,28,19,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/officecfg/registry/data/org/openoffice/office.po,1308,1841,1811,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/readlicense_oo/docs.po,103,2403,2162,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,17,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/reportdesign/messages.po,258,617,562,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/sc/messages.po,4686,20260,17661,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/scaddins/messages.po,901,3188,3286,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/sccomp/messages.po,14,65,57,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/scp2/source/activex.po,2,16,13,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/scp2/source/base.po,10,44,39,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/scp2/source/calc.po,22,94,90,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/scp2/source/draw.po,41,149,127,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/scp2/source/extensions.po,16,65,44,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/scp2/source/gnome.po,2,11,10,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/scp2/source/graphicfilter.po,30,101,96,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/scp2/source/impress.po,21,81,79,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/scp2/source/math.po,10,42,36,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/scp2/source/onlineupdate.po,2,13,11,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/scp2/source/python.po,2,7,7,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/scp2/source/quickstart.po,2,15,14,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/scp2/source/winexplorerext.po,2,18,15,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/scp2/source/writer.po,27,114,100,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/scp2/source/xsltfilter.po,2,6,2,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/sd/messages.po,1319,2951,2685,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/sfx2/messages.po,581,2226,2119,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/starmath/messages.po,505,968,978,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/svtools/messages.po,914,2611,2482,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/svx/messages.po,2846,7224,6442,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/sw/messages.po,3441,7740,6990,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/swext/mediawiki/help.po,89,1404,1374,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,168,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/sysui/desktop/share.po,66,277,241,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/uui/messages.po,157,1554,1515,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/vcl/messages.po,356,737,704,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/wizards/messages.po,265,1042,996,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/wizards/source/resources.po,554,2286,2087,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/writerperfect/messages.po,30,65,51,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/xmlsecurity/messages.po,91,424,409,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/accessibility/messages.po,7,13,14,0,0,4,14,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/avmedia/messages.po,16,26,28,1,1,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/basctl/messages.po,110,442,524,33,49,12,120,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/basic/messages.po,17,49,54,118,500,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/chart2/messages.po,309,684,706,169,320,142,364,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/connectivity/messages.po,93,900,974,8,56,5,91,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,4,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/cui/messages.po,792,1814,2108,796,1358,755,2386,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dbaccess/messages.po,488,2748,2898,246,1263,78,499,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/desktop/messages.po,107,575,666,31,392,24,258,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/en/dialog.po,1,1,2,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/en/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/hu_hu/dialog.po,2,2,2,6,9,24,60,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/pt_br/dialog.po,1,2,2,0,0,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/ru_ru/dialog.po,4,4,5,2,4,8,18,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/editeng/messages.po,178,492,557,72,111,15,53,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/extensions/messages.po,399,1202,1385,215,631,49,266,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/extras/source/autocorr/emoji.po,42,39,44,214,205,1319,1573,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/extras/source/gallery/share.po,6,8,8,2,2,4,5,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/filter/messages.po,91,390,422,40,101,91,327,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/filter/source/config/fragments/filters.po,86,303,302,12,34,122,395,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/filter/source/config/fragments/internalgraphicfilters.po,35,127,130,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/filter/source/config/fragments/types.po,18,56,56,5,19,15,46,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/forms/messages.po,54,314,326,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/formula/messages.po,274,277,282,95,121,63,110,432,508,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/fpicker/messages.po,29,75,94,18,49,14,39,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/framework/messages.po,14,84,152,7,16,8,110,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/librelogo/source/pythonpath.po,35,36,40,39,41,64,96,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/nlpsolver/src/locale.po,7,7,12,6,7,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/officecfg/registry/data/org/openoffice/office.po,1262,1526,2553,9,40,37,275,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/readlicense_oo/docs.po,66,1300,1484,2,86,35,1017,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/reportbuilder/java/org/libreoffice/report/function/metadata.po,2,2,2,0,0,4,18,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/reportdesign/messages.po,125,369,389,112,198,21,50,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/sc/messages.po,2172,11080,10386,1142,2929,1372,6251,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/scaddins/messages.po,788,2467,2396,22,89,91,632,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/sccomp/messages.po,11,47,46,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/scp2/source/base.po,8,40,45,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/scp2/source/calc.po,15,48,47,5,37,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/scp2/source/draw.po,13,52,57,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/scp2/source/graphicfilter.po,28,91,99,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/scp2/source/impress.po,17,66,69,3,12,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/scp2/source/math.po,10,42,42,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/scp2/source/onlineupdate.po,2,13,15,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/scp2/source/quickstart.po,2,15,20,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/scp2/source/winexplorerext.po,2,18,20,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/scp2/source/writer.po,21,65,67,1,4,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/sd/messages.po,472,1124,1370,367,690,480,1137,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/sfx2/messages.po,188,560,641,161,401,232,1265,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/starmath/messages.po,263,452,522,114,186,106,308,483,946,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/svl/messages.po,0,0,0,1,1,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/svtools/messages.po,576,1374,1461,83,153,255,1084,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/svx/messages.po,1472,3477,3949,622,1403,752,2344,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/sw/messages.po,1449,3075,3587,1162,2138,829,2525,3440,7738,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/swext/mediawiki/help.po,32,270,305,29,674,28,460,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,6,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,23,171,172,8,8,1,2,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/sysui/desktop/share.po,44,169,180,10,54,12,54,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/uui/messages.po,102,825,912,24,161,31,568,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/vcl/messages.po,137,219,280,66,130,153,388,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/wizards/messages.po,185,874,980,55,89,25,79,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/wizards/source/resources.po,359,1724,1786,132,276,63,286,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/writerperfect/messages.po,1,1,1,5,10,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/xmlsecurity/messages.po,33,147,145,18,60,40,217,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/accessibility/messages.po,11,27,24,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/avmedia/messages.po,22,45,40,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/basctl/messages.po,155,611,562,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/basic/messages.po,135,549,569,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/chart2/messages.po,620,1368,1346,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/connectivity/messages.po,106,1047,847,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,6,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,1,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/cui/messages.po,2343,5558,5438,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dbaccess/messages.po,812,4510,4038,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/desktop/messages.po,162,1225,1173,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/en/dialog.po,37,176,178,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/hu_hu/dialog.po,32,71,71,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/ru_ru/dialog.po,14,26,26,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/editeng/messages.po,265,656,652,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/extensions/messages.po,663,2099,1936,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/extras/source/autocorr/emoji.po,1575,1817,2435,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/extras/source/gallery/share.po,12,15,16,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/filter/messages.po,222,818,770,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/filter/source/config/fragments/filters.po,220,732,736,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/filter/source/config/fragments/internalgraphicfilters.po,38,139,139,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/filter/source/config/fragments/types.po,38,121,128,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/forms/messages.po,58,330,302,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/formula/messages.po,437,513,515,0,0,0,0,437,513,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/fpicker/messages.po,61,163,151,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/framework/messages.po,29,210,194,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/librelogo/source/pythonpath.po,138,173,174,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,26,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/nlpsolver/src/locale.po,41,105,110,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/officecfg/registry/data/org/openoffice.po,9,28,29,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/officecfg/registry/data/org/openoffice/office.po,1308,1841,1817,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/readlicense_oo/docs.po,103,2403,2136,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,13,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/reportdesign/messages.po,258,617,596,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/sc/messages.po,4686,20260,17259,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/scaddins/messages.po,901,3188,2595,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/sccomp/messages.po,14,65,60,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/scp2/source/activex.po,2,16,16,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/scp2/source/base.po,10,44,40,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/scp2/source/calc.po,22,94,104,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/scp2/source/draw.po,41,149,150,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/scp2/source/extensions.po,16,65,67,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/scp2/source/gnome.po,2,11,10,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/scp2/source/graphicfilter.po,30,101,118,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/scp2/source/impress.po,21,81,81,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/scp2/source/math.po,10,42,39,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/scp2/source/onlineupdate.po,2,13,11,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/scp2/source/quickstart.po,2,15,15,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/scp2/source/writer.po,27,114,110,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/sd/messages.po,1319,2951,2898,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/sfx2/messages.po,581,2226,2056,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/starmath/messages.po,505,968,1023,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/svtools/messages.po,914,2611,2516,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/svx/messages.po,2846,7224,6961,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/sw/messages.po,3441,7740,7770,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/swext/mediawiki/help.po,89,1404,1196,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,139,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/sysui/desktop/share.po,66,277,290,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/uui/messages.po,157,1554,1378,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/vcl/messages.po,356,737,727,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/wizards/messages.po,265,1042,988,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/wizards/source/resources.po,554,2286,2008,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/writerperfect/messages.po,30,65,64,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/xmlsecurity/messages.po,91,424,402,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/accessibility/messages.po,7,13,7,1,1,3,13,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/avmedia/messages.po,17,27,18,0,0,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/basctl/messages.po,89,302,157,34,49,32,260,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/basic/messages.po,16,48,22,118,500,1,1,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/chart2/messages.po,218,453,255,177,335,225,580,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/connectivity/messages.po,8,71,27,7,49,91,927,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,2,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,1,5,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/cui/messages.po,459,764,526,735,1136,1149,3658,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dbaccess/messages.po,398,2436,1038,245,1307,169,767,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/desktop/messages.po,77,345,192,32,427,53,453,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/en/dialog.po,1,1,1,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/hu_hu/dialog.po,2,2,2,5,8,25,61,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/ru_ru/dialog.po,2,2,2,2,4,10,20,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/editeng/messages.po,59,95,59,72,121,134,440,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/extensions/messages.po,386,950,529,216,838,61,311,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/extras/source/autocorr/emoji.po,41,38,38,181,172,1353,1607,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/extras/source/gallery/share.po,5,7,7,2,2,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/filter/messages.po,50,184,82,29,57,143,577,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/filter/source/config/fragments/filters.po,80,276,171,10,28,130,428,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/filter/source/config/fragments/internalgraphicfilters.po,35,127,86,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/filter/source/config/fragments/types.po,15,41,34,3,12,20,68,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/forms/messages.po,54,314,90,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/formula/messages.po,52,55,52,56,57,326,398,434,510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/fpicker/messages.po,30,76,36,16,46,15,41,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/framework/messages.po,17,163,56,6,14,6,33,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/auxiliary.po,22,30,24,0,0,83,272,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/sbasic/guide.po,50,595,237,0,0,53,750,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/sbasic/shared.po,3436,28335,8871,0,0,1069,7096,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/scalc.po,157,694,258,0,0,30,292,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/scalc/guide.po,1146,15761,5574,0,0,323,5832,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/schart.po,15,142,29,0,0,81,789,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/sdraw.po,115,698,238,0,0,8,34,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/sdraw/guide.po,245,2617,908,0,0,30,455,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/shared.po,202,1760,551,0,0,48,548,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/shared/autokorr.po,46,398,101,0,0,2,22,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/shared/autopi.po,725,6416,2033,0,0,162,1978,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/shared/explorer/database.po,1244,10856,3329,0,0,397,8001,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/shared/guide.po,1698,22901,6003,0,0,818,13542,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/shared/optionen.po,1145,9743,2442,0,0,789,13608,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/simpress.po,167,1127,263,0,0,32,268,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/simpress/guide.po,521,6200,1345,0,0,246,4082,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/smath.po,56,609,172,0,0,4,130,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/smath/guide.po,64,643,219,0,0,40,550,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/swriter.po,196,987,379,0,0,140,1959,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/swriter/guide.po,1574,18651,4592,0,0,570,9286,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/swriter/librelogo.po,38,39,38,1,1,287,2979,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/librelogo/source/pythonpath.po,14,16,14,45,47,79,110,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/nlpsolver/src/locale.po,4,4,4,9,10,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/officecfg/registry/data/org/openoffice/office.po,1164,1245,1495,25,28,119,568,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/readlicense_oo/docs.po,19,244,67,2,97,82,2062,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/reportdesign/messages.po,69,90,69,71,121,118,406,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/sc/messages.po,1966,10003,3186,1148,3178,1572,7079,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/scaddins/messages.po,772,2437,838,32,113,97,638,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/scp2/source/activex.po,1,2,1,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/scp2/source/base.po,8,40,13,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/scp2/source/calc.po,15,48,43,5,37,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/scp2/source/draw.po,13,52,38,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/scp2/source/graphicfilter.po,28,91,81,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/scp2/source/impress.po,17,66,53,3,12,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/scp2/source/math.po,10,42,35,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/scp2/source/onlineupdate.po,2,13,13,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/scp2/source/quickstart.po,2,15,6,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/scp2/source/winexplorerext.po,2,18,10,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/scp2/source/writer.po,17,50,42,2,7,8,57,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/sd/messages.po,358,895,387,359,643,602,1413,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/sfx2/messages.po,164,454,287,143,397,274,1375,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/starmath/messages.po,269,471,282,109,153,127,344,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/svl/messages.po,0,0,0,1,1,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/svtools/messages.po,369,974,529,79,162,466,1475,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/svx/messages.po,1362,3189,1826,604,1371,880,2664,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/sw/messages.po,1003,1596,1237,1216,2174,1222,3970,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/swext/mediawiki/help.po,5,6,5,6,8,78,1390,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,4,4,4,8,8,20,169,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/sysui/desktop/share.po,33,122,56,14,67,19,88,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/uui/messages.po,88,820,235,20,82,49,652,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/vcl/messages.po,111,156,117,59,99,186,482,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/wizards/messages.po,189,845,253,52,153,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/wizards/source/resources.po,405,1780,561,86,297,63,209,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/writerperfect/messages.po,0,0,0,6,11,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/xmlsecurity/messages.po,17,36,23,19,61,55,327,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/accessibility/messages.po,11,27,31,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/avmedia/messages.po,22,45,48,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/basctl/messages.po,155,611,630,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/basic/messages.po,135,549,614,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/chart2/messages.po,620,1368,1428,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/connectivity/messages.po,106,1047,980,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,3,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/cui/messages.po,2343,5558,5879,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dbaccess/messages.po,812,4510,4638,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/desktop/messages.po,162,1225,1258,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/en/dialog.po,37,176,179,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/hu_hu/dialog.po,32,71,74,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/ru_ru/dialog.po,14,26,25,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/editeng/messages.po,265,656,721,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/extensions/messages.po,663,2099,2166,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/extras/source/autocorr/emoji.po,1575,1817,2833,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/extras/source/gallery/share.po,12,15,15,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/filter/messages.po,222,818,849,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/filter/source/config/fragments/filters.po,220,732,772,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/filter/source/config/fragments/internalgraphicfilters.po,38,139,139,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/filter/source/config/fragments/types.po,38,121,129,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/forms/messages.po,58,330,339,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/formula/messages.po,438,514,516,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/fpicker/messages.po,61,163,170,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/framework/messages.po,29,210,216,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/auxiliary.po,105,302,311,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/sbasic/guide.po,103,1345,1406,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/sbasic/shared.po,4505,35431,36515,0,0,0,0,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/scalc.po,187,986,1096,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/scalc/guide.po,1468,21546,21998,0,0,1,47,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/schart.po,96,931,1005,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/sdraw.po,123,732,844,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/sdraw/guide.po,275,3072,3339,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/shared.po,246,2199,2225,0,0,4,109,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/shared/autokorr.po,48,420,422,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/shared/autopi.po,887,8394,8848,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/shared/explorer/database.po,1638,18750,19938,0,0,3,107,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/shared/guide.po,2508,36212,37778,0,0,8,231,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/shared/help.po,78,117,120,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/shared/menu.po,16,120,129,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/shared/optionen.po,1934,23351,24230,0,0,0,0,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/simpress.po,199,1395,1516,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/simpress/guide.po,767,10282,10890,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/smath.po,60,739,784,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/smath/guide.po,104,1193,1244,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/swriter.po,331,2836,2956,0,0,5,110,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/swriter/guide.po,2144,27937,28284,0,0,0,0,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/swriter/librelogo.po,326,3019,3063,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/helpcontent2/source/text/swriter/menu.po,17,96,103,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/librelogo/source/pythonpath.po,138,173,176,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,24,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/nlpsolver/src/locale.po,41,105,110,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/officecfg/registry/data/org/openoffice.po,9,28,22,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/officecfg/registry/data/org/openoffice/office.po,1308,1841,1880,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/readlicense_oo/docs.po,103,2403,2515,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,18,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/reportdesign/messages.po,258,617,631,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/sc/messages.po,4686,20260,20216,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/scaddins/messages.po,901,3188,3204,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/sccomp/messages.po,14,65,75,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/scp2/source/activex.po,2,16,22,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/scp2/source/base.po,10,44,53,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/scp2/source/calc.po,22,94,115,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/scp2/source/draw.po,41,149,161,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/scp2/source/extensions.po,16,65,72,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/scp2/source/gnome.po,2,11,14,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/scp2/source/graphicfilter.po,30,101,101,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/scp2/source/impress.po,21,81,91,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/scp2/source/math.po,10,42,51,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/scp2/source/onlineupdate.po,2,13,13,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/scp2/source/python.po,2,7,7,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/scp2/source/quickstart.po,2,15,19,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/scp2/source/winexplorerext.po,2,18,19,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/scp2/source/writer.po,27,114,125,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/sd/messages.po,1319,2951,3089,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/sfx2/messages.po,581,2226,2350,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/starmath/messages.po,505,968,1000,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/svtools/messages.po,914,2611,2751,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/svx/messages.po,2846,7224,7530,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/sw/messages.po,3441,7740,8150,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/swext/mediawiki/help.po,89,1404,1496,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,171,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/sysui/desktop/share.po,66,277,320,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/uui/messages.po,157,1554,1683,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/vcl/messages.po,356,737,789,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/wizards/messages.po,265,1042,1053,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/wizards/source/resources.po,554,2286,2232,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/writerperfect/messages.po,30,65,66,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/xmlsecurity/messages.po,91,424,435,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/accessibility/messages.po,11,27,27,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/avmedia/messages.po,22,45,45,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/basctl/messages.po,155,611,611,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/basic/messages.po,135,549,548,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/chart2/messages.po,620,1368,1312,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/connectivity/messages.po,106,1047,1040,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,3,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/cui/messages.po,2343,5558,5559,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dbaccess/messages.po,812,4510,4506,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/desktop/messages.po,162,1225,1224,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/en/dialog.po,37,176,176,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/hu_hu/dialog.po,32,71,71,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/ru_ru/dialog.po,14,26,26,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/editeng/messages.po,265,656,659,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/extensions/messages.po,663,2099,2100,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/extras/source/autocorr/emoji.po,1575,1817,1817,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/extras/source/gallery/share.po,12,15,15,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/filter/messages.po,222,818,818,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/filter/source/config/fragments/filters.po,220,732,732,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/filter/source/config/fragments/internalgraphicfilters.po,38,139,139,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/filter/source/config/fragments/types.po,38,121,121,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/forms/messages.po,58,330,329,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/formula/messages.po,438,514,514,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/fpicker/messages.po,61,163,161,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/framework/messages.po,29,210,210,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/auxiliary.po,105,302,303,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/sbasic/guide.po,103,1345,1358,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/sbasic/shared.po,4505,35431,35528,0,0,0,0,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/scalc.po,187,986,989,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/scalc/guide.po,1469,21593,21708,0,0,0,0,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/schart.po,96,931,939,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/sdraw.po,123,732,733,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/sdraw/guide.po,275,3072,3073,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/shared.po,250,2308,2315,0,0,0,0,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/shared/autokorr.po,48,420,421,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/shared/autopi.po,887,8394,8435,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/shared/explorer/database.po,1641,18857,18944,0,0,0,0,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/shared/guide.po,2516,36443,36595,0,0,0,0,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/shared/help.po,78,117,117,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/shared/menu.po,16,120,123,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/shared/optionen.po,1934,23351,23500,0,0,0,0,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/simpress.po,199,1395,1399,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/simpress/guide.po,767,10282,10311,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/smath.po,60,739,740,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/smath/guide.po,104,1193,1194,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/swriter.po,336,2946,2970,0,0,0,0,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/swriter/guide.po,2144,27937,27797,0,0,0,0,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/swriter/librelogo.po,326,3019,3018,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/helpcontent2/source/text/swriter/menu.po,17,96,96,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/librelogo/source/pythonpath.po,138,173,173,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,21,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/nlpsolver/src/locale.po,41,105,105,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/officecfg/registry/data/org/openoffice.po,9,28,28,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/officecfg/registry/data/org/openoffice/office.po,1308,1841,1840,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/readlicense_oo/docs.po,103,2403,2402,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,20,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/reportdesign/messages.po,258,617,616,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/sc/messages.po,4686,20260,20293,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/scaddins/messages.po,901,3188,3189,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/sccomp/messages.po,14,65,65,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/scp2/source/activex.po,2,16,16,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/scp2/source/base.po,10,44,42,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/scp2/source/calc.po,22,94,92,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/scp2/source/draw.po,41,149,147,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/scp2/source/extensions.po,16,65,65,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/scp2/source/gnome.po,2,11,11,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/scp2/source/graphicfilter.po,30,101,101,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/scp2/source/impress.po,21,81,79,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/scp2/source/math.po,10,42,40,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/scp2/source/onlineupdate.po,2,13,13,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/scp2/source/python.po,2,7,7,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/scp2/source/quickstart.po,2,15,15,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/scp2/source/winexplorerext.po,2,18,18,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/scp2/source/writer.po,27,114,114,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/sd/messages.po,1319,2951,2945,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/sfx2/messages.po,581,2226,2232,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/starmath/messages.po,505,968,984,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/svtools/messages.po,914,2611,2606,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/svx/messages.po,2846,7224,7229,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/sw/messages.po,3441,7740,7748,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/swext/mediawiki/help.po,89,1404,1417,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,181,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/sysui/desktop/share.po,66,277,271,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/uui/messages.po,157,1554,1554,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/vcl/messages.po,356,737,736,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/wizards/messages.po,265,1042,1038,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/wizards/source/resources.po,554,2286,2282,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/writerperfect/messages.po,30,65,65,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/xmlsecurity/messages.po,91,424,424,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/accessibility/messages.po,7,13,13,1,1,3,13,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/avmedia/messages.po,17,27,27,0,0,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/basctl/messages.po,98,394,394,34,50,23,167,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/basic/messages.po,18,52,52,117,497,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/chart2/messages.po,243,526,526,163,285,214,557,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/connectivity/messages.po,96,942,942,6,48,4,57,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,3,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,1,5,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/cui/messages.po,675,1441,1438,720,1243,948,2874,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dbaccess/messages.po,434,2640,2640,245,1304,133,566,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/desktop/messages.po,106,666,664,34,338,22,221,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/en/dialog.po,1,1,1,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/hu_hu/dialog.po,2,2,2,6,9,24,60,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/pt_br/dialog.po,0,0,0,1,2,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/ru_ru/dialog.po,3,3,3,2,4,9,19,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/editeng/messages.po,237,565,565,17,61,11,30,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/extensions/messages.po,402,998,998,209,827,52,274,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/extras/source/autocorr/emoji.po,43,39,39,189,181,1343,1597,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/extras/source/gallery/share.po,6,8,8,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/filter/messages.po,55,213,213,31,74,136,531,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/filter/source/config/fragments/filters.po,87,307,306,11,30,122,395,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/filter/source/config/fragments/internalgraphicfilters.po,35,127,127,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/filter/source/config/fragments/types.po,17,50,50,4,17,17,54,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/forms/messages.po,54,314,314,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/formula/messages.po,304,307,307,63,89,71,118,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/fpicker/messages.po,31,88,88,15,34,15,41,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/framework/messages.po,18,167,167,6,14,5,29,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/auxiliary.po,22,30,30,0,0,83,272,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/sbasic/guide.po,83,1116,1116,0,0,20,229,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/sbasic/shared.po,3370,28592,28685,0,0,1135,6839,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/scalc.po,171,830,823,0,0,16,156,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/scalc/guide.po,1298,18021,17994,0,0,171,3572,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/schart.po,87,794,794,0,0,9,137,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/sdraw.po,119,714,711,0,0,4,18,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/sdraw/guide.po,255,2699,2697,0,0,20,373,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/shared.po,208,1801,1802,0,0,42,507,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/shared/autokorr.po,47,403,403,0,0,1,17,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/shared/autopi.po,744,6488,6487,0,0,143,1906,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/shared/explorer/database.po,1449,14286,14269,0,0,192,4571,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/shared/guide.po,2039,28012,27979,0,0,477,8431,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/shared/optionen.po,1231,11171,11161,0,0,703,12180,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/simpress.po,185,1314,1313,0,0,14,81,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/simpress/guide.po,594,7859,7849,0,0,173,2423,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/smath.po,56,609,606,0,0,4,130,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/smath/guide.po,95,1030,1030,0,0,9,163,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/swriter.po,215,1366,1360,0,0,121,1580,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/swriter/guide.po,1866,22720,22659,0,0,278,5217,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/swriter/librelogo.po,39,40,40,1,1,286,2978,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/librelogo/source/pythonpath.po,19,21,21,42,44,77,108,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/nlpsolver/src/locale.po,10,10,10,5,6,26,89,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/officecfg/registry/data/org/openoffice/office.po,1191,1278,1279,5,8,112,555,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/readlicense_oo/docs.po,66,1289,1289,10,282,27,832,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/reportdesign/messages.po,186,440,440,58,139,14,38,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/sc/messages.po,2310,11428,11428,1008,2993,1368,5839,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/scaddins/messages.po,781,2471,2471,23,79,97,638,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/sccomp/messages.po,11,47,47,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/scp2/source/base.po,8,40,40,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/scp2/source/calc.po,17,56,56,3,29,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/scp2/source/draw.po,13,52,52,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/scp2/source/graphicfilter.po,28,91,91,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/scp2/source/impress.po,19,74,74,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/scp2/source/math.po,10,42,42,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/scp2/source/onlineupdate.po,2,13,13,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/scp2/source/quickstart.po,2,15,15,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/scp2/source/winexplorerext.po,2,18,18,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/scp2/source/writer.po,22,69,69,0,0,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/sd/messages.po,457,1181,1181,324,564,538,1206,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/sfx2/messages.po,195,523,523,141,443,245,1260,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/starmath/messages.po,277,481,480,104,148,124,339,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/svtools/messages.po,584,1472,1471,73,184,257,955,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/svx/messages.po,1468,3386,3385,574,1332,804,2506,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/sw/messages.po,1291,2193,2189,1086,2092,1064,3455,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/swext/mediawiki/help.po,44,304,304,24,702,21,398,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,181,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/sysui/desktop/share.po,44,171,171,10,52,12,54,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/uui/messages.po,97,923,923,19,134,41,497,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/vcl/messages.po,167,263,263,45,113,144,361,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/wizards/messages.po,229,985,985,12,13,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/wizards/source/resources.po,470,1917,1915,34,192,50,177,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/writerperfect/messages.po,1,1,1,5,10,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/xmlsecurity/messages.po,21,40,40,17,118,53,266,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/accessibility/messages.po,11,27,26,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/avmedia/messages.po,22,45,44,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/basctl/messages.po,155,611,583,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/basic/messages.po,135,549,513,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/chart2/messages.po,620,1368,1214,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/connectivity/messages.po,106,1047,949,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,3,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,3,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,1,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,3,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/cui/messages.po,2343,5558,5340,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dbaccess/messages.po,812,4510,4035,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/desktop/messages.po,162,1225,1179,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/en/dialog.po,37,176,162,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/hu_hu/dialog.po,32,71,64,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/pt_br/dialog.po,2,5,4,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/ru_ru/dialog.po,14,26,27,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/editeng/messages.po,265,656,650,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/extensions/messages.po,663,2099,1899,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/extras/source/autocorr/emoji.po,1573,1815,1775,0,0,2,2,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/extras/source/gallery/share.po,12,15,15,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/filter/messages.po,222,818,717,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/filter/source/config/fragments/filters.po,204,691,681,0,0,16,41,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/filter/source/config/fragments/internalgraphicfilters.po,38,139,137,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/filter/source/config/fragments/types.po,28,95,105,0,0,10,26,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/forms/messages.po,58,330,323,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/formula/messages.po,437,513,561,0,0,1,1,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/fpicker/messages.po,61,163,147,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/framework/messages.po,29,210,182,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/auxiliary.po,97,279,279,0,0,8,23,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/sbasic/guide.po,53,599,548,0,0,50,746,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/sbasic/shared.po,2911,21527,19532,0,0,1594,13904,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/scalc.po,187,986,972,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/scalc/guide.po,261,1861,1726,0,0,1208,19732,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/schart.po,96,931,853,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/sdraw.po,123,732,655,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/sdraw/guide.po,32,215,211,0,0,243,2857,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/shared.po,239,2135,1919,0,0,11,173,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/shared/autokorr.po,48,420,295,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/shared/autopi.po,217,427,410,0,0,670,7967,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/shared/explorer/database.po,401,940,909,0,0,1240,17917,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/shared/guide.po,990,11563,10547,0,0,1526,24880,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/shared/help.po,7,25,30,0,0,71,92,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/shared/menu.po,16,120,112,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/shared/optionen.po,550,1076,1025,0,0,1384,22275,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/simpress.po,199,1395,1281,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/simpress/guide.po,183,2296,2060,0,0,584,7986,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/smath.po,59,722,659,0,0,1,17,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/smath/guide.po,3,3,3,0,0,101,1190,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/swriter.po,330,2832,2625,0,0,6,114,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/swriter/guide.po,2138,27875,25662,0,0,6,62,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/swriter/librelogo.po,326,3019,2889,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/helpcontent2/source/text/swriter/menu.po,17,96,89,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/librelogo/source/pythonpath.po,138,173,171,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,21,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/nlpsolver/src/locale.po,41,105,113,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/officecfg/registry/data/org/openoffice.po,9,28,28,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/officecfg/registry/data/org/openoffice/office.po,1308,1841,1777,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/readlicense_oo/docs.po,103,2403,2205,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,19,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/reportdesign/messages.po,258,617,587,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/sc/messages.po,4686,20260,18592,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/scaddins/messages.po,901,3188,3040,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/sccomp/messages.po,14,65,60,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/scp2/source/activex.po,2,16,18,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/scp2/source/base.po,10,44,37,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/scp2/source/calc.po,22,94,96,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/scp2/source/draw.po,41,149,161,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/scp2/source/extensions.po,16,65,59,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/scp2/source/gnome.po,2,11,9,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/scp2/source/graphicfilter.po,30,101,125,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/scp2/source/impress.po,21,81,86,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/scp2/source/math.po,10,42,43,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/scp2/source/python.po,2,7,6,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/scp2/source/quickstart.po,2,15,14,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/scp2/source/winexplorerext.po,2,18,17,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/scp2/source/writer.po,27,114,118,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/scp2/source/xsltfilter.po,2,6,4,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/sd/messages.po,1319,2951,2866,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/sfx2/messages.po,581,2226,2137,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/starmath/messages.po,505,968,997,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/svtools/messages.po,908,2603,2485,0,0,6,8,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/svx/messages.po,2831,7189,6994,0,0,15,35,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/sw/messages.po,3441,7740,7500,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/swext/mediawiki/help.po,89,1404,1305,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,161,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/sysui/desktop/share.po,66,277,304,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/uui/messages.po,157,1554,1446,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/vcl/messages.po,356,737,688,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/wizards/messages.po,265,1042,967,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/wizards/source/resources.po,554,2286,2076,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/writerperfect/messages.po,30,65,62,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/xmlsecurity/messages.po,91,424,390,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/accessibility/messages.po,11,27,30,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/avmedia/messages.po,22,45,49,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/basctl/messages.po,155,611,674,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/basic/messages.po,135,549,738,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/chart2/messages.po,620,1368,1687,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/connectivity/messages.po,106,1047,1207,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,3,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,7,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,5,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,3,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/cui/messages.po,2343,5558,6405,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dbaccess/messages.po,812,4510,5134,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/desktop/messages.po,162,1225,1263,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/en/dialog.po,37,176,191,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/hu_hu/dialog.po,32,71,84,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/pt_br/dialog.po,2,5,6,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/ru_ru/dialog.po,14,26,31,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/editeng/messages.po,265,656,794,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/extensions/messages.po,663,2099,2328,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/extras/source/autocorr/emoji.po,1436,1663,1743,0,0,139,154,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/extras/source/gallery/share.po,12,15,17,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/filter/messages.po,222,818,956,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/filter/source/config/fragments/filters.po,220,732,948,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/filter/source/config/fragments/internalgraphicfilters.po,38,139,182,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/filter/source/config/fragments/types.po,38,121,161,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/forms/messages.po,58,330,360,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/formula/messages.po,438,514,631,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/fpicker/messages.po,61,163,176,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/framework/messages.po,29,210,233,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/auxiliary.po,105,302,375,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/sbasic/guide.po,103,1345,1569,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/sbasic/shared.po,4504,35404,38264,0,0,1,27,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/scalc.po,187,986,1145,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/scalc/guide.po,1463,21414,23566,0,0,6,179,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/schart.po,96,931,1136,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/sdraw.po,123,732,796,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/sdraw/guide.po,275,3072,3447,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/shared.po,250,2308,2559,0,0,0,0,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/shared/autokorr.po,48,420,453,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/shared/autopi.po,883,8300,9163,0,0,4,94,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/shared/explorer/database.po,1528,15891,18074,0,0,113,2966,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/shared/guide.po,2490,35788,40944,0,0,26,655,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/shared/help.po,78,117,130,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/shared/menu.po,16,120,144,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/shared/optionen.po,1900,22196,25085,0,0,34,1155,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/simpress.po,199,1395,1571,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/simpress/guide.po,767,10282,11701,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/smath.po,60,739,829,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/smath/guide.po,104,1193,1264,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/swriter.po,334,2937,3387,0,0,2,9,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/swriter/guide.po,2141,27919,31319,0,0,3,18,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/swriter/librelogo.po,326,3019,3420,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/helpcontent2/source/text/swriter/menu.po,17,96,113,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/librelogo/source/pythonpath.po,138,173,203,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,27,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/nlpsolver/src/locale.po,41,105,134,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/officecfg/registry/data/org/openoffice.po,9,28,40,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/officecfg/registry/data/org/openoffice/office.po,1307,1839,1990,0,0,1,2,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/readlicense_oo/docs.po,103,2403,2620,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,17,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/reportdesign/messages.po,258,617,712,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/sc/messages.po,4642,20179,22313,5,5,39,76,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/scaddins/messages.po,901,3188,3265,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/sccomp/messages.po,14,65,82,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/scp2/source/activex.po,2,16,19,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/scp2/source/base.po,10,44,53,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/scp2/source/calc.po,22,94,131,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/scp2/source/draw.po,41,149,173,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/scp2/source/extensions.po,16,65,90,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/scp2/source/gnome.po,2,11,13,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/scp2/source/graphicfilter.po,30,101,140,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/scp2/source/impress.po,21,81,96,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/scp2/source/math.po,10,42,46,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/scp2/source/python.po,2,7,11,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/scp2/source/quickstart.po,2,15,19,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/scp2/source/winexplorerext.po,2,18,23,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/scp2/source/writer.po,27,114,145,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/scp2/source/xsltfilter.po,2,6,8,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/sd/messages.po,1253,2879,3320,12,13,54,59,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/sfx2/messages.po,581,2226,2435,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/starmath/messages.po,505,968,1122,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/svtools/messages.po,900,2574,2917,0,0,14,37,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/svx/messages.po,2819,7162,8072,7,15,20,47,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/sw/messages.po,3400,7692,9074,4,5,37,43,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/swext/mediawiki/help.po,89,1404,1602,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,182,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/sysui/desktop/share.po,66,277,385,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/uui/messages.po,157,1554,1691,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/vcl/messages.po,332,670,765,0,0,24,67,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/wizards/messages.po,261,1026,1159,4,16,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/wizards/source/resources.po,554,2286,2441,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/writerperfect/messages.po,30,65,78,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/xmlsecurity/messages.po,91,424,485,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/accessibility/messages.po,11,27,19,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/avmedia/messages.po,22,45,41,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/basctl/messages.po,155,611,471,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/basic/messages.po,135,549,517,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/chart2/messages.po,620,1368,1104,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/connectivity/messages.po,106,1047,779,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,5,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/cui/messages.po,2343,5558,4700,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dbaccess/messages.po,812,4510,3316,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/desktop/messages.po,162,1225,923,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/en/dialog.po,37,176,159,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/hu_hu/dialog.po,32,71,59,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/pt_br/dialog.po,2,5,3,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/ru_ru/dialog.po,14,26,21,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/editeng/messages.po,265,656,584,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/extensions/messages.po,663,2099,1606,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/extras/source/autocorr/emoji.po,1575,1817,1607,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/extras/source/gallery/share.po,12,15,14,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/filter/messages.po,222,818,633,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/filter/source/config/fragments/filters.po,220,732,669,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/filter/source/config/fragments/internalgraphicfilters.po,40,146,137,0,0,0,0,40,146,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/filter/source/config/fragments/types.po,38,121,113,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/forms/messages.po,58,330,257,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/formula/messages.po,438,514,511,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/fpicker/messages.po,61,163,138,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/framework/messages.po,29,210,143,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/auxiliary.po,105,302,255,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/sbasic/guide.po,89,1185,813,0,0,14,160,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/sbasic/shared.po,3524,29351,21467,0,0,981,6080,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/scalc.po,187,986,734,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/scalc/guide.po,1360,19505,13699,0,0,109,2088,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/schart.po,96,931,606,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/sdraw.po,123,732,551,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/sdraw/guide.po,275,3072,2107,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/shared.po,250,2308,1685,0,0,0,0,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/shared/autokorr.po,48,420,277,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/shared/autopi.po,648,4144,3086,0,0,239,4250,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/shared/explorer/database.po,1406,12817,8960,0,0,235,6040,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/shared/guide.po,2059,28452,19707,0,0,457,7991,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/shared/menu.po,16,120,91,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/shared/optionen.po,1587,17301,12140,0,0,347,6050,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/simpress.po,199,1395,958,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/simpress/guide.po,605,8019,5450,0,0,162,2263,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/smath.po,60,739,544,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/smath/guide.po,104,1193,891,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/swriter.po,314,2434,1783,0,0,22,512,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/swriter/guide.po,1758,21487,14811,0,0,386,6450,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/swriter/librelogo.po,267,1513,1354,5,124,54,1382,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/librelogo/source/pythonpath.po,138,173,167,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,12,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/nlpsolver/src/locale.po,41,105,84,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/officecfg/registry/data/org/openoffice.po,9,28,25,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/officecfg/registry/data/org/openoffice/office.po,1308,1841,1688,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/readlicense_oo/docs.po,103,2403,1684,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,14,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/reportdesign/messages.po,258,617,563,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/sc/messages.po,4686,20260,14003,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/scaddins/messages.po,901,3188,2055,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/sccomp/messages.po,14,65,52,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/scp2/source/activex.po,2,16,16,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/scp2/source/base.po,10,44,37,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/scp2/source/calc.po,22,94,83,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/scp2/source/draw.po,41,149,105,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/scp2/source/extensions.po,16,65,53,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/scp2/source/gnome.po,2,11,9,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/scp2/source/graphicfilter.po,30,101,79,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/scp2/source/impress.po,21,81,69,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/scp2/source/math.po,10,42,36,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/scp2/source/onlineupdate.po,2,13,7,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/scp2/source/python.po,2,7,5,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/scp2/source/quickstart.po,2,15,10,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/scp2/source/winexplorerext.po,2,18,15,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/scp2/source/writer.po,27,114,89,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/scp2/source/xsltfilter.po,2,6,4,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/sd/messages.po,1319,2951,2474,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/sfx2/messages.po,581,2226,1800,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/starmath/messages.po,505,968,836,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/svtools/messages.po,914,2611,2270,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/svx/messages.po,2846,7224,6027,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/sw/messages.po,3441,7740,6675,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/swext/mediawiki/help.po,89,1404,974,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,2,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,125,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/sysui/desktop/share.po,66,277,231,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/uui/messages.po,157,1554,1186,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/vcl/messages.po,356,737,669,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/wizards/messages.po,265,1042,809,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/wizards/source/resources.po,554,2286,1730,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/writerperfect/messages.po,30,65,59,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/xmlsecurity/messages.po,91,424,338,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/accessibility/messages.po,11,27,23,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/avmedia/messages.po,22,45,42,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/basctl/messages.po,155,611,503,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/basic/messages.po,135,549,558,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/chart2/messages.po,620,1368,1220,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/connectivity/messages.po,106,1047,860,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/cui/messages.po,2343,5558,4943,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dbaccess/messages.po,812,4510,3619,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/desktop/messages.po,162,1225,963,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/en/dialog.po,37,176,170,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/hu_hu/dialog.po,32,71,66,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/pt_br/dialog.po,2,5,3,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/ru_ru/dialog.po,14,26,26,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/editeng/messages.po,265,656,618,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/extensions/messages.po,663,2099,1672,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/extras/source/autocorr/emoji.po,1575,1817,1768,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/extras/source/gallery/share.po,12,15,15,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/filter/messages.po,222,818,730,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/filter/source/config/fragments/filters.po,220,732,714,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/filter/source/config/fragments/internalgraphicfilters.po,38,139,136,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/filter/source/config/fragments/types.po,38,121,121,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/forms/messages.po,58,330,271,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/formula/messages.po,438,514,513,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/fpicker/messages.po,61,163,139,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/framework/messages.po,29,210,166,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/auxiliary.po,105,302,270,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/sbasic/guide.po,103,1345,981,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/sbasic/shared.po,4505,35431,28163,0,0,0,0,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/scalc.po,187,986,789,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/scalc/guide.po,1469,21593,16390,0,0,0,0,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/schart.po,96,931,756,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/sdraw.po,123,732,591,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/sdraw/guide.po,275,3072,2270,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/shared.po,250,2308,1860,0,0,0,0,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/shared/autokorr.po,48,420,343,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/shared/autopi.po,887,8394,6199,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/shared/explorer/database.po,1641,18857,14003,0,0,0,0,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/shared/guide.po,2516,36443,27598,0,0,0,0,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/shared/help.po,78,117,111,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/shared/menu.po,16,120,98,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/shared/optionen.po,1934,23351,18112,0,0,0,0,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/simpress.po,199,1395,1051,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/simpress/guide.po,767,10282,7542,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/smath.po,60,739,564,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/smath/guide.po,104,1193,913,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/swriter.po,336,2946,2288,0,0,0,0,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/swriter/guide.po,2144,27937,20350,0,0,0,0,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/swriter/librelogo.po,326,3019,2701,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/helpcontent2/source/text/swriter/menu.po,17,96,79,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/librelogo/source/pythonpath.po,138,173,171,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,17,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/nlpsolver/src/locale.po,41,105,93,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/officecfg/registry/data/org/openoffice.po,9,28,20,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/officecfg/registry/data/org/openoffice/office.po,1308,1841,1762,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/readlicense_oo/docs.po,103,2403,1891,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,15,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/reportdesign/messages.po,258,617,552,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/sc/messages.po,4686,20260,15797,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/scaddins/messages.po,901,3188,2468,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/sccomp/messages.po,14,65,62,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/scp2/source/activex.po,2,16,15,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/scp2/source/base.po,10,44,37,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/scp2/source/calc.po,22,94,88,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/scp2/source/draw.po,41,149,140,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/scp2/source/extensions.po,16,65,52,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/scp2/source/gnome.po,2,11,8,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/scp2/source/graphicfilter.po,30,101,121,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/scp2/source/impress.po,21,81,72,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/scp2/source/math.po,10,42,36,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/scp2/source/onlineupdate.po,2,13,11,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/scp2/source/python.po,2,7,6,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/scp2/source/quickstart.po,2,15,12,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/scp2/source/winexplorerext.po,2,18,18,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/scp2/source/writer.po,27,114,98,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/scp2/source/xsltfilter.po,2,6,4,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/sd/messages.po,1319,2951,2665,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/sfx2/messages.po,581,2226,1908,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/starmath/messages.po,504,967,969,0,0,0,0,504,967,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/svtools/messages.po,914,2611,2413,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/svx/messages.po,2846,7224,6358,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/sw/messages.po,3441,7740,6929,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/swext/mediawiki/help.po,89,1404,1084,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,2,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,136,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/sysui/desktop/share.po,66,277,264,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/uui/messages.po,157,1554,1257,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/vcl/messages.po,356,737,681,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/wizards/messages.po,265,1042,817,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/wizards/source/resources.po,554,2286,1834,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/writerperfect/messages.po,30,65,62,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/xmlsecurity/messages.po,91,424,360,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/accessibility/messages.po,11,27,35,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/avmedia/messages.po,22,45,47,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/basctl/messages.po,131,579,619,23,28,1,4,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/basic/messages.po,18,52,72,117,497,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/chart2/messages.po,243,536,600,149,254,228,578,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/connectivity/messages.po,58,533,510,5,47,43,467,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,6,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/cui/messages.po,582,1202,1326,711,1299,1050,3057,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dbaccess/messages.po,255,1326,1353,319,2036,238,1148,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/desktop/messages.po,61,330,392,16,58,85,837,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/en/dialog.po,1,1,1,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/hu_hu/dialog.po,2,2,2,5,8,25,61,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/pt_br/dialog.po,0,0,0,1,2,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/ru_ru/dialog.po,3,3,5,2,4,9,19,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/editeng/messages.po,265,656,718,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/extensions/messages.po,237,445,535,146,454,280,1200,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/extras/source/autocorr/emoji.po,42,39,39,175,165,1358,1613,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/extras/source/gallery/share.po,11,14,16,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/filter/messages.po,31,45,53,30,40,161,733,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/filter/source/config/fragments/filters.po,54,182,191,14,50,152,500,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/filter/source/config/fragments/internalgraphicfilters.po,5,17,19,0,0,33,122,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/filter/source/config/fragments/types.po,5,19,20,5,21,28,81,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/forms/messages.po,58,330,333,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/formula/messages.po,356,377,380,33,48,49,89,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/fpicker/messages.po,61,163,185,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/framework/messages.po,29,210,226,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/librelogo/source/pythonpath.po,15,17,15,43,45,80,111,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,1,4,4,0,0,1,17,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/nlpsolver/src/locale.po,9,9,9,3,4,29,92,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/officecfg/registry/data/org/openoffice/office.po,587,666,941,169,172,552,1003,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/readlicense_oo/docs.po,22,414,458,12,234,69,1755,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,16,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/reportdesign/messages.po,185,440,470,59,139,14,38,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/sc/messages.po,1739,6624,5874,1189,4753,1758,8883,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/scaddins/messages.po,100,286,284,105,242,696,2660,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/sccomp/messages.po,14,65,75,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/scp2/source/base.po,8,40,43,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/scp2/source/calc.po,17,56,56,3,29,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/scp2/source/draw.po,13,52,54,3,13,25,84,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/scp2/source/extensions.po,10,34,37,0,0,6,31,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/scp2/source/gnome.po,1,2,3,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/scp2/source/graphicfilter.po,28,91,106,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/scp2/source/impress.po,19,74,79,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/scp2/source/math.po,10,42,44,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/scp2/source/onlineupdate.po,2,13,14,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/scp2/source/quickstart.po,2,15,18,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/scp2/source/winexplorerext.po,2,18,19,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/scp2/source/writer.po,22,69,71,0,0,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/sd/messages.po,448,1170,1195,326,550,545,1231,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/sfx2/messages.po,164,370,394,124,279,293,1577,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/starmath/messages.po,257,477,552,103,143,120,323,480,943,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/svtools/messages.po,500,1147,1157,88,217,326,1247,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/svx/messages.po,1051,2137,2242,541,1100,1254,3987,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/sw/messages.po,1310,2352,2578,1063,1942,1067,3445,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/swext/mediawiki/help.po,13,17,18,3,5,73,1382,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,31,179,174,0,0,1,2,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/sysui/desktop/share.po,56,216,228,7,49,3,12,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/uui/messages.po,53,350,328,21,76,83,1128,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/vcl/messages.po,179,304,329,39,84,138,349,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/wizards/messages.po,73,254,269,38,71,154,717,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/wizards/source/resources.po,280,1077,1191,73,179,201,1030,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/writerperfect/messages.po,30,65,79,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/xmlsecurity/messages.po,33,74,77,14,103,44,247,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/accessibility/messages.po,11,27,19,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/avmedia/messages.po,22,45,42,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/basctl/messages.po,155,611,451,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/basic/messages.po,135,549,503,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/chart2/messages.po,617,1340,1048,0,0,3,28,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/connectivity/messages.po,105,1033,783,0,0,1,14,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,5,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,1,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,1,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/cui/messages.po,2206,5231,4298,23,31,114,296,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dbaccess/messages.po,812,4510,3215,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/desktop/messages.po,160,1172,848,0,0,2,53,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/en/dialog.po,37,176,159,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/hu_hu/dialog.po,32,71,64,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/pt_br/dialog.po,2,5,4,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/ru_ru/dialog.po,13,25,24,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/editeng/messages.po,265,656,606,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/extensions/messages.po,658,2078,1549,0,0,5,21,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/extras/source/autocorr/emoji.po,1278,1493,1416,0,0,297,324,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/extras/source/gallery/share.po,11,14,13,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/filter/messages.po,222,818,612,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/filter/source/config/fragments/filters.po,196,667,573,0,0,24,65,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/filter/source/config/fragments/internalgraphicfilters.po,38,139,131,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/filter/source/config/fragments/types.po,28,95,84,0,0,10,26,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/forms/messages.po,58,330,248,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/formula/messages.po,437,513,623,0,0,1,1,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/fpicker/messages.po,61,163,139,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/framework/messages.po,29,210,138,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/auxiliary.po,92,266,232,0,0,13,36,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/sbasic/guide.po,89,1185,748,0,0,14,160,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/sbasic/shared.po,3558,29612,21278,0,0,947,5819,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/scalc.po,183,970,700,0,0,4,16,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/scalc/guide.po,1364,19648,12791,0,0,105,1945,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/schart.po,88,796,491,0,0,8,135,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/sdraw.po,120,718,520,0,0,3,14,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/sdraw/guide.po,263,2845,1834,0,0,12,227,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/shared.po,219,1966,1326,0,0,31,342,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/shared/autokorr.po,48,420,317,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/shared/autopi.po,758,6585,4379,0,0,129,1809,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/shared/explorer/database.po,1477,14662,9461,0,0,164,4195,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/shared/guide.po,2117,29836,19457,0,0,399,6607,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/shared/optionen.po,1562,17110,11173,0,0,372,6241,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/simpress.po,189,1337,893,0,0,10,58,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/simpress/guide.po,605,8019,5096,0,0,162,2263,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/smath.po,57,613,392,0,0,3,126,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/smath/guide.po,96,1031,723,0,0,8,162,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/swriter.po,228,1524,1042,0,0,108,1422,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/swriter/guide.po,1945,24313,15081,0,0,199,3624,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/swriter/librelogo.po,319,2865,2370,0,0,7,154,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/librelogo/source/pythonpath.po,138,173,170,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,14,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/nlpsolver/src/locale.po,41,105,83,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/officecfg/registry/data/org/openoffice.po,8,25,21,0,0,1,3,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/officecfg/registry/data/org/openoffice/office.po,1301,1831,1703,0,0,7,10,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/readlicense_oo/docs.po,102,2343,1557,0,0,1,60,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,13,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/reportdesign/messages.po,258,617,544,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/sc/messages.po,4437,19496,12958,0,0,249,764,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/scaddins/messages.po,901,3188,2242,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/sccomp/messages.po,14,65,45,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/scp2/source/activex.po,2,16,13,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/scp2/source/base.po,10,44,36,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/scp2/source/calc.po,22,94,83,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/scp2/source/draw.po,41,149,131,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/scp2/source/extensions.po,16,65,51,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/scp2/source/gnome.po,1,2,1,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/scp2/source/graphicfilter.po,30,101,64,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/scp2/source/impress.po,21,81,67,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/scp2/source/math.po,10,42,37,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/scp2/source/onlineupdate.po,2,13,11,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/scp2/source/python.po,2,7,5,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/scp2/source/quickstart.po,2,15,10,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/scp2/source/winexplorerext.po,2,18,13,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/scp2/source/writer.po,27,114,79,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/scp2/source/xsltfilter.po,2,6,2,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/sd/messages.po,1109,2644,2189,32,46,178,261,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/sfx2/messages.po,555,1948,1521,0,0,26,278,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/starmath/messages.po,505,968,794,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/svtools/messages.po,862,2428,2041,0,0,52,183,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/svx/messages.po,2715,6888,5693,0,0,131,336,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/sw/messages.po,3353,7370,6275,3,3,85,367,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/swext/mediawiki/help.po,75,1191,786,0,0,14,213,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,2,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,111,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/sysui/desktop/share.po,66,277,218,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/uui/messages.po,148,1322,1004,0,0,9,232,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/vcl/messages.po,270,525,442,0,0,86,212,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/wizards/messages.po,265,1042,710,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/wizards/source/resources.po,554,2286,1663,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/writerperfect/messages.po,21,52,45,0,0,9,13,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/xmlsecurity/messages.po,91,424,335,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/accessibility/messages.po,11,27,32,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/avmedia/messages.po,22,45,55,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/basctl/messages.po,155,611,721,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/basic/messages.po,135,549,622,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/chart2/messages.po,620,1368,1728,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/connectivity/messages.po,106,1047,1233,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,3,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/cui/messages.po,2343,5558,6691,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dbaccess/messages.po,812,4510,5207,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/desktop/messages.po,162,1225,1394,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/en/dialog.po,37,176,223,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/hu_hu/dialog.po,32,71,85,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/ru_ru/dialog.po,14,26,31,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/editeng/messages.po,265,656,769,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/extensions/messages.po,663,2099,2420,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/extensions/source/update/check/org/openoffice/office.po,1,3,5,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/extras/source/autocorr/emoji.po,1575,1817,1922,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/extras/source/gallery/share.po,12,15,16,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/filter/messages.po,222,818,987,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/filter/source/config/fragments/filters.po,220,732,757,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/filter/source/config/fragments/internalgraphicfilters.po,38,139,140,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/filter/source/config/fragments/types.po,38,121,128,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/forms/messages.po,58,330,356,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/formula/messages.po,438,514,612,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/fpicker/messages.po,61,163,198,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/framework/messages.po,29,210,238,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/auxiliary.po,105,302,349,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/sbasic/guide.po,103,1345,1707,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/sbasic/shared.po,4505,35431,38295,0,0,0,0,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/scalc.po,187,986,1144,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/scalc/guide.po,1469,21593,23805,0,0,0,0,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/schart.po,96,931,1091,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/sdraw.po,123,732,856,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/sdraw/guide.po,275,3072,3359,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/shared.po,250,2308,2579,0,0,0,0,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/shared/autokorr.po,48,420,433,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/shared/autopi.po,887,8394,9118,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/shared/explorer/database.po,1641,18857,21450,0,0,0,0,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/shared/guide.po,2516,36443,41308,0,0,0,0,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/shared/help.po,78,117,132,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/shared/menu.po,16,120,142,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/shared/optionen.po,1934,23351,26370,0,0,0,0,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/simpress.po,199,1395,1617,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/simpress/guide.po,767,10282,11388,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/smath.po,60,739,845,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/smath/guide.po,104,1193,1264,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/swriter.po,336,2946,3414,0,0,0,0,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/swriter/guide.po,2144,27937,31111,0,0,0,0,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/swriter/librelogo.po,326,3019,3382,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/helpcontent2/source/text/swriter/menu.po,17,96,145,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/librelogo/source/pythonpath.po,138,173,175,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,27,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/nlpsolver/src/locale.po,41,105,128,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/officecfg/registry/data/org/openoffice.po,9,28,40,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/officecfg/registry/data/org/openoffice/office.po,1308,1841,1995,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/readlicense_oo/docs.po,103,2403,2637,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,19,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/reportdesign/messages.po,258,617,767,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/sc/messages.po,4686,20260,22042,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/scaddins/messages.po,901,3188,3178,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/sccomp/messages.po,14,65,80,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/scp2/source/activex.po,2,16,18,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/scp2/source/base.po,10,44,47,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/scp2/source/calc.po,22,94,108,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/scp2/source/draw.po,41,149,153,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/scp2/source/extensions.po,16,65,76,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/scp2/source/gnome.po,2,11,12,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/scp2/source/graphicfilter.po,30,101,98,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/scp2/source/impress.po,21,81,86,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/scp2/source/math.po,10,42,44,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/scp2/source/onlineupdate.po,2,13,18,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/scp2/source/quickstart.po,2,15,17,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/scp2/source/winexplorerext.po,2,18,21,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/scp2/source/writer.po,27,114,120,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/scp2/source/xsltfilter.po,2,6,8,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/sd/messages.po,1319,2951,3445,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/sfx2/messages.po,581,2226,2483,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/starmath/messages.po,505,968,1122,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/svtools/messages.po,914,2611,2851,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/svx/messages.po,2846,7224,8349,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/sw/messages.po,3441,7740,9513,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/swext/mediawiki/help.po,89,1404,1597,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,179,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/sysui/desktop/share.po,66,277,311,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/uui/messages.po,157,1554,1800,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/vcl/messages.po,356,737,813,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/wizards/messages.po,265,1042,1130,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/wizards/source/resources.po,554,2286,2492,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/writerperfect/messages.po,30,65,80,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/xmlsecurity/messages.po,91,424,522,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/accessibility/messages.po,11,27,26,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/avmedia/messages.po,22,45,44,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/basctl/messages.po,155,611,598,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/basic/messages.po,135,549,581,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/chart2/messages.po,620,1368,1262,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/connectivity/messages.po,106,1047,1108,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/cui/messages.po,2343,5558,5595,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dbaccess/messages.po,812,4510,4515,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/desktop/messages.po,162,1225,1391,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/en/dialog.po,37,176,201,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/hu_hu/dialog.po,32,71,84,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/pt_br/dialog.po,2,5,8,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/ru_ru/dialog.po,14,26,34,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/editeng/messages.po,265,656,704,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/extensions/messages.po,663,2099,2074,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/extras/source/autocorr/emoji.po,1575,1817,1816,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/extras/source/gallery/share.po,12,15,14,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/filter/messages.po,222,818,829,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/filter/source/config/fragments/filters.po,220,732,714,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/filter/source/config/fragments/internalgraphicfilters.po,38,139,142,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/filter/source/config/fragments/types.po,38,121,121,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/forms/messages.po,58,330,359,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/formula/messages.po,437,513,558,0,0,0,0,437,513,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/fpicker/messages.po,61,163,145,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/framework/messages.po,29,210,240,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/librelogo/source/pythonpath.po,138,173,172,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,28,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/nlpsolver/src/locale.po,41,105,113,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/officecfg/registry/data/org/openoffice.po,9,28,29,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/officecfg/registry/data/org/openoffice/office.po,1308,1841,1878,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/readlicense_oo/docs.po,103,2403,2538,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,21,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/reportdesign/messages.po,258,617,631,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/sc/messages.po,4686,20260,20352,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/scaddins/messages.po,901,3188,3396,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/sccomp/messages.po,14,65,73,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/scp2/source/activex.po,2,16,21,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/scp2/source/base.po,10,44,48,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/scp2/source/calc.po,22,94,97,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/scp2/source/draw.po,41,149,152,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/scp2/source/extensions.po,16,65,69,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/scp2/source/gnome.po,2,11,11,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/scp2/source/graphicfilter.po,30,101,106,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/scp2/source/impress.po,21,81,83,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/scp2/source/math.po,10,42,44,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/scp2/source/onlineupdate.po,2,13,15,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/scp2/source/python.po,2,7,7,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/scp2/source/quickstart.po,2,15,18,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/scp2/source/winexplorerext.po,2,18,18,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/scp2/source/writer.po,27,114,113,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/sd/messages.po,1319,2951,3007,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/sfx2/messages.po,581,2226,2277,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/starmath/messages.po,505,968,991,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/svtools/messages.po,914,2611,2671,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/svx/messages.po,2846,7224,7299,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/sw/messages.po,3439,7738,7848,0,0,0,0,3439,7738,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/swext/mediawiki/help.po,89,1404,1514,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,180,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/sysui/desktop/share.po,66,277,282,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/uui/messages.po,157,1554,1644,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/vcl/messages.po,356,737,765,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/wizards/messages.po,265,1042,1028,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/wizards/source/resources.po,554,2286,2333,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/writerperfect/messages.po,30,65,63,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/xmlsecurity/messages.po,91,424,445,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/accessibility/messages.po,11,27,31,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/avmedia/messages.po,22,45,49,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/basctl/messages.po,155,611,689,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/basic/messages.po,135,549,671,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/chart2/messages.po,620,1368,1525,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/connectivity/messages.po,106,1047,1057,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,3,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/cui/messages.po,2342,5554,6342,0,0,1,4,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dbaccess/messages.po,812,4510,4918,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/desktop/messages.po,162,1225,1426,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/en/dialog.po,37,176,191,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/hu_hu/dialog.po,32,71,86,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/ru_ru/dialog.po,14,26,28,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/editeng/messages.po,265,656,742,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/extensions/messages.po,663,2099,2310,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/extras/source/autocorr/emoji.po,1575,1817,1988,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/extras/source/gallery/share.po,12,15,15,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/filter/messages.po,222,818,900,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/filter/source/config/fragments/filters.po,220,732,729,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/filter/source/config/fragments/internalgraphicfilters.po,38,139,143,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/filter/source/config/fragments/types.po,38,121,121,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/forms/messages.po,58,330,366,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/formula/messages.po,438,514,514,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/fpicker/messages.po,61,163,193,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/framework/messages.po,29,210,244,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/librelogo/source/pythonpath.po,138,173,182,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,25,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/nlpsolver/src/locale.po,41,105,124,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/officecfg/registry/data/org/openoffice.po,9,28,29,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/officecfg/registry/data/org/openoffice/office.po,1308,1841,1916,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/readlicense_oo/docs.po,103,2403,2618,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,21,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/reportdesign/messages.po,258,617,682,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/sc/messages.po,4658,20081,20103,0,0,28,179,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/scaddins/messages.po,901,3188,3033,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/sccomp/messages.po,14,65,75,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/scp2/source/activex.po,2,16,19,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/scp2/source/base.po,10,44,50,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/scp2/source/calc.po,22,94,109,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/scp2/source/draw.po,41,149,159,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/scp2/source/extensions.po,16,65,73,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/scp2/source/gnome.po,2,11,9,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/scp2/source/graphicfilter.po,30,101,108,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/scp2/source/impress.po,21,81,88,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/scp2/source/math.po,10,42,49,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/scp2/source/onlineupdate.po,2,13,19,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/scp2/source/quickstart.po,2,15,16,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/scp2/source/winexplorerext.po,2,18,18,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/scp2/source/writer.po,27,114,111,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/sd/messages.po,1315,2947,3390,0,0,4,4,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/sfx2/messages.po,577,2096,2402,0,0,4,130,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/starmath/messages.po,505,968,1063,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/svtools/messages.po,889,2512,2824,0,0,25,99,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/svx/messages.po,2814,7147,7821,0,0,32,77,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/sw/messages.po,3419,7495,8487,0,0,22,245,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/swext/mediawiki/help.po,89,1404,1491,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,182,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/sysui/desktop/share.po,66,277,283,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/uui/messages.po,157,1554,1785,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/vcl/messages.po,356,737,806,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/wizards/messages.po,265,1042,1190,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/wizards/source/resources.po,554,2286,2443,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/writerperfect/messages.po,30,65,66,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/xmlsecurity/messages.po,91,424,475,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/accessibility/messages.po,11,27,32,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/avmedia/messages.po,22,45,60,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/basctl/messages.po,155,611,817,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/basic/messages.po,135,549,817,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/chart2/messages.po,618,1364,1786,0,0,2,4,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/connectivity/messages.po,106,1047,1276,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,3,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/cui/messages.po,2337,5529,7079,0,0,6,29,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dbaccess/messages.po,812,4510,5497,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/desktop/messages.po,162,1225,1685,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/en/dialog.po,37,176,235,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/hu_hu/dialog.po,32,71,94,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/pt_br/dialog.po,2,5,4,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/ru_ru/dialog.po,14,26,28,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/editeng/messages.po,265,656,835,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/extensions/messages.po,663,2099,2591,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/extensions/source/update/check/org/openoffice/office.po,1,3,4,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/extras/source/autocorr/emoji.po,1575,1817,2548,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/extras/source/gallery/share.po,12,15,15,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/filter/messages.po,222,818,1026,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/filter/source/config/fragments/filters.po,220,732,734,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/filter/source/config/fragments/internalgraphicfilters.po,38,139,139,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/filter/source/config/fragments/types.po,38,121,119,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/forms/messages.po,58,330,440,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/formula/messages.po,438,514,524,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/fpicker/messages.po,61,163,205,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/framework/messages.po,29,210,262,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/librelogo/source/pythonpath.po,138,173,214,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,21,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/nlpsolver/src/locale.po,41,105,109,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/officecfg/registry/data/org/openoffice.po,9,28,28,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/officecfg/registry/data/org/openoffice/office.po,1308,1841,1951,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/readlicense_oo/docs.po,103,2403,2756,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,22,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/reportdesign/messages.po,258,617,816,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/sc/messages.po,4645,20163,23180,0,0,41,97,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/scaddins/messages.po,901,3188,3398,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/sccomp/messages.po,14,65,93,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/scp2/source/activex.po,2,16,21,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/scp2/source/base.po,10,44,49,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/scp2/source/calc.po,22,94,101,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/scp2/source/draw.po,41,149,147,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/scp2/source/extensions.po,16,65,71,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/scp2/source/gnome.po,2,11,11,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/scp2/source/graphicfilter.po,30,101,105,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/scp2/source/impress.po,21,81,77,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/scp2/source/math.po,10,42,42,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/scp2/source/onlineupdate.po,2,13,13,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/scp2/source/python.po,2,7,7,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/scp2/source/quickstart.po,2,15,20,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/scp2/source/winexplorerext.po,2,18,19,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/scp2/source/writer.po,27,114,111,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/sd/messages.po,1217,2836,3688,0,0,102,115,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/sfx2/messages.po,577,2096,2682,0,0,4,130,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/starmath/messages.po,505,968,1223,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/svtools/messages.po,914,2611,3092,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/svx/messages.po,2846,7224,8859,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/sw/messages.po,3398,7691,9808,0,0,42,48,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/swext/mediawiki/help.po,89,1404,1404,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,208,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/sysui/desktop/share.po,66,277,276,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/uui/messages.po,157,1554,1994,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/vcl/messages.po,354,731,893,0,0,2,6,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/wizards/messages.po,265,1042,1270,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/wizards/source/resources.po,554,2286,2773,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/writerperfect/messages.po,30,65,66,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/xmlsecurity/messages.po,91,424,576,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/accessibility/messages.po,11,27,29,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/avmedia/messages.po,22,45,51,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/basctl/messages.po,155,611,658,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/basic/messages.po,135,549,677,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/chart2/messages.po,620,1368,1659,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/connectivity/messages.po,106,1047,1147,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,3,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,5,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,4,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,6,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,5,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,3,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,3,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/cui/messages.po,2343,5558,6492,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dbaccess/messages.po,812,4510,5017,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/desktop/messages.po,162,1225,1312,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/en/dialog.po,37,176,190,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/hu_hu/dialog.po,32,71,78,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/pt_br/dialog.po,2,5,6,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/ru_ru/dialog.po,14,26,28,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/editeng/messages.po,265,656,737,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/extensions/messages.po,663,2099,2266,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/extras/source/autocorr/emoji.po,1575,1817,2243,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/extras/source/gallery/share.po,12,15,16,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/filter/messages.po,222,818,930,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/filter/source/config/fragments/filters.po,220,732,901,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/filter/source/config/fragments/internalgraphicfilters.po,38,139,160,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/filter/source/config/fragments/types.po,38,121,164,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/forms/messages.po,58,330,357,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/formula/messages.po,438,514,529,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/fpicker/messages.po,61,163,185,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/framework/messages.po,29,210,235,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/auxiliary.po,105,302,373,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/sbasic/guide.po,103,1345,1513,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/sbasic/shared.po,2996,18317,18895,0,0,1509,17114,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/scalc.po,187,986,1087,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/scalc/guide.po,319,3636,3721,0,0,1150,17957,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/schart.po,96,931,1004,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/sdraw.po,123,732,752,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/sdraw/guide.po,275,3072,3140,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/shared.po,250,2308,2361,0,0,0,0,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/shared/autokorr.po,48,420,320,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/shared/autopi.po,735,6177,6231,0,0,152,2217,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/shared/explorer/database.po,1280,10734,11512,0,0,361,8123,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/shared/guide.po,1808,23199,23819,0,0,708,13244,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/shared/help.po,76,109,119,0,0,2,8,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/shared/menu.po,16,120,129,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/shared/optionen.po,1243,9914,10599,0,0,691,13437,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/simpress.po,199,1395,1490,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/simpress/guide.po,582,7180,7431,0,0,185,3102,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/smath.po,59,722,740,0,0,1,17,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/smath/guide.po,104,1193,1174,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/swriter.po,336,2946,3132,0,0,0,0,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/swriter/guide.po,1977,24685,26463,0,0,167,3252,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/swriter/librelogo.po,306,2429,2609,8,421,12,169,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/helpcontent2/source/text/swriter/menu.po,17,96,112,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/librelogo/source/pythonpath.po,138,173,189,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,25,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/nlpsolver/src/locale.po,41,105,129,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/officecfg/registry/data/org/openoffice.po,9,28,40,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/officecfg/registry/data/org/openoffice/office.po,1308,1841,1937,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/readlicense_oo/docs.po,103,2403,2492,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,18,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/reportdesign/messages.po,258,617,685,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/sc/messages.po,4686,20260,20989,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/scaddins/messages.po,901,3188,3251,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/sccomp/messages.po,14,65,82,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/scp2/source/activex.po,2,16,22,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/scp2/source/base.po,10,44,52,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/scp2/source/calc.po,22,94,130,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/scp2/source/draw.po,41,149,155,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/scp2/source/extensions.po,16,65,81,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/scp2/source/gnome.po,2,11,14,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/scp2/source/graphicfilter.po,30,101,141,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/scp2/source/impress.po,21,81,99,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/scp2/source/math.po,10,42,43,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/scp2/source/onlineupdate.po,2,13,15,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/scp2/source/python.po,2,7,10,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/scp2/source/quickstart.po,2,15,18,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/scp2/source/winexplorerext.po,2,18,20,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/scp2/source/writer.po,27,114,144,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/scp2/source/xsltfilter.po,2,6,8,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/sd/messages.po,1319,2951,3370,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/sfx2/messages.po,581,2226,2420,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/starmath/messages.po,505,968,1107,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/svtools/messages.po,914,2611,2948,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/svx/messages.po,2846,7224,8183,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/sw/messages.po,3441,7740,9133,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/swext/mediawiki/help.po,89,1404,1496,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,179,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/sysui/desktop/share.po,66,277,379,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/uui/messages.po,157,1554,1647,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/vcl/messages.po,356,737,840,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/wizards/messages.po,265,1042,1128,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/wizards/source/resources.po,554,2286,2369,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/writerperfect/messages.po,30,65,87,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/xmlsecurity/messages.po,91,424,468,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/accessibility/messages.po,11,27,33,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/avmedia/messages.po,19,36,37,1,4,2,5,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/basctl/messages.po,132,540,560,21,39,2,32,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/basic/messages.po,18,52,59,117,497,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/chart2/messages.po,523,1118,1340,70,151,27,99,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/connectivity/messages.po,104,1017,998,0,0,2,30,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,6,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/cui/messages.po,1544,3659,4284,536,1088,263,811,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dbaccess/messages.po,572,3189,3114,212,1192,28,129,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/desktop/messages.po,128,707,768,24,393,10,125,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/en/dialog.po,37,176,180,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/hu_hu/dialog.po,32,71,72,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/ru_ru/dialog.po,13,25,24,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/editeng/messages.po,256,635,682,5,10,4,11,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/extensions/messages.po,437,1356,1456,192,627,34,116,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/extras/source/autocorr/emoji.po,56,49,49,203,200,1316,1568,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/extras/source/gallery/share.po,11,14,14,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/filter/messages.po,164,621,719,36,97,22,100,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/filter/source/config/fragments/filters.po,138,466,471,18,73,64,193,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/filter/source/config/fragments/internalgraphicfilters.po,38,139,139,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/filter/source/config/fragments/types.po,21,66,66,3,13,14,42,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/forms/messages.po,57,321,309,0,0,1,9,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/formula/messages.po,390,438,446,19,25,28,50,437,513,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/fpicker/messages.po,30,87,117,20,44,11,32,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/framework/messages.po,21,193,221,6,14,2,3,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/auxiliary.po,15,20,20,0,0,90,282,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/sbasic/guide.po,50,595,596,0,0,53,750,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/sbasic/shared.po,3047,26465,26490,0,0,1458,8966,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/scalc.po,165,768,746,0,0,22,218,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/scalc/guide.po,1029,13866,13788,0,0,440,7727,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/schart.po,14,140,141,0,0,82,791,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/sdraw.po,115,687,684,0,0,8,45,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/sdraw/guide.po,236,2489,2485,0,0,39,583,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/shared.po,176,1661,1668,0,0,74,647,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/shared/autokorr.po,21,261,261,0,0,27,159,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/shared/autopi.po,615,5632,5618,0,0,272,2762,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/shared/explorer/database.po,1084,9697,9694,0,0,557,9160,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/shared/guide.po,1515,20289,20259,0,0,1001,16154,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/shared/optionen.po,1029,8043,8085,0,0,905,15308,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/simpress.po,167,1125,1130,0,0,32,270,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/simpress/guide.po,430,4915,4894,0,0,337,5367,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/smath.po,54,597,594,0,0,6,142,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/smath/guide.po,64,643,643,0,0,40,550,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/swriter.po,198,1014,1020,0,0,138,1932,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/swriter/guide.po,1379,15398,15031,0,0,765,12539,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/swriter/librelogo.po,30,31,31,1,1,295,2987,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/librelogo/source/pythonpath.po,134,167,180,2,4,2,2,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,23,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/nlpsolver/src/locale.po,41,105,108,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/officecfg/registry/data/org/openoffice.po,5,16,16,1,3,3,9,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/officecfg/registry/data/org/openoffice/office.po,1272,1712,2222,10,52,26,77,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/readlicense_oo/docs.po,84,1637,1652,1,85,18,681,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,16,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/reportdesign/messages.po,202,492,517,53,122,3,3,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/sc/messages.po,3241,14415,12770,769,2307,676,3538,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/scaddins/messages.po,878,3026,2477,15,31,8,131,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/sccomp/messages.po,12,51,54,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/scp2/source/base.po,10,44,51,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/scp2/source/calc.po,19,81,83,1,4,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/scp2/source/draw.po,37,131,136,2,9,2,9,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/scp2/source/extensions.po,16,65,75,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/scp2/source/graphicfilter.po,30,101,102,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/scp2/source/impress.po,20,77,79,1,4,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/scp2/source/math.po,10,42,44,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/scp2/source/onlineupdate.po,2,13,14,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/scp2/source/python.po,2,7,6,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/scp2/source/quickstart.po,2,15,17,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/scp2/source/winexplorerext.po,2,18,20,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/scp2/source/writer.po,24,88,86,1,17,2,9,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/sd/messages.po,734,1787,2065,287,556,298,608,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/sfx2/messages.po,318,974,1111,130,465,133,787,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/starmath/messages.po,370,642,697,71,116,61,207,502,965,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/svtools/messages.po,765,1972,2054,54,348,95,291,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/svx/messages.po,1993,4779,5159,478,1147,375,1298,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/sw/messages.po,2302,4852,5653,674,1542,465,1346,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/swext/mediawiki/help.po,47,353,383,26,817,16,234,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,4,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,196,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/sysui/desktop/share.po,66,277,268,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/uui/messages.po,131,1115,1187,9,123,17,316,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/vcl/messages.po,254,498,574,9,11,93,228,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/wizards/messages.po,265,1042,1093,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/wizards/source/resources.po,487,1992,2033,59,233,8,61,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/writerperfect/messages.po,1,2,2,5,9,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/xmlsecurity/messages.po,67,331,366,7,27,17,66,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/accessibility/messages.po,9,23,21,2,4,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/avmedia/messages.po,21,44,42,1,1,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/basctl/messages.po,128,572,477,27,39,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/basic/messages.po,135,549,527,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/chart2/messages.po,346,537,633,84,183,190,648,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/connectivity/messages.po,4,27,22,3,16,99,1004,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,3,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,3,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/cui/messages.po,2129,4927,5018,46,106,168,525,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dbaccess/messages.po,307,498,560,59,174,446,3838,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/desktop/messages.po,38,58,57,8,15,116,1152,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/en/dialog.po,18,68,71,0,0,19,108,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/en/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/hu_hu/dialog.po,14,18,16,1,2,17,51,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/ru_ru/dialog.po,5,6,7,0,0,9,20,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/editeng/messages.po,151,277,308,25,77,89,302,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/extensions/messages.po,329,480,542,103,181,231,1438,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/extras/source/autocorr/emoji.po,457,475,473,128,141,990,1201,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/extras/source/gallery/share.po,11,14,15,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/filter/messages.po,103,168,193,8,23,111,627,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/filter/source/config/fragments/filters.po,159,548,609,2,6,59,178,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/filter/source/config/fragments/internalgraphicfilters.po,36,133,158,0,0,2,6,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/filter/source/config/fragments/types.po,26,90,104,0,0,12,31,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/forms/messages.po,18,27,29,1,1,39,302,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/formula/messages.po,402,456,552,7,7,24,44,433,507,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/fpicker/messages.po,50,133,121,4,6,7,24,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/framework/messages.po,22,194,173,3,6,4,10,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/librelogo/source/pythonpath.po,126,143,157,2,6,10,24,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/nlpsolver/src/locale.po,12,13,14,2,2,27,90,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/officecfg/registry/data/org/openoffice.po,8,25,29,0,0,1,3,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/officecfg/registry/data/org/openoffice/office.po,1299,1825,1874,1,4,8,12,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/readlicense_oo/docs.po,4,11,11,1,1,98,2391,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,15,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/reportdesign/messages.po,137,214,238,50,102,71,301,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/sc/messages.po,3934,17476,15816,422,1287,330,1497,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/scaddins/messages.po,315,496,470,65,214,521,2478,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/sccomp/messages.po,12,51,53,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/scp2/source/activex.po,0,0,0,0,0,2,16,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/scp2/source/base.po,9,36,39,0,0,1,8,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/scp2/source/calc.po,18,60,74,1,13,3,21,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/scp2/source/draw.po,33,111,105,2,16,6,22,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/scp2/source/extensions.po,3,5,5,2,8,11,52,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/scp2/source/graphicfilter.po,9,21,25,1,4,20,76,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/scp2/source/impress.po,19,63,64,1,14,1,4,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/scp2/source/math.po,9,31,31,1,11,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/scp2/source/onlineupdate.po,1,2,4,0,0,1,11,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/scp2/source/python.po,1,1,1,0,0,1,6,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/scp2/source/quickstart.po,1,1,1,0,0,1,14,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/scp2/source/winexplorerext.po,1,3,4,0,0,1,15,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/scp2/source/writer.po,23,83,84,2,20,2,11,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/sd/messages.po,1023,2422,2303,95,210,201,319,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/sfx2/messages.po,340,722,708,48,106,193,1398,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/starmath/messages.po,455,822,870,17,31,33,115,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/svtools/messages.po,624,1132,1198,47,175,243,1304,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/svx/messages.po,1170,1828,1959,399,865,1277,4531,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/sw/messages.po,3065,6710,6736,118,356,256,670,3439,7736,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/swext/mediawiki/help.po,28,54,63,1,5,60,1345,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,18,25,27,2,2,12,154,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/sysui/desktop/share.po,65,259,291,0,0,1,18,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/uui/messages.po,53,160,136,2,32,102,1362,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/vcl/messages.po,238,392,412,9,11,109,334,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/wizards/messages.po,87,115,131,27,36,151,891,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/wizards/source/resources.po,166,245,285,60,121,328,1920,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/writerperfect/messages.po,4,6,6,2,5,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/xmlsecurity/messages.po,25,40,44,9,15,57,369,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/accessibility/messages.po,11,27,27,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/avmedia/messages.po,22,45,41,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/basctl/messages.po,135,457,421,7,29,13,125,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/basic/messages.po,47,147,148,88,402,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/chart2/messages.po,528,1144,1148,40,64,52,160,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/connectivity/messages.po,105,1033,868,0,0,1,14,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,8,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,6,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,4,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,6,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/cui/messages.po,1411,3325,3270,507,943,425,1290,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dbaccess/messages.po,606,3346,2883,126,825,80,339,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/desktop/messages.po,142,815,752,13,281,7,129,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/en/dialog.po,37,176,176,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/hu_hu/dialog.po,32,71,82,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/ru_ru/dialog.po,13,25,26,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/editeng/messages.po,265,656,697,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/extensions/messages.po,481,1184,1192,152,701,30,214,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/extras/source/autocorr/emoji.po,505,559,612,156,159,914,1099,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/extras/source/gallery/share.po,11,14,14,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/filter/messages.po,152,477,451,16,52,54,289,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/filter/source/config/fragments/filters.po,106,376,399,18,65,96,291,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/filter/source/config/fragments/internalgraphicfilters.po,35,127,130,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/filter/source/config/fragments/types.po,22,71,76,2,8,14,42,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/forms/messages.po,58,330,285,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/formula/messages.po,437,513,514,0,0,1,1,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/fpicker/messages.po,57,155,135,1,4,3,4,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/framework/messages.po,29,210,192,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/auxiliary.po,77,215,191,0,0,28,87,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/sbasic/guide.po,46,522,527,0,0,57,823,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/sbasic/shared.po,3107,24937,25070,0,0,1398,10494,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/scalc.po,119,407,339,0,0,68,579,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/scalc/guide.po,1009,15264,15138,0,0,460,6329,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/schart.po,16,144,145,0,0,80,787,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/sdraw.po,56,589,584,0,0,67,143,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/sdraw/guide.po,215,2464,2482,0,0,60,608,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/shared.po,96,659,672,0,0,154,1649,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/shared/autokorr.po,36,198,197,0,0,12,222,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/shared/autopi.po,454,3446,3443,0,0,433,4948,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/shared/explorer/database.po,772,5408,5406,0,0,869,13449,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/shared/guide.po,1405,19967,19999,0,0,1111,16476,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/shared/optionen.po,872,6175,6151,0,0,1062,17176,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/simpress.po,109,823,806,0,0,90,572,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/simpress/guide.po,454,5635,5576,0,0,313,4647,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/smath.po,46,469,466,0,0,14,270,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/smath/guide.po,56,622,621,0,0,48,571,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/swriter.po,120,347,315,0,0,216,2599,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/swriter/guide.po,1499,18772,18213,0,0,645,9165,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/swriter/librelogo.po,38,39,40,1,1,287,2979,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/librelogo/source/pythonpath.po,138,173,177,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,20,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/nlpsolver/src/locale.po,41,105,105,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/officecfg/registry/data/org/openoffice/office.po,1243,1431,1451,7,24,58,386,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/readlicense_oo/docs.po,84,1629,1379,1,85,18,689,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,16,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/reportdesign/messages.po,252,585,565,6,32,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/sc/messages.po,2831,13340,10512,885,2497,970,4423,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/scaddins/messages.po,841,2631,2235,14,18,46,539,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/sccomp/messages.po,12,51,47,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/scp2/source/activex.po,2,16,17,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/scp2/source/base.po,10,44,47,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/scp2/source/calc.po,21,89,100,0,0,1,5,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/scp2/source/draw.po,36,130,151,1,4,4,15,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/scp2/source/extensions.po,16,65,68,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/scp2/source/graphicfilter.po,30,101,104,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/scp2/source/impress.po,19,74,69,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/scp2/source/math.po,10,42,37,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/scp2/source/python.po,2,7,9,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/scp2/source/quickstart.po,2,15,17,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/scp2/source/writer.po,24,88,81,1,17,2,9,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/sd/messages.po,681,1663,1605,278,515,360,773,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/sfx2/messages.po,436,1223,1123,48,308,97,695,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/starmath/messages.po,418,704,744,23,45,64,219,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/svtools/messages.po,780,1965,1965,33,229,101,417,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/svx/messages.po,1839,4297,4324,445,988,562,1939,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/sw/messages.po,2068,3986,4165,714,1525,659,2229,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/swext/mediawiki/help.po,48,384,322,25,786,16,234,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,4,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,155,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/sysui/desktop/share.po,66,277,284,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/uui/messages.po,136,1148,977,8,120,13,286,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/vcl/messages.po,269,521,509,0,0,87,216,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/wizards/messages.po,261,1037,881,4,5,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/wizards/source/resources.po,488,1992,1671,58,233,8,61,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/writerperfect/messages.po,15,40,40,0,0,15,25,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/xmlsecurity/messages.po,88,420,373,0,0,3,4,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/accessibility/messages.po,10,26,27,0,0,1,1,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/avmedia/messages.po,22,45,46,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/basctl/messages.po,76,232,277,30,49,49,330,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/basic/messages.po,18,52,66,117,497,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/chart2/messages.po,261,556,605,168,289,191,523,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/connectivity/messages.po,102,990,1095,0,0,4,57,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/cui/messages.po,1082,2418,2911,627,1176,634,1964,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dbaccess/messages.po,463,2828,3152,233,1237,116,445,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/desktop/messages.po,104,625,756,37,404,21,196,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/en/dialog.po,37,176,187,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/hu_hu/dialog.po,32,71,82,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/ru_ru/dialog.po,13,25,29,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/editeng/messages.po,248,608,710,5,8,12,40,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/extensions/messages.po,427,1094,1273,196,779,40,226,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/extras/source/autocorr/emoji.po,48,48,48,208,197,1319,1572,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/extras/source/gallery/share.po,9,11,11,1,2,2,2,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/filter/messages.po,82,283,327,31,71,109,464,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/filter/source/config/fragments/filters.po,93,324,326,10,29,117,379,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/filter/source/config/fragments/internalgraphicfilters.po,35,127,127,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/filter/source/config/fragments/types.po,21,66,67,3,13,14,42,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/forms/messages.po,54,314,354,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/formula/messages.po,318,321,323,57,83,63,110,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/fpicker/messages.po,31,88,117,18,42,12,33,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/framework/messages.po,18,167,196,6,14,5,29,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/auxiliary.po,15,20,32,0,0,90,282,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/sbasic/guide.po,15,106,100,0,0,88,1239,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/sbasic/shared.po,1477,5102,5452,0,0,3028,30329,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/scalc.po,39,257,337,0,0,148,729,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/scalc/guide.po,323,2189,2438,0,0,1146,19404,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/schart.po,11,130,146,0,0,85,801,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/sdraw.po,40,440,524,0,0,83,292,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/sdraw/guide.po,81,470,559,0,0,194,2602,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/shared.po,58,300,352,0,0,192,2008,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/shared/autokorr.po,11,97,110,0,0,37,323,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/shared/autopi.po,285,1171,1316,0,0,602,7223,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/shared/explorer/database.po,474,1462,1580,0,0,1167,17395,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/shared/guide.po,555,4330,4794,0,0,1961,32113,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/shared/optionen.po,616,1941,2269,0,0,1318,21410,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/simpress.po,55,647,775,0,0,144,748,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/simpress/guide.po,141,904,992,0,0,626,9378,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/smath.po,28,354,446,0,0,32,385,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/smath/guide.po,37,261,302,0,0,67,932,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/swriter.po,70,224,256,0,0,266,2722,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/swriter/guide.po,425,3250,3630,0,0,1719,24687,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/swriter/librelogo.po,7,8,9,0,0,319,3011,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/librelogo/source/pythonpath.po,130,165,183,2,4,6,4,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,29,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/nlpsolver/src/locale.po,41,105,116,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/officecfg/registry/data/org/openoffice/office.po,1237,1424,1675,7,22,64,395,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/readlicense_oo/docs.po,73,1381,1553,1,85,29,937,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,23,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/reportdesign/messages.po,184,444,490,61,137,13,36,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/sc/messages.po,2725,12821,13173,850,2438,1111,5001,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/scaddins/messages.po,835,2579,2365,14,18,52,591,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/sccomp/messages.po,11,47,53,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/scp2/source/base.po,10,44,52,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/scp2/source/calc.po,19,81,98,1,4,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/scp2/source/draw.po,15,60,60,1,5,25,84,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/scp2/source/extensions.po,15,51,57,0,0,1,14,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/scp2/source/graphicfilter.po,28,91,91,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/scp2/source/impress.po,19,74,86,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/scp2/source/math.po,10,42,47,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/scp2/source/onlineupdate.po,2,13,15,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/scp2/source/quickstart.po,2,15,24,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/scp2/source/winexplorerext.po,2,18,23,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/scp2/source/writer.po,22,69,73,0,0,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/sd/messages.po,526,1306,1501,323,585,470,1060,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/sfx2/messages.po,243,694,811,150,497,188,1035,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/starmath/messages.po,315,537,570,88,130,99,298,502,965,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/svtools/messages.po,702,1775,1899,58,260,154,576,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/svx/messages.po,1786,4033,4488,504,1214,556,1977,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/sw/messages.po,2053,4084,4847,724,1593,661,2059,3438,7736,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/swext/mediawiki/help.po,47,353,393,25,752,17,299,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,195,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/sysui/desktop/share.po,54,210,238,2,20,10,47,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/uui/messages.po,99,938,1106,20,164,38,452,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/vcl/messages.po,199,338,417,23,65,134,334,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/wizards/messages.po,262,1039,1165,2,2,1,1,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/wizards/source/resources.po,502,2004,2232,40,202,12,80,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/writerperfect/messages.po,2,3,3,4,8,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/xmlsecurity/messages.po,48,204,237,23,144,20,76,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/accessibility/messages.po,11,27,24,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/avmedia/messages.po,22,45,46,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/basctl/messages.po,155,611,558,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/basic/messages.po,135,549,569,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/chart2/messages.po,618,1364,1361,0,0,2,4,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/connectivity/messages.po,106,1047,904,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,3,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/cui/messages.po,2311,5479,5386,0,0,32,79,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dbaccess/messages.po,812,4510,4029,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/desktop/messages.po,162,1225,1067,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/en/dialog.po,37,176,185,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/hu_hu/dialog.po,32,71,71,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/ru_ru/dialog.po,13,25,26,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/editeng/messages.po,265,656,668,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/extensions/messages.po,663,2099,1929,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/extras/source/autocorr/emoji.po,1575,1817,1870,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/extras/source/gallery/share.po,12,15,15,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/filter/messages.po,222,818,798,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/filter/source/config/fragments/filters.po,220,732,757,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/filter/source/config/fragments/internalgraphicfilters.po,38,139,139,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/filter/source/config/fragments/types.po,38,121,128,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/forms/messages.po,58,330,290,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/formula/messages.po,437,513,514,0,0,1,1,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/fpicker/messages.po,61,163,157,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/framework/messages.po,29,210,194,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/auxiliary.po,65,173,181,0,0,40,129,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/sbasic/guide.po,48,468,402,0,0,55,877,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/sbasic/shared.po,2141,12366,11160,0,0,2364,23065,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/scalc.po,21,30,38,0,0,166,956,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/scalc/guide.po,88,359,337,0,0,1381,21234,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/schart.po,8,18,18,0,0,88,913,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/sdraw.po,11,12,14,0,0,112,720,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/sdraw/guide.po,14,73,59,0,0,261,2999,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/shared.po,149,511,467,0,0,101,1797,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/shared/autokorr.po,0,0,0,0,0,48,420,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/shared/autopi.po,216,464,453,0,0,671,7930,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/shared/explorer/database.po,488,1092,929,0,0,1153,17765,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/shared/guide.po,137,554,519,0,0,2379,35889,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/shared/optionen.po,509,1106,1116,0,0,1425,22245,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/simpress.po,18,24,26,0,0,181,1371,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/simpress/guide.po,33,151,137,0,0,734,10131,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/smath.po,9,10,11,0,0,51,729,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/smath/guide.po,9,28,25,0,0,95,1165,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/swriter.po,142,494,457,0,0,194,2452,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/swriter/guide.po,468,3801,3271,0,0,1676,24136,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/swriter/librelogo.po,33,34,34,0,0,293,2985,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/librelogo/source/pythonpath.po,138,173,205,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,19,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/nlpsolver/src/locale.po,41,105,107,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/officecfg/registry/data/org/openoffice.po,9,28,29,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/officecfg/registry/data/org/openoffice/office.po,1304,1835,2264,0,0,4,6,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/readlicense_oo/docs.po,102,2343,2002,0,0,1,60,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,15,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/reportdesign/messages.po,258,617,590,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/sc/messages.po,4607,20058,17077,0,0,79,202,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/scaddins/messages.po,901,3188,3038,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/sccomp/messages.po,14,65,64,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/scp2/source/activex.po,2,16,17,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/scp2/source/base.po,10,44,43,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/scp2/source/calc.po,22,94,102,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/scp2/source/draw.po,41,149,144,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/scp2/source/extensions.po,16,65,65,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/scp2/source/graphicfilter.po,30,101,102,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/scp2/source/impress.po,21,81,79,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/scp2/source/math.po,10,42,37,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/scp2/source/quickstart.po,2,15,13,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/scp2/source/winexplorerext.po,2,18,20,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/scp2/source/writer.po,27,114,112,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/scp2/source/xsltfilter.po,2,6,8,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/sd/messages.po,1188,2801,2722,0,0,131,150,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/sfx2/messages.po,576,2093,1976,0,0,5,133,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/starmath/messages.po,505,968,932,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/svtools/messages.po,911,2605,2554,0,0,3,6,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/svx/messages.po,2801,7124,6917,0,0,45,100,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/sw/messages.po,3360,7618,7562,0,0,81,122,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/swext/mediawiki/help.po,75,1191,1030,0,0,14,213,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,144,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/sysui/desktop/share.po,66,277,289,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/uui/messages.po,157,1554,1337,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/vcl/messages.po,319,638,635,0,0,37,99,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/wizards/messages.po,265,1042,939,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/wizards/source/resources.po,554,2286,2026,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/writerperfect/messages.po,30,65,70,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/xmlsecurity/messages.po,91,424,375,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/accessibility/messages.po,11,27,25,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/avmedia/messages.po,22,45,41,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/basctl/messages.po,155,611,556,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/basic/messages.po,135,549,560,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/chart2/messages.po,620,1368,1337,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/connectivity/messages.po,106,1047,839,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,6,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,1,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/cui/messages.po,2343,5558,5392,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dbaccess/messages.po,812,4510,4015,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/desktop/messages.po,162,1225,1186,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/en/dialog.po,37,176,171,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/hu_hu/dialog.po,32,71,67,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/ru_ru/dialog.po,14,26,25,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/editeng/messages.po,265,656,655,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/extensions/messages.po,663,2099,1924,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/extras/source/autocorr/emoji.po,1575,1817,2406,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/extras/source/gallery/share.po,12,15,16,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/filter/messages.po,222,818,764,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/filter/source/config/fragments/filters.po,220,732,737,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/filter/source/config/fragments/internalgraphicfilters.po,38,139,139,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/filter/source/config/fragments/types.po,38,121,128,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/forms/messages.po,58,330,300,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/formula/messages.po,438,514,516,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/fpicker/messages.po,61,163,144,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/framework/messages.po,29,210,193,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/librelogo/source/pythonpath.po,138,173,169,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,25,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/nlpsolver/src/locale.po,41,105,110,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/officecfg/registry/data/org/openoffice.po,9,28,29,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/officecfg/registry/data/org/openoffice/office.po,1308,1841,1805,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/readlicense_oo/docs.po,103,2403,2108,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,13,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/reportdesign/messages.po,258,617,589,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/sc/messages.po,4686,20260,17122,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/scaddins/messages.po,901,3188,2583,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/sccomp/messages.po,14,65,60,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/scp2/source/activex.po,2,16,16,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/scp2/source/base.po,10,44,43,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/scp2/source/calc.po,22,94,105,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/scp2/source/draw.po,41,149,148,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/scp2/source/extensions.po,16,65,67,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/scp2/source/gnome.po,2,11,10,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/scp2/source/graphicfilter.po,30,101,118,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/scp2/source/impress.po,21,81,80,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/scp2/source/math.po,10,42,41,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/scp2/source/onlineupdate.po,2,13,11,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/scp2/source/quickstart.po,2,15,16,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/scp2/source/writer.po,27,114,111,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/sd/messages.po,1319,2951,2896,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/sfx2/messages.po,581,2226,2016,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/starmath/messages.po,505,968,1019,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/svtools/messages.po,914,2611,2513,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/svx/messages.po,2846,7224,6927,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/sw/messages.po,3440,7739,7699,0,0,0,0,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/swext/mediawiki/help.po,89,1404,1216,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,141,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/sysui/desktop/share.po,66,277,290,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/uui/messages.po,157,1554,1367,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/vcl/messages.po,356,737,731,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/wizards/messages.po,265,1042,971,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/wizards/source/resources.po,554,2286,1989,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/writerperfect/messages.po,30,65,63,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/xmlsecurity/messages.po,91,424,393,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/accessibility/messages.po,11,27,24,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/avmedia/messages.po,22,45,39,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/basctl/messages.po,155,611,563,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/basic/messages.po,135,549,558,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/chart2/messages.po,620,1368,1176,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/connectivity/messages.po,106,1047,847,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,3,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/cui/messages.po,2343,5558,5015,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dbaccess/messages.po,812,4510,3635,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/desktop/messages.po,162,1225,1129,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/en/dialog.po,37,176,156,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/hu_hu/dialog.po,32,71,68,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/pt_br/dialog.po,2,5,4,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/ru_ru/dialog.po,14,26,23,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/editeng/messages.po,265,656,631,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/extensions/messages.po,663,2099,1677,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/extras/source/autocorr/emoji.po,1575,1817,1621,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/extras/source/gallery/share.po,12,15,15,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/filter/messages.po,222,818,723,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/filter/source/config/fragments/filters.po,220,732,655,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/filter/source/config/fragments/internalgraphicfilters.po,38,139,131,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/filter/source/config/fragments/types.po,38,121,98,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/forms/messages.po,58,330,266,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/formula/messages.po,438,514,580,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/fpicker/messages.po,61,163,130,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/framework/messages.po,29,210,183,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/auxiliary.po,105,302,284,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/sbasic/guide.po,103,1345,1111,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/sbasic/shared.po,4219,32884,29210,0,0,286,2547,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/scalc.po,187,986,871,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/scalc/guide.po,1384,19985,17068,0,0,85,1608,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/schart.po,96,931,783,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/sdraw.po,123,732,640,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/sdraw/guide.po,275,3072,2651,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/shared.po,245,2167,1799,0,0,5,141,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/shared/autokorr.po,48,420,331,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/shared/autopi.po,758,6585,5164,0,0,129,1809,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/shared/explorer/database.po,1519,15579,12529,0,0,122,3278,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/shared/guide.po,2148,30401,25776,0,0,368,6042,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/shared/help.po,59,90,89,0,0,19,27,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/shared/menu.po,16,120,107,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/shared/optionen.po,1715,19101,16188,0,0,219,4250,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/simpress.po,199,1395,1164,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/simpress/guide.po,612,8087,6914,0,0,155,2195,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/smath.po,60,739,599,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/smath/guide.po,104,1193,1063,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/swriter.po,306,2560,2211,0,0,30,386,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/swriter/guide.po,1971,24822,21378,0,0,173,3115,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/swriter/librelogo.po,326,3019,2830,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/helpcontent2/source/text/swriter/menu.po,17,96,79,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/librelogo/source/pythonpath.po,138,173,170,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,17,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/nlpsolver/src/locale.po,41,105,103,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/officecfg/registry/data/org/openoffice.po,9,28,21,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/officecfg/registry/data/org/openoffice/office.po,1308,1841,1732,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/readlicense_oo/docs.po,103,2403,1988,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,11,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/reportdesign/messages.po,258,617,522,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/sc/messages.po,4686,20260,16281,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/scaddins/messages.po,901,3188,2837,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/sccomp/messages.po,14,65,64,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/scp2/source/activex.po,2,16,20,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/scp2/source/base.po,10,44,36,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/scp2/source/calc.po,22,94,81,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/scp2/source/draw.po,41,149,131,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/scp2/source/extensions.po,16,65,52,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/scp2/source/gnome.po,2,11,14,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/scp2/source/graphicfilter.po,30,101,85,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/scp2/source/impress.po,21,81,67,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/scp2/source/math.po,10,42,37,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/scp2/source/onlineupdate.po,2,13,9,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/scp2/source/python.po,2,7,6,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/scp2/source/quickstart.po,2,15,11,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/scp2/source/winexplorerext.po,2,18,17,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/scp2/source/writer.po,27,114,84,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/scp2/source/xsltfilter.po,2,6,2,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/sd/messages.po,1319,2951,2620,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/sfx2/messages.po,581,2226,1914,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/starmath/messages.po,505,968,917,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/svtools/messages.po,914,2611,2386,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/svx/messages.po,2846,7224,6513,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/sw/messages.po,3441,7740,6865,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/swext/mediawiki/help.po,89,1404,1213,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,2,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,138,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/sysui/desktop/share.po,66,277,202,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/uui/messages.po,157,1554,1406,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/vcl/messages.po,356,737,678,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/wizards/messages.po,265,1042,857,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/wizards/source/resources.po,554,2286,1828,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/writerperfect/messages.po,30,65,61,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/xmlsecurity/messages.po,91,424,383,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/accessibility/messages.po,11,27,29,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/avmedia/messages.po,22,45,43,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/basctl/messages.po,155,611,577,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/basic/messages.po,135,549,572,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/chart2/messages.po,620,1368,1393,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/connectivity/messages.po,106,1047,881,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,3,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/cui/messages.po,2343,5558,5618,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dbaccess/messages.po,812,4510,4071,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/desktop/messages.po,162,1225,1107,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/en/dialog.po,37,176,193,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/hu_hu/dialog.po,32,71,76,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/pt_br/dialog.po,2,5,6,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/ru_ru/dialog.po,14,26,29,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/editeng/messages.po,265,656,740,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/extensions/messages.po,663,2099,1961,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/extras/source/autocorr/emoji.po,1575,1817,1989,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/extras/source/gallery/share.po,12,15,16,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/filter/messages.po,222,818,818,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/filter/source/config/fragments/filters.po,220,732,753,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/filter/source/config/fragments/internalgraphicfilters.po,38,139,147,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/filter/source/config/fragments/types.po,38,121,127,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/forms/messages.po,58,330,269,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/formula/messages.po,438,514,514,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/fpicker/messages.po,61,163,148,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/framework/messages.po,29,210,200,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/auxiliary.po,105,302,311,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/sbasic/guide.po,103,1345,1216,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/sbasic/shared.po,4505,35431,31079,0,0,0,0,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/scalc.po,187,986,972,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/scalc/guide.po,1469,21593,18983,0,0,0,0,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/schart.po,96,931,809,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/sdraw.po,123,732,695,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/sdraw/guide.po,275,3072,2811,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/shared.po,250,2308,2133,0,0,0,0,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/shared/autokorr.po,48,420,367,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/shared/autopi.po,887,8394,7249,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/shared/explorer/database.po,1641,18857,16694,0,0,0,0,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/shared/guide.po,2516,36443,32350,0,0,0,0,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/shared/help.po,78,117,116,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/shared/menu.po,16,120,128,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/shared/optionen.po,1934,23351,20898,0,0,0,0,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/simpress.po,199,1395,1230,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/simpress/guide.po,767,10282,9206,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/smath.po,60,739,680,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/smath/guide.po,104,1193,1111,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/swriter.po,336,2946,2738,0,0,0,0,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/swriter/guide.po,2144,27937,24598,0,0,0,0,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/swriter/librelogo.po,326,3019,2932,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/helpcontent2/source/text/swriter/menu.po,17,96,105,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/librelogo/source/pythonpath.po,138,173,178,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,21,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/nlpsolver/src/locale.po,41,105,103,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/officecfg/registry/data/org/openoffice.po,9,28,29,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/officecfg/registry/data/org/openoffice/office.po,1308,1841,1832,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/readlicense_oo/docs.po,103,2403,2210,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,14,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/reportdesign/messages.po,258,617,589,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/sc/messages.po,4686,20260,17159,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/scaddins/messages.po,901,3188,2663,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/sccomp/messages.po,14,65,58,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/scp2/source/activex.po,2,16,18,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/scp2/source/base.po,10,44,42,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/scp2/source/calc.po,22,94,101,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/scp2/source/draw.po,41,149,148,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/scp2/source/extensions.po,16,65,66,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/scp2/source/gnome.po,2,11,11,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/scp2/source/graphicfilter.po,30,101,99,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/scp2/source/impress.po,21,81,74,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/scp2/source/math.po,10,42,35,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/scp2/source/onlineupdate.po,2,13,13,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/scp2/source/quickstart.po,2,15,13,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/scp2/source/winexplorerext.po,2,18,17,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/scp2/source/writer.po,27,114,113,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/sd/messages.po,1319,2951,2925,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/sfx2/messages.po,581,2226,2093,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/starmath/messages.po,505,968,1032,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/svtools/messages.po,914,2611,2551,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/svx/messages.po,2846,7224,7077,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/sw/messages.po,3440,7739,7753,0,0,0,0,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/swext/mediawiki/help.po,89,1404,1273,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,156,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/sysui/desktop/share.po,66,277,279,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/uui/messages.po,157,1554,1404,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/vcl/messages.po,356,737,747,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/wizards/messages.po,265,1042,962,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/wizards/source/resources.po,554,2286,2010,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/writerperfect/messages.po,30,65,68,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/xmlsecurity/messages.po,91,424,414,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/accessibility/messages.po,11,27,27,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/avmedia/messages.po,22,45,42,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/basctl/messages.po,155,611,610,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/basic/messages.po,135,549,578,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/chart2/messages.po,620,1368,1175,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/connectivity/messages.po,106,1047,940,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/cui/messages.po,2343,5558,5409,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dbaccess/messages.po,812,4510,4164,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/desktop/messages.po,162,1225,1271,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/en/dialog.po,37,176,170,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/hu_hu/dialog.po,32,71,77,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/ru_ru/dialog.po,14,26,29,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/editeng/messages.po,265,656,656,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/extensions/messages.po,663,2099,1934,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/extras/source/autocorr/emoji.po,1572,1814,1729,0,0,3,3,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/extras/source/gallery/share.po,12,15,12,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/filter/messages.po,222,818,806,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/filter/source/config/fragments/filters.po,220,732,708,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/filter/source/config/fragments/internalgraphicfilters.po,38,139,138,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/filter/source/config/fragments/types.po,38,121,117,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/forms/messages.po,58,330,322,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/formula/messages.po,438,514,514,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/fpicker/messages.po,61,163,154,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/framework/messages.po,29,210,194,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/auxiliary.po,105,302,292,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/sbasic/guide.po,15,89,88,0,0,88,1256,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/sbasic/shared.po,1863,4727,4669,4,13,2638,30691,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/scalc.po,187,986,884,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/scalc/guide.po,185,468,464,0,0,1284,21125,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/schart.po,96,931,774,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/sdraw.po,123,732,721,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/sdraw/guide.po,275,3072,2957,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/shared.po,245,2167,1937,0,0,5,141,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/shared/autokorr.po,48,420,402,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/shared/autopi.po,338,975,897,0,0,549,7419,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/shared/explorer/database.po,630,1525,1379,0,0,1011,17332,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/shared/guide.po,319,1090,1052,0,0,2197,35353,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/shared/help.po,66,83,91,0,0,12,34,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/shared/optionen.po,728,1593,1487,0,0,1206,21758,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/simpress.po,199,1395,1278,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/simpress/guide.po,77,287,295,0,0,690,9995,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/smath.po,59,722,690,0,0,1,17,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/smath/guide.po,17,65,65,0,0,87,1128,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/swriter.po,274,1744,1569,0,0,62,1202,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/swriter/guide.po,307,897,939,0,0,1837,27040,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/swriter/librelogo.po,39,40,41,1,1,286,2978,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/librelogo/source/pythonpath.po,138,173,175,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,1,4,5,0,0,1,17,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/nlpsolver/src/locale.po,17,18,19,0,0,24,87,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/officecfg/registry/data/org/openoffice.po,9,28,18,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/officecfg/registry/data/org/openoffice/office.po,1308,1841,1809,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/readlicense_oo/docs.po,103,2403,2447,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,15,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/reportdesign/messages.po,258,617,618,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/sc/messages.po,4500,18294,15294,2,30,184,1936,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/scaddins/messages.po,825,2708,2229,2,2,74,478,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/sccomp/messages.po,14,65,73,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/scp2/source/activex.po,2,16,15,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/scp2/source/base.po,10,44,42,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/scp2/source/calc.po,22,94,97,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/scp2/source/draw.po,41,149,151,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/scp2/source/extensions.po,16,65,62,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/scp2/source/gnome.po,2,11,9,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/scp2/source/graphicfilter.po,30,101,83,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/scp2/source/impress.po,21,81,85,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/scp2/source/math.po,10,42,44,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/scp2/source/onlineupdate.po,2,13,13,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/scp2/source/python.po,2,7,7,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/scp2/source/quickstart.po,2,15,14,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/scp2/source/writer.po,27,114,110,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/scp2/source/xsltfilter.po,2,6,4,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/sd/messages.po,1319,2951,2821,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/sfx2/messages.po,581,2226,2220,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/starmath/messages.po,454,790,755,6,18,45,160,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/svtools/messages.po,914,2611,2547,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/svx/messages.po,2846,7224,6626,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/sw/messages.po,3441,7740,7546,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/swext/mediawiki/help.po,89,1404,1344,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,161,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/sysui/desktop/share.po,66,277,291,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/uui/messages.po,157,1554,1552,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/vcl/messages.po,308,604,608,0,0,48,133,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/wizards/messages.po,265,1042,995,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/wizards/source/resources.po,554,2286,2089,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/writerperfect/messages.po,30,65,68,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/xmlsecurity/messages.po,91,424,425,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/accessibility/messages.po,11,27,28,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/avmedia/messages.po,22,45,51,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/basctl/messages.po,155,611,651,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/basic/messages.po,135,549,598,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/chart2/messages.po,620,1368,1560,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/connectivity/messages.po,106,1047,1030,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,4,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/cui/messages.po,2343,5558,6078,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dbaccess/messages.po,812,4510,4656,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/desktop/messages.po,162,1225,1275,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/en/dialog.po,37,176,213,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/hu_hu/dialog.po,32,71,82,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/pt_br/dialog.po,2,5,6,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/ru_ru/dialog.po,14,26,31,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/editeng/messages.po,265,656,720,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/extensions/messages.po,663,2099,2181,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/extras/source/autocorr/emoji.po,1575,1817,1924,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/extras/source/gallery/share.po,12,15,16,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/filter/messages.po,222,818,866,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/filter/source/config/fragments/filters.po,220,732,807,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/filter/source/config/fragments/internalgraphicfilters.po,38,139,138,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/filter/source/config/fragments/types.po,38,121,136,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/forms/messages.po,58,330,362,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/formula/messages.po,438,514,690,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/fpicker/messages.po,61,163,167,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/framework/messages.po,29,210,228,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/auxiliary.po,105,302,355,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/sbasic/guide.po,103,1345,1678,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/sbasic/shared.po,4505,35431,36333,0,0,0,0,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/scalc.po,187,986,1141,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/scalc/guide.po,1469,21593,21827,0,0,0,0,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/schart.po,96,931,1052,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/sdraw.po,123,732,860,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/sdraw/guide.po,275,3072,3244,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/shared.po,250,2308,2422,0,0,0,0,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/shared/autokorr.po,48,420,437,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/shared/autopi.po,887,8394,8905,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/shared/explorer/database.po,1641,18857,19409,0,0,0,0,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/shared/guide.po,2516,36443,38681,0,0,0,0,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/shared/help.po,78,117,122,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/shared/menu.po,16,120,142,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/shared/optionen.po,1934,23351,25019,0,0,0,0,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/simpress.po,199,1395,1577,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/simpress/guide.po,767,10282,10476,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/smath.po,60,739,796,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/smath/guide.po,104,1193,1205,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/swriter.po,336,2946,3293,0,0,0,0,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/swriter/guide.po,2144,27937,29261,0,0,0,0,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/swriter/librelogo.po,326,3019,3245,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/helpcontent2/source/text/swriter/menu.po,17,96,148,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/librelogo/source/pythonpath.po,138,173,169,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,27,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/nlpsolver/src/locale.po,41,105,125,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/officecfg/registry/data/org/openoffice.po,9,28,28,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/officecfg/registry/data/org/openoffice/office.po,1308,1841,1883,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/readlicense_oo/docs.po,103,2403,2448,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,22,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/reportdesign/messages.po,258,617,716,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/sc/messages.po,4686,20260,20378,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/scaddins/messages.po,901,3188,3679,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/sccomp/messages.po,14,65,77,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/scp2/source/activex.po,2,16,19,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/scp2/source/base.po,10,44,48,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/scp2/source/calc.po,22,94,120,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/scp2/source/draw.po,41,149,154,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/scp2/source/extensions.po,16,65,76,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/scp2/source/gnome.po,2,11,10,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/scp2/source/graphicfilter.po,30,101,106,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/scp2/source/impress.po,21,81,85,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/scp2/source/math.po,10,42,44,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/scp2/source/onlineupdate.po,2,13,13,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/scp2/source/python.po,2,7,9,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/scp2/source/quickstart.po,2,15,18,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/scp2/source/winexplorerext.po,2,18,23,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/scp2/source/writer.po,27,114,125,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/sd/messages.po,1319,2951,3144,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/sfx2/messages.po,581,2226,2311,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/starmath/messages.po,505,968,1028,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/svtools/messages.po,914,2611,2710,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/svx/messages.po,2846,7224,7700,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/sw/messages.po,3441,7740,8739,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/swext/mediawiki/help.po,89,1404,1457,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,162,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/sysui/desktop/share.po,66,277,329,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/uui/messages.po,157,1554,1596,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/vcl/messages.po,356,737,778,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/wizards/messages.po,265,1042,1107,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/wizards/source/resources.po,554,2286,2342,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/writerperfect/messages.po,30,65,70,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/xmlsecurity/messages.po,91,424,457,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/accessibility/messages.po,11,27,13,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/avmedia/messages.po,22,45,22,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/basctl/messages.po,155,611,194,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/basic/messages.po,135,549,193,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/chart2/messages.po,620,1368,721,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/connectivity/messages.po,106,1047,234,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,2,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,1,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/cui/messages.po,2313,5495,2554,0,0,30,63,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dbaccess/messages.po,812,4510,1190,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/desktop/messages.po,162,1225,312,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/en/dialog.po,37,176,63,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,2,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/hu_hu/dialog.po,32,71,32,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,2,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/pt_br/dialog.po,2,5,3,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,2,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/ru_ru/dialog.po,13,25,13,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,2,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/editeng/messages.po,265,656,324,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/extensions/messages.po,663,2099,810,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/extensions/source/update/check/org/openoffice/office.po,1,3,1,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/extras/source/autocorr/emoji.po,1575,1817,1817,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/extras/source/gallery/share.po,12,15,12,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/filter/messages.po,222,818,317,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/filter/source/config/fragments/filters.po,220,732,673,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/filter/source/config/fragments/internalgraphicfilters.po,38,139,135,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/filter/source/config/fragments/types.po,38,121,114,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/forms/messages.po,58,330,79,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/formula/messages.po,438,514,508,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/fpicker/messages.po,61,163,73,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/framework/messages.po,29,210,40,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/auxiliary.po,98,282,109,0,0,7,20,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/sbasic/guide.po,89,1185,193,0,0,14,160,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/sbasic/shared.po,3544,29440,9715,0,0,961,5991,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/scalc.po,181,944,231,0,0,6,42,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/scalc/guide.po,1355,19373,4088,0,0,114,2220,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/schart.po,88,796,131,0,0,8,135,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/sdraw.po,123,732,180,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/sdraw/guide.po,263,2845,619,0,0,12,227,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/shared.po,218,1962,387,0,0,32,346,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/shared/autokorr.po,47,403,58,0,0,1,17,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/shared/autopi.po,753,6508,1446,0,0,134,1886,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/shared/explorer/database.po,1460,14346,2951,0,0,181,4511,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/shared/guide.po,2070,28698,5785,0,0,446,7745,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/shared/optionen.po,1293,11760,2663,0,0,641,11591,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/simpress.po,197,1363,285,0,0,2,32,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/simpress/guide.po,601,7917,1663,0,0,166,2365,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/smath.po,57,613,111,0,0,3,126,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/smath/guide.po,96,1031,295,0,0,8,162,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/swriter.po,221,1436,315,0,0,115,1510,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/swriter/guide.po,1908,23471,4499,0,0,236,4466,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/swriter/librelogo.po,299,2534,1365,0,0,27,485,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/librelogo/source/pythonpath.po,138,173,143,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,4,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/nlpsolver/src/locale.po,41,105,56,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/officecfg/registry/data/org/openoffice.po,9,28,18,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/officecfg/registry/data/org/openoffice/office.po,1308,1841,1645,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/readlicense_oo/docs.po,102,2343,442,0,0,1,60,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,6,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/reportdesign/messages.po,258,617,280,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/sc/messages.po,4534,19717,5426,4,34,148,509,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/scaddins/messages.po,900,3185,1026,0,0,1,3,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/sccomp/messages.po,13,56,21,0,0,1,9,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/scp2/source/activex.po,2,16,8,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/scp2/source/base.po,10,44,23,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/scp2/source/calc.po,22,94,60,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/scp2/source/draw.po,41,149,138,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/scp2/source/extensions.po,16,65,27,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/scp2/source/gnome.po,2,11,9,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/scp2/source/graphicfilter.po,30,101,73,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/scp2/source/impress.po,21,81,58,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/scp2/source/math.po,10,42,23,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/scp2/source/onlineupdate.po,2,13,3,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/scp2/source/python.po,2,7,5,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/scp2/source/quickstart.po,2,15,4,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/scp2/source/winexplorerext.po,2,18,9,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/scp2/source/writer.po,27,114,71,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/scp2/source/xsltfilter.po,2,6,4,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/sd/messages.po,1226,2824,1357,1,1,92,126,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/sfx2/messages.po,552,1985,703,0,0,29,241,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/starmath/messages.po,505,968,522,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/svtools/messages.po,874,2506,1436,0,0,40,105,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/svx/messages.po,2660,6769,3409,0,0,186,455,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/sw/messages.po,3354,7424,3860,0,0,87,316,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/swext/mediawiki/help.po,75,1191,221,0,0,14,213,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,56,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/sysui/desktop/share.po,66,277,172,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/uui/messages.po,156,1523,357,0,0,1,31,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/vcl/messages.po,277,552,326,0,0,79,185,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/wizards/messages.po,265,1042,287,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/wizards/source/resources.po,554,2286,703,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/writerperfect/messages.po,30,65,47,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/xmlsecurity/messages.po,88,418,119,0,0,3,6,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/accessibility/messages.po,11,27,28,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/avmedia/messages.po,19,42,39,2,2,1,1,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/basctl/messages.po,106,354,324,17,28,32,229,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/basic/messages.po,2,6,7,39,129,94,414,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/chart2/messages.po,14,16,16,60,60,546,1292,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/connectivity/messages.po,0,0,0,0,0,106,1047,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/cui/messages.po,124,176,177,351,432,1868,4950,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dbaccess/messages.po,23,30,28,39,41,750,4439,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/desktop/messages.po,5,5,5,10,15,147,1205,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/en/dialog.po,37,176,193,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/en/dialog/registry/data/org/openoffice/office.po,1,3,4,0,0,1,2,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/hu_hu/dialog.po,32,71,85,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,1,3,4,0,0,1,2,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/pt_br/dialog.po,1,3,4,0,0,1,2,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,1,3,4,0,0,1,2,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/ru_ru/dialog.po,13,25,28,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,1,3,4,0,0,1,2,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/editeng/messages.po,6,6,6,24,25,235,625,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/extensions/messages.po,21,25,25,94,102,548,1972,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/extras/source/autocorr/emoji.po,0,0,0,90,71,1485,1746,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/extras/source/gallery/share.po,0,0,0,0,0,12,15,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/filter/messages.po,4,4,4,26,27,192,787,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/filter/source/config/fragments/filters.po,1,1,1,1,2,218,729,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/filter/source/config/fragments/types.po,0,0,0,0,0,38,121,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/forms/messages.po,0,0,0,6,6,52,324,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/formula/messages.po,3,3,3,12,12,423,499,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/fpicker/messages.po,4,5,5,11,13,46,145,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/framework/messages.po,1,1,1,1,1,27,208,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/librelogo/source/pythonpath.po,1,3,4,31,33,106,137,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/nlpsolver/src/locale.po,2,2,2,1,1,38,102,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/officecfg/registry/data/org/openoffice/office.po,42,47,48,65,65,1201,1729,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/readlicense_oo/docs.po,0,0,0,0,0,103,2403,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/reportdesign/messages.po,9,13,14,46,57,203,547,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/sc/messages.po,261,273,293,455,500,3970,19487,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/scaddins/messages.po,8,8,8,30,30,863,3150,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/sccomp/messages.po,11,47,40,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/scp2/source/activex.po,0,0,0,0,0,2,16,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/scp2/source/base.po,0,0,0,2,5,8,39,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/scp2/source/calc.po,2,2,3,3,6,17,86,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/scp2/source/draw.po,0,0,0,4,7,37,142,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/scp2/source/extensions.po,0,0,0,1,1,15,64,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/scp2/source/graphicfilter.po,0,0,0,0,0,30,101,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/scp2/source/impress.po,0,0,0,3,4,18,77,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/scp2/source/math.po,0,0,0,3,6,7,36,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/scp2/source/quickstart.po,0,0,0,0,0,2,15,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/scp2/source/winexplorerext.po,0,0,0,0,0,2,18,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/scp2/source/writer.po,0,0,0,1,1,26,113,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/sd/messages.po,48,53,55,159,170,1112,2728,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/sfx2/messages.po,31,33,35,94,102,456,2091,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/starmath/messages.po,8,8,8,46,50,451,910,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/svl/messages.po,0,0,0,0,0,1,1,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/svtools/messages.po,20,22,25,53,72,841,2517,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/svx/messages.po,67,71,72,213,221,2566,6932,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/sw/messages.po,176,185,194,556,604,2709,6951,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/swext/mediawiki/help.po,2,2,2,4,4,83,1398,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,3,3,3,3,3,26,175,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/sysui/desktop/share.po,1,1,2,2,2,63,274,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/uui/messages.po,3,3,4,3,5,151,1546,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/vcl/messages.po,18,18,18,42,43,296,676,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/wizards/messages.po,6,6,6,20,20,239,1016,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/wizards/source/resources.po,10,10,10,38,46,506,2230,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/writerperfect/messages.po,0,0,0,2,2,28,63,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/xmlsecurity/messages.po,5,5,5,3,3,83,416,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/accessibility/messages.po,9,15,15,0,0,2,12,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/avmedia/messages.po,16,26,22,1,1,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/basctl/messages.po,112,425,345,24,36,19,150,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/basic/messages.po,11,23,18,117,498,7,28,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/chart2/messages.po,197,301,309,147,245,276,822,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/connectivity/messages.po,8,56,26,0,0,98,991,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,3,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/cui/messages.po,894,1832,1651,624,1061,825,2665,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dbaccess/messages.po,379,2211,1665,211,960,222,1339,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/desktop/messages.po,62,295,234,13,75,87,855,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/en/dialog.po,3,4,4,0,0,34,172,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/en/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/hu_hu/dialog.po,6,7,8,0,0,26,64,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/pt_br/dialog.po,1,2,2,0,0,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/ru_ru/dialog.po,3,4,4,0,0,11,22,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/editeng/messages.po,116,218,201,21,26,128,412,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/extensions/messages.po,359,773,700,180,698,124,628,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/extras/source/autocorr/emoji.po,42,42,42,195,184,1338,1591,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/extras/source/gallery/share.po,6,8,8,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/filter/messages.po,62,220,180,31,51,129,547,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/filter/source/config/fragments/filters.po,19,55,54,10,27,191,650,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/filter/source/config/fragments/types.po,6,24,21,3,10,29,87,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/forms/messages.po,50,293,200,2,3,6,34,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/formula/messages.po,44,44,44,20,21,368,443,432,508,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/fpicker/messages.po,31,88,76,15,34,15,41,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/framework/messages.po,11,71,52,6,14,12,125,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/auxiliary.po,6,6,6,0,0,99,296,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/sbasic/guide.po,34,281,207,0,0,69,1064,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/sbasic/shared.po,1335,5661,4508,0,0,3170,29770,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/scalc.po,146,583,513,0,0,41,403,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/scalc/guide.po,83,285,207,0,0,1386,21308,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/schart.po,11,90,68,0,0,85,841,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/sdraw.po,110,653,502,0,0,13,79,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/sdraw/guide.po,66,359,284,0,0,209,2713,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/shared.po,177,1476,1119,0,0,73,832,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/shared/autokorr.po,19,239,137,0,0,29,181,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/shared/autopi.po,255,937,755,0,0,632,7457,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/shared/explorer/database.po,597,3898,2891,0,0,1044,14959,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/shared/guide.po,53,313,196,0,0,2463,36130,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/shared/optionen.po,719,2482,1936,0,0,1215,20869,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/simpress.po,63,166,124,0,0,136,1229,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/simpress/guide.po,32,140,102,0,0,735,10142,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/smath.po,45,241,186,0,0,15,498,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/smath/guide.po,3,3,3,0,0,101,1190,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/swriter.po,196,987,819,0,0,140,1959,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/swriter/guide.po,195,847,568,0,0,1949,27090,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/swriter/librelogo.po,30,31,31,0,0,296,2988,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/librelogo/source/pythonpath.po,54,58,59,5,5,79,110,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/nlpsolver/src/locale.po,11,12,12,1,1,29,92,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/officecfg/registry/data/org/openoffice/office.po,1190,1273,1306,2,5,116,563,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/readlicense_oo/docs.po,17,164,142,0,0,86,2239,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/reportdesign/messages.po,99,145,142,45,73,114,399,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/sc/messages.po,1121,2303,1955,894,1627,2671,16330,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/scaddins/messages.po,778,2520,1790,12,16,108,649,898,3185,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/scp2/source/base.po,8,40,36,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/scp2/source/calc.po,19,81,76,0,0,3,13,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/scp2/source/draw.po,13,52,44,2,9,26,88,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/scp2/source/extensions.po,3,9,7,0,0,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/scp2/source/graphicfilter.po,28,91,91,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/scp2/source/impress.po,14,57,52,1,4,6,20,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/scp2/source/math.po,10,42,38,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/scp2/source/onlineupdate.po,2,13,10,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/scp2/source/quickstart.po,2,15,9,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/scp2/source/winexplorerext.po,2,18,15,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/scp2/source/writer.po,18,54,54,1,3,8,57,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/sd/messages.po,451,1115,937,320,539,548,1297,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/sfx2/messages.po,210,534,450,123,359,248,1333,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/starmath/messages.po,293,500,473,85,125,124,340,502,965,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/svtools/messages.po,392,1092,953,41,133,481,1386,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/svx/messages.po,1519,3367,3133,494,1095,833,2762,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/sw/messages.po,1566,2756,2716,876,1682,999,3302,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/swext/mediawiki/help.po,7,10,12,4,4,78,1390,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,10,10,12,3,3,19,168,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/sysui/desktop/share.po,35,144,140,4,22,27,111,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/uui/messages.po,70,626,458,15,31,72,897,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/vcl/messages.po,157,244,221,27,49,172,444,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/wizards/messages.po,235,992,801,6,6,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/wizards/source/resources.po,435,1824,1395,58,255,61,207,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/writerperfect/messages.po,1,2,2,4,6,25,57,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/xmlsecurity/messages.po,18,37,29,20,62,53,325,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/accessibility/messages.po,11,27,32,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/avmedia/messages.po,22,45,46,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/basctl/messages.po,155,611,664,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/basic/messages.po,135,549,604,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/chart2/messages.po,620,1368,1615,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/connectivity/messages.po,106,1047,973,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,6,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,4,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/cui/messages.po,2342,5554,6277,0,0,1,4,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dbaccess/messages.po,812,4510,4520,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/desktop/messages.po,162,1225,1219,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/en/dialog.po,37,176,204,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/hu_hu/dialog.po,32,71,90,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/pt_br/dialog.po,2,5,7,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/ru_ru/dialog.po,13,25,36,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/editeng/messages.po,265,656,759,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/extensions/messages.po,663,2099,2219,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/extras/source/autocorr/emoji.po,1575,1817,1989,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/extras/source/gallery/share.po,12,15,16,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/filter/messages.po,222,818,890,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/filter/source/config/fragments/filters.po,220,732,783,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/filter/source/config/fragments/internalgraphicfilters.po,38,139,143,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/filter/source/config/fragments/types.po,38,121,133,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/forms/messages.po,58,330,318,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/formula/messages.po,411,472,615,0,0,0,0,411,472,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/fpicker/messages.po,61,163,172,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/framework/messages.po,29,210,240,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/librelogo/source/pythonpath.po,138,173,181,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,25,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/nlpsolver/src/locale.po,41,105,129,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/officecfg/registry/data/org/openoffice.po,9,28,39,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/officecfg/registry/data/org/openoffice/office.po,1080,1600,1801,0,0,228,241,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/readlicense_oo/docs.po,102,2343,2252,0,0,1,60,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,17,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/reportdesign/messages.po,258,617,667,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/sc/messages.po,3271,9618,9882,38,85,1377,10557,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/scaddins/messages.po,453,1227,1081,6,6,441,1954,900,3187,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/sccomp/messages.po,14,65,74,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/scp2/source/base.po,10,44,54,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/scp2/source/calc.po,21,89,102,0,0,1,5,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/scp2/source/draw.po,26,95,97,2,7,13,47,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/scp2/source/extensions.po,9,33,39,0,0,7,32,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/scp2/source/graphicfilter.po,30,101,115,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/scp2/source/impress.po,21,81,95,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/scp2/source/math.po,10,42,48,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/scp2/source/onlineupdate.po,1,2,2,0,0,1,11,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/scp2/source/quickstart.po,1,1,2,0,0,1,14,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/scp2/source/winexplorerext.po,0,0,0,0,0,2,18,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/scp2/source/writer.po,23,96,90,2,7,2,11,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/sd/messages.po,1175,2780,3105,0,0,144,171,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/sfx2/messages.po,575,2091,2080,0,0,6,135,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/starmath/messages.po,302,439,452,1,1,200,526,503,966,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/svtools/messages.po,692,1948,2048,95,171,127,492,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/svx/messages.po,2687,6845,7593,31,80,128,299,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/sw/messages.po,3355,7612,8797,0,0,82,123,3437,7735,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/swext/mediawiki/help.po,75,1191,1181,0,0,14,213,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,160,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/sysui/desktop/share.po,66,277,316,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/uui/messages.po,157,1554,1501,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/vcl/messages.po,284,569,621,0,0,72,168,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/wizards/messages.po,265,1042,1039,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/wizards/source/resources.po,554,2286,2278,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/writerperfect/messages.po,30,65,75,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/xmlsecurity/messages.po,91,424,440,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/accessibility/messages.po,11,27,30,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/avmedia/messages.po,22,45,43,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/basctl/messages.po,155,611,547,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/basic/messages.po,135,549,524,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/chart2/messages.po,620,1368,1383,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/connectivity/messages.po,106,1047,780,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,3,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/cui/messages.po,2343,5558,5325,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dbaccess/messages.po,812,4510,3550,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/desktop/messages.po,162,1225,1022,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/en/dialog.po,37,176,165,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/hu_hu/dialog.po,32,71,75,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/ru_ru/dialog.po,14,26,23,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/editeng/messages.po,265,656,716,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/extensions/messages.po,663,2099,1846,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/extras/source/autocorr/emoji.po,1206,1419,1720,0,0,369,398,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/extras/source/gallery/share.po,11,14,15,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/filter/messages.po,222,818,737,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/filter/source/config/fragments/filters.po,220,732,749,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/filter/source/config/fragments/internalgraphicfilters.po,38,139,139,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/filter/source/config/fragments/types.po,38,121,127,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/forms/messages.po,58,330,255,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/formula/messages.po,438,514,515,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/fpicker/messages.po,61,163,147,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/framework/messages.po,29,210,160,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/librelogo/source/pythonpath.po,138,173,171,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,18,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/nlpsolver/src/locale.po,41,105,102,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/officecfg/registry/data/org/openoffice.po,9,28,28,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/officecfg/registry/data/org/openoffice/office.po,1308,1841,1784,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/readlicense_oo/docs.po,103,2403,1967,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,13,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/reportdesign/messages.po,258,617,595,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/sc/messages.po,4686,20260,15796,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/scaddins/messages.po,901,3188,2958,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/sccomp/messages.po,14,65,65,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/scp2/source/activex.po,2,16,18,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/scp2/source/base.po,10,44,41,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/scp2/source/calc.po,22,94,97,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/scp2/source/draw.po,41,149,144,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/scp2/source/extensions.po,16,65,69,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/scp2/source/gnome.po,2,11,10,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/scp2/source/graphicfilter.po,30,101,119,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/scp2/source/impress.po,21,81,78,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/scp2/source/math.po,10,42,41,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/scp2/source/onlineupdate.po,2,13,8,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/scp2/source/quickstart.po,2,15,18,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/scp2/source/writer.po,27,114,109,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/sd/messages.po,1319,2951,2865,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/sfx2/messages.po,581,2226,1990,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/starmath/messages.po,505,968,1015,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/svtools/messages.po,914,2611,2469,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/svx/messages.po,2846,7224,6963,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/sw/messages.po,3440,7739,7575,0,0,0,0,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/swext/mediawiki/help.po,89,1404,1073,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,2,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,133,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/sysui/desktop/share.po,66,277,286,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/uui/messages.po,157,1554,1241,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/vcl/messages.po,347,707,697,0,0,9,30,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/wizards/messages.po,265,1042,852,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/wizards/source/resources.po,554,2286,1869,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/writerperfect/messages.po,30,65,65,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/xmlsecurity/messages.po,91,424,374,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/accessibility/messages.po,1,1,1,1,1,9,25,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/avmedia/messages.po,13,15,14,1,1,8,29,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/basctl/messages.po,80,259,164,17,22,58,330,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/basic/messages.po,0,0,0,3,8,132,541,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/chart2/messages.po,8,8,8,50,51,562,1309,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/connectivity/messages.po,0,0,0,0,0,106,1047,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/cui/messages.po,89,93,93,291,352,1963,5113,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dbaccess/messages.po,12,12,12,43,54,757,4444,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/desktop/messages.po,6,20,12,14,21,142,1184,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/en/dialog.po,0,0,0,0,0,37,176,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/hu_hu/dialog.po,0,0,0,1,1,31,70,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/ru_ru/dialog.po,0,0,0,1,1,13,25,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/editeng/messages.po,4,4,4,24,25,237,627,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/extensions/messages.po,10,10,10,82,92,571,1997,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/extras/source/autocorr/emoji.po,0,0,0,89,70,1486,1747,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/extras/source/gallery/share.po,0,0,0,0,0,12,15,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/filter/messages.po,5,5,5,16,17,201,796,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/filter/source/config/fragments/filters.po,63,232,230,3,7,154,493,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/filter/source/config/fragments/internalgraphicfilters.po,35,127,127,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/filter/source/config/fragments/types.po,15,44,43,1,5,22,72,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/forms/messages.po,5,22,10,5,5,48,303,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/formula/messages.po,1,1,1,10,10,427,503,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/fpicker/messages.po,4,5,5,8,10,49,148,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/framework/messages.po,1,1,1,1,1,27,208,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/librelogo/source/pythonpath.po,0,0,0,29,29,109,144,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/nlpsolver/src/locale.po,2,2,2,1,1,38,102,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/officecfg/registry/data/org/openoffice/office.po,18,34,34,80,85,1210,1722,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/readlicense_oo/docs.po,0,0,0,0,0,103,2403,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/reportdesign/messages.po,6,7,7,39,40,213,570,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/sc/messages.po,171,174,175,377,398,4138,19688,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/scaddins/messages.po,6,6,6,34,34,861,3148,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/scp2/source/activex.po,0,0,0,0,0,2,16,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/scp2/source/base.po,0,0,0,1,2,9,42,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/scp2/source/calc.po,2,3,3,4,11,16,80,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/scp2/source/draw.po,0,0,0,4,8,37,141,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/scp2/source/extensions.po,0,0,0,1,1,15,64,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/scp2/source/graphicfilter.po,0,0,0,0,0,30,101,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/scp2/source/impress.po,0,0,0,4,8,17,73,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/scp2/source/math.po,0,0,0,2,3,8,39,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/scp2/source/quickstart.po,0,0,0,0,0,2,15,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/scp2/source/winexplorerext.po,0,0,0,0,0,2,18,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/scp2/source/writer.po,1,2,2,3,8,23,104,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/sd/messages.po,34,36,37,132,140,1153,2775,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/sfx2/messages.po,25,26,28,81,88,475,2112,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/starmath/messages.po,2,2,3,36,37,467,929,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/svl/messages.po,0,0,0,0,0,1,1,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/svtools/messages.po,9,9,9,57,74,848,2528,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/svx/messages.po,31,34,33,206,219,2609,6971,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/sw/messages.po,117,119,120,469,495,2855,7126,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/swext/mediawiki/help.po,0,0,0,3,3,86,1401,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,2,2,2,3,3,27,176,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/sysui/desktop/share.po,1,1,1,5,13,60,263,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/uui/messages.po,3,3,3,3,5,151,1546,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/vcl/messages.po,12,12,12,46,47,298,678,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/wizards/messages.po,4,4,4,17,17,244,1021,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/wizards/source/resources.po,4,4,4,30,35,520,2247,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/writerperfect/messages.po,0,0,0,1,1,29,64,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/xmlsecurity/messages.po,1,1,1,7,7,83,416,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/accessibility/messages.po,11,27,15,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/avmedia/messages.po,19,36,21,1,4,2,5,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/basctl/messages.po,132,540,223,21,39,2,32,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/basic/messages.po,18,52,34,117,497,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/chart2/messages.po,534,1151,711,67,144,19,73,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/connectivity/messages.po,104,1017,447,0,0,2,30,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/cui/messages.po,1580,3786,2007,524,1054,239,718,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dbaccess/messages.po,567,3179,1326,217,1202,28,129,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/desktop/messages.po,128,707,352,24,393,10,125,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/en/dialog.po,37,176,115,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,2,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/hu_hu/dialog.po,32,71,33,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,2,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/pt_br/dialog.po,2,5,3,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/ru_ru/dialog.po,13,25,14,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/editeng/messages.po,258,641,387,3,4,4,11,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/extensions/messages.po,432,1353,657,198,632,33,114,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/extras/source/autocorr/emoji.po,57,50,49,205,203,1313,1564,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/extras/source/gallery/share.po,11,14,13,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/filter/messages.po,169,633,333,39,112,14,73,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/filter/source/config/fragments/filters.po,160,554,509,10,36,50,142,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/filter/source/config/fragments/internalgraphicfilters.po,38,139,138,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/filter/source/config/fragments/types.po,24,80,77,1,5,13,36,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/forms/messages.po,57,321,124,0,0,1,9,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/formula/messages.po,388,436,434,20,26,28,50,436,512,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/fpicker/messages.po,31,88,51,19,43,11,32,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/framework/messages.po,20,184,57,6,14,3,12,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/auxiliary.po,92,266,152,0,0,13,36,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/sbasic/guide.po,89,1185,426,0,0,14,160,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/sbasic/shared.po,3557,29611,14770,0,0,948,5820,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/scalc.po,178,940,433,0,0,9,46,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/scalc/guide.po,1364,19648,7009,0,0,105,1945,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/schart.po,87,794,285,0,0,9,137,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/sdraw.po,120,718,348,0,0,3,14,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/sdraw/guide.po,259,2780,1069,0,0,16,292,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/shared.po,218,1962,710,0,0,32,346,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/shared/autokorr.po,48,420,130,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/shared/autopi.po,757,6572,2343,0,0,130,1822,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/shared/explorer/database.po,1469,14596,4896,0,0,172,4261,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/shared/guide.po,2101,29585,10915,0,0,415,6858,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/shared/optionen.po,1542,16921,5534,0,0,392,6430,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/simpress.po,186,1316,529,0,0,13,79,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/simpress/guide.po,603,7994,2918,0,0,164,2288,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/smath.po,56,609,254,0,0,4,130,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/smath/guide.po,96,1031,458,0,0,8,162,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/swriter.po,217,1414,628,0,0,119,1532,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/swriter/guide.po,1938,24248,8787,0,0,206,3689,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/swriter/librelogo.po,310,2637,1691,1,120,15,262,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/librelogo/source/pythonpath.po,137,170,147,1,3,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,6,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/nlpsolver/src/locale.po,41,105,78,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/officecfg/registry/data/org/openoffice.po,8,25,16,0,0,1,3,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/officecfg/registry/data/org/openoffice/office.po,1279,1742,1448,10,65,19,34,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/readlicense_oo/docs.po,88,1760,700,1,85,14,558,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,6,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/reportdesign/messages.po,209,499,265,46,115,3,3,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/sc/messages.po,3309,14930,6155,777,2325,600,3005,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/scaddins/messages.po,878,3053,1222,15,31,5,101,898,3185,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/sccomp/messages.po,12,51,27,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/scp2/source/base.po,10,44,30,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/scp2/source/calc.po,21,89,65,0,0,1,5,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/scp2/source/draw.po,41,149,130,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/scp2/source/extensions.po,16,65,33,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/scp2/source/graphicfilter.po,30,101,82,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/scp2/source/impress.po,21,81,64,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/scp2/source/math.po,10,42,30,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/scp2/source/onlineupdate.po,2,13,5,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/scp2/source/python.po,2,7,5,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/scp2/source/quickstart.po,2,15,6,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/scp2/source/winexplorerext.po,2,18,8,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/scp2/source/writer.po,27,114,82,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/scp2/source/xsltfilter.po,2,6,4,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/sd/messages.po,747,1813,940,279,555,293,583,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/sfx2/messages.po,324,992,486,129,466,128,768,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/starmath/messages.po,407,764,490,65,106,33,98,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/svtools/messages.po,763,1968,1404,56,350,95,293,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/svx/messages.po,1976,4754,2820,488,1155,382,1315,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/sw/messages.po,2290,4742,2934,675,1556,476,1442,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/swext/mediawiki/help.po,47,353,121,26,817,16,234,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,82,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/sysui/desktop/share.po,64,257,187,2,20,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/uui/messages.po,117,1067,440,16,126,24,361,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/vcl/messages.po,239,451,300,24,58,93,228,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/wizards/messages.po,259,1036,448,5,5,1,1,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/wizards/source/resources.po,489,2013,860,56,210,9,63,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/writerperfect/messages.po,2,3,2,4,8,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/xmlsecurity/messages.po,55,223,76,18,131,18,70,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/accessibility/messages.po,7,13,16,1,1,3,13,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/avmedia/messages.po,17,27,26,0,0,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/basctl/messages.po,97,392,390,35,52,23,167,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/basic/messages.po,17,49,56,118,500,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/chart2/messages.po,228,481,523,178,330,214,557,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/connectivity/messages.po,96,942,804,6,48,4,57,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,3,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,1,5,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/cui/messages.po,614,1337,1408,754,1265,975,2956,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dbaccess/messages.po,423,2479,2336,243,1294,146,737,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/desktop/messages.po,98,480,507,36,362,28,383,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/en/dialog.po,1,1,2,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/hu_hu/dialog.po,2,2,2,5,7,25,62,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/pt_br/dialog.po,0,0,0,1,2,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/ru_ru/dialog.po,3,3,4,2,4,9,19,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/editeng/messages.po,225,534,642,24,80,16,42,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/extensions/messages.po,399,991,1042,211,832,53,276,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/extras/source/autocorr/emoji.po,42,38,39,179,170,1354,1609,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/extras/source/gallery/share.po,6,8,8,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/filter/messages.po,53,207,235,31,61,138,550,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/filter/source/config/fragments/filters.po,80,276,285,11,29,129,427,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/filter/source/config/fragments/internalgraphicfilters.po,35,127,127,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/filter/source/config/fragments/types.po,15,41,42,3,12,20,68,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/forms/messages.po,54,314,294,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/formula/messages.po,290,293,300,64,90,72,119,426,502,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/fpicker/messages.po,30,87,87,15,34,16,42,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/framework/messages.po,18,167,165,6,14,5,29,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/librelogo/source/pythonpath.po,19,21,28,38,40,81,112,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/nlpsolver/src/locale.po,9,9,9,6,7,26,89,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/officecfg/registry/data/org/openoffice/office.po,1178,1265,1274,18,21,112,555,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/readlicense_oo/docs.po,11,60,58,0,0,92,2343,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/reportdesign/messages.po,142,313,345,82,164,34,140,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/sc/messages.po,1647,4742,4131,898,1981,2141,13537,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/scaddins/messages.po,414,883,723,77,249,408,2054,899,3186,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/sccomp/messages.po,11,47,46,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/scp2/source/base.po,8,40,49,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/scp2/source/calc.po,17,56,77,3,29,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/scp2/source/draw.po,13,52,57,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/scp2/source/graphicfilter.po,28,91,142,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/scp2/source/impress.po,19,74,80,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/scp2/source/math.po,10,42,44,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/scp2/source/quickstart.po,2,15,15,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/scp2/source/winexplorerext.po,2,18,20,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/scp2/source/writer.po,22,69,78,0,0,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/scp2/source/xsltfilter.po,2,6,8,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/sd/messages.po,363,841,886,331,612,625,1498,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/sfx2/messages.po,188,515,531,144,444,249,1267,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/starmath/messages.po,270,472,483,105,150,127,343,502,965,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/svtools/messages.po,568,1442,1467,75,181,271,988,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/svx/messages.po,1040,2120,2231,599,1340,1207,3764,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/sw/messages.po,1184,1998,2273,1118,2001,1139,3741,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/swext/mediawiki/help.po,44,304,273,24,702,21,398,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,166,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/sysui/desktop/share.po,43,153,163,10,52,13,72,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/uui/messages.po,93,906,901,22,149,42,499,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/vcl/messages.po,143,227,248,54,110,159,400,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/wizards/messages.po,202,887,875,30,73,33,82,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/wizards/source/resources.po,432,1782,1743,57,240,65,264,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/writerperfect/messages.po,0,0,0,6,11,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/xmlsecurity/messages.po,19,36,34,15,57,57,331,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/accessibility/messages.po,11,27,24,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/avmedia/messages.po,22,45,41,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/basctl/messages.po,143,564,471,10,15,2,32,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/basic/messages.po,132,539,486,3,10,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/chart2/messages.po,560,1232,1328,55,102,5,34,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/connectivity/messages.po,104,1017,702,0,0,2,30,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/cui/messages.po,1633,4013,4065,478,858,232,687,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dbaccess/messages.po,525,2951,2333,266,1444,21,115,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/desktop/messages.po,118,664,559,34,436,10,125,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/en/dialog.po,37,176,182,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/hu_hu/dialog.po,32,71,76,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/ru_ru/dialog.po,13,25,26,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/editeng/messages.po,256,629,613,5,16,4,11,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/extensions/messages.po,450,1362,1251,197,649,16,88,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/extras/source/autocorr/emoji.po,56,50,50,203,200,1316,1567,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/extras/source/gallery/share.po,11,14,14,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/filter/messages.po,170,635,594,38,110,14,73,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/filter/source/config/fragments/filters.po,120,413,411,51,179,49,140,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/filter/source/config/fragments/internalgraphicfilters.po,38,139,141,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/filter/source/config/fragments/types.po,24,80,81,1,5,13,36,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/forms/messages.po,57,321,235,0,0,1,9,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/formula/messages.po,365,415,419,41,45,28,50,434,510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/fpicker/messages.po,29,84,87,21,47,11,32,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/framework/messages.po,21,193,153,6,14,2,3,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/librelogo/source/pythonpath.po,137,170,175,1,3,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,19,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/nlpsolver/src/locale.po,41,105,102,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/officecfg/registry/data/org/openoffice.po,8,25,25,0,0,1,3,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/officecfg/registry/data/org/openoffice/office.po,1279,1742,2579,10,65,19,34,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/readlicense_oo/docs.po,88,1760,1379,1,85,14,558,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,14,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/reportdesign/messages.po,205,496,477,51,118,2,3,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/sc/messages.po,3169,13706,10044,949,3706,568,2848,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/scaddins/messages.po,881,3056,2053,15,31,5,101,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/sccomp/messages.po,12,51,41,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/scp2/source/base.po,10,44,41,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/scp2/source/calc.po,21,89,86,0,0,1,5,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/scp2/source/draw.po,41,149,145,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/scp2/source/extensions.po,16,65,55,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/scp2/source/graphicfilter.po,30,101,99,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/scp2/source/impress.po,21,81,84,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/scp2/source/math.po,10,42,40,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/scp2/source/onlineupdate.po,2,13,10,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/scp2/source/python.po,2,7,6,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/scp2/source/quickstart.po,2,15,14,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/scp2/source/writer.po,27,114,109,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/sd/messages.po,728,1790,1731,296,574,295,587,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/sfx2/messages.po,315,949,905,141,531,125,746,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/starmath/messages.po,408,774,785,64,96,33,98,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/svtools/messages.po,771,1981,1795,55,353,88,277,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/svx/messages.po,1955,4693,4557,523,1258,368,1273,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/sw/messages.po,1729,3249,3261,949,1925,763,2566,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/swext/mediawiki/help.po,47,353,295,26,817,16,234,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,128,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/sysui/desktop/share.po,65,261,258,1,16,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/uui/messages.po,121,1087,849,19,151,17,316,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/vcl/messages.po,238,450,445,25,59,93,228,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/wizards/messages.po,263,1040,834,1,1,1,1,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/wizards/source/resources.po,472,1996,1613,73,227,9,63,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/writerperfect/messages.po,3,4,4,3,7,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/xmlsecurity/messages.po,45,204,174,28,150,18,70,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/accessibility/messages.po,11,27,26,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/avmedia/messages.po,22,45,45,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/basctl/messages.po,155,611,480,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/basic/messages.po,135,549,536,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/chart2/messages.po,620,1368,1285,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/connectivity/messages.po,106,1047,760,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,7,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/cui/messages.po,2337,5536,5072,0,0,6,22,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dbaccess/messages.po,812,4510,3348,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/desktop/messages.po,162,1225,951,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/en/dialog.po,37,176,180,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/hu_hu/dialog.po,32,71,70,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/pt_br/dialog.po,2,5,4,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/ru_ru/dialog.po,13,25,24,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/editeng/messages.po,265,656,643,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/extensions/messages.po,663,2099,1745,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/extras/source/autocorr/emoji.po,1575,1817,1860,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/extras/source/gallery/share.po,12,15,15,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/filter/messages.po,222,818,720,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/filter/source/config/fragments/filters.po,220,732,760,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/filter/source/config/fragments/internalgraphicfilters.po,38,139,137,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/filter/source/config/fragments/types.po,38,121,132,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/forms/messages.po,58,330,236,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/formula/messages.po,433,509,511,0,0,0,0,433,509,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/fpicker/messages.po,61,163,138,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/framework/messages.po,29,210,178,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/auxiliary.po,94,272,243,0,0,11,30,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/sbasic/guide.po,88,1177,941,0,0,15,168,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/sbasic/shared.po,3490,29212,22347,0,0,1015,6219,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/scalc.po,187,986,813,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/scalc/guide.po,1339,18959,13542,0,0,130,2634,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/schart.po,95,897,694,0,0,1,34,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/sdraw.po,123,732,592,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/sdraw/guide.po,275,3072,2346,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/shared.po,239,2135,1574,0,0,11,173,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/shared/autokorr.po,48,420,300,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/shared/autopi.po,778,6843,5032,0,0,109,1551,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/shared/explorer/database.po,1518,15556,11029,0,0,123,3301,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/shared/guide.po,2080,28893,21560,0,0,436,7550,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/shared/menu.po,16,120,100,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/shared/optionen.po,1247,11492,8616,0,0,687,11859,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/simpress.po,199,1395,1090,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/simpress/guide.po,753,10154,7174,0,0,14,128,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/smath.po,59,722,541,0,0,1,17,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/smath/guide.po,104,1193,883,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/swriter.po,305,2642,2082,0,0,31,304,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/swriter/guide.po,1925,23892,17393,0,0,219,4045,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/swriter/librelogo.po,40,41,41,0,0,286,2978,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/helpcontent2/source/text/swriter/menu.po,17,96,70,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/librelogo/source/pythonpath.po,138,173,176,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,19,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/nlpsolver/src/locale.po,41,105,102,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/officecfg/registry/data/org/openoffice.po,9,28,28,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/officecfg/registry/data/org/openoffice/office.po,1304,1835,1774,0,0,4,6,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/readlicense_oo/docs.po,102,2343,1597,0,0,1,60,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,16,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/reportdesign/messages.po,258,617,549,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/sc/messages.po,4484,19800,13857,0,0,202,460,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/scaddins/messages.po,901,3188,2100,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/sccomp/messages.po,14,65,53,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/scp2/source/activex.po,2,16,16,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/scp2/source/base.po,10,44,37,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/scp2/source/calc.po,22,94,91,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/scp2/source/draw.po,41,149,151,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/scp2/source/extensions.po,16,65,61,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/scp2/source/gnome.po,2,11,9,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/scp2/source/graphicfilter.po,30,101,98,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/scp2/source/impress.po,21,81,81,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/scp2/source/math.po,10,42,34,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/scp2/source/onlineupdate.po,2,13,13,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/scp2/source/python.po,2,7,6,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/scp2/source/quickstart.po,2,15,13,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/scp2/source/writer.po,27,114,111,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/sd/messages.po,1175,2780,2511,0,0,144,171,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/sfx2/messages.po,576,2093,1711,0,0,5,133,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/starmath/messages.po,505,968,891,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/svtools/messages.po,906,2596,2280,0,0,8,15,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/svx/messages.po,2800,7122,6411,0,0,46,102,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/sw/messages.po,3360,7619,7154,0,0,80,120,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/swext/mediawiki/help.po,75,1191,835,0,0,14,213,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,121,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/sysui/desktop/share.po,66,277,273,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/uui/messages.po,157,1554,1112,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/vcl/messages.po,275,542,487,0,0,81,195,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/wizards/messages.po,265,1042,864,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/wizards/source/resources.po,554,2286,1736,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/writerperfect/messages.po,30,65,65,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/xmlsecurity/messages.po,91,424,323,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/accessibility/messages.po,7,13,14,0,0,4,14,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/avmedia/messages.po,11,20,19,4,5,7,20,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/basctl/messages.po,96,391,370,34,47,25,173,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/basic/messages.po,18,52,73,117,497,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/chart2/messages.po,220,479,587,174,314,226,575,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/connectivity/messages.po,94,934,949,8,56,4,57,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,3,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,9,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/cui/messages.po,638,1261,1537,714,1250,991,3047,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dbaccess/messages.po,380,2296,2038,250,1316,182,898,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/desktop/messages.po,89,435,445,27,172,46,618,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/en/dialog.po,1,1,1,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/hu_hu/dialog.po,2,2,2,5,8,25,61,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/ru_ru/dialog.po,4,4,6,2,4,8,18,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/editeng/messages.po,190,499,794,59,97,16,60,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/extensions/messages.po,391,1016,1039,212,794,60,289,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/extras/source/autocorr/emoji.po,45,41,41,187,179,1343,1597,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/extras/source/gallery/share.po,6,8,8,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/filter/messages.po,57,204,215,34,80,131,534,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/filter/source/config/fragments/filters.po,86,303,372,12,34,122,395,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/filter/source/config/fragments/internalgraphicfilters.po,35,127,151,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/filter/source/config/fragments/types.po,4,17,20,6,23,28,81,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/forms/messages.po,54,314,246,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/formula/messages.po,276,279,302,93,119,64,111,433,509,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/fpicker/messages.po,31,77,82,15,45,15,41,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/framework/messages.po,10,69,64,7,16,12,125,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/librelogo/source/pythonpath.po,29,30,32,45,47,64,96,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/nlpsolver/src/locale.po,8,8,9,5,6,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/officecfg/registry/data/org/openoffice/office.po,1230,1410,1739,5,6,73,425,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/readlicense_oo/docs.po,66,1300,2997,2,86,35,1017,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/reportdesign/messages.po,159,391,572,75,170,24,56,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/sc/messages.po,2254,10774,7863,921,2642,1511,6844,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/scaddins/messages.po,788,2467,1952,22,89,91,632,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/sccomp/messages.po,11,47,73,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/scp2/source/base.po,8,40,41,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/scp2/source/calc.po,15,48,50,5,37,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/scp2/source/draw.po,13,52,53,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/scp2/source/gnome.po,1,2,3,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/scp2/source/graphicfilter.po,28,91,94,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/scp2/source/impress.po,17,66,66,3,12,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/scp2/source/math.po,10,42,43,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/scp2/source/onlineupdate.po,2,13,10,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/scp2/source/quickstart.po,2,15,15,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/scp2/source/winexplorerext.po,2,18,15,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/scp2/source/writer.po,21,65,72,1,4,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/sd/messages.po,410,992,930,348,645,561,1314,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/sfx2/messages.po,185,540,566,132,420,264,1266,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/starmath/messages.po,274,476,481,105,149,124,341,503,966,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/svl/messages.po,0,0,0,1,1,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/svtools/messages.po,577,1354,1319,74,154,263,1103,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/svx/messages.po,1406,3291,3602,600,1360,840,2573,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/sw/messages.po,1245,2135,2396,1074,1978,1116,3617,3435,7730,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/swext/mediawiki/help.po,14,19,23,3,5,72,1380,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,5,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,24,172,336,7,7,1,2,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/sysui/desktop/share.po,41,157,214,12,64,13,56,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/uui/messages.po,92,905,879,24,163,41,486,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/vcl/messages.po,130,182,182,52,105,174,450,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/wizards/messages.po,228,984,848,13,14,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/wizards/source/resources.po,456,1858,1581,49,252,49,176,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/writerperfect/messages.po,1,1,1,5,10,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/xmlsecurity/messages.po,20,39,35,18,118,53,267,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/accessibility/messages.po,7,13,14,0,0,4,14,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/avmedia/messages.po,16,26,24,1,1,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/basctl/messages.po,97,393,398,32,43,26,175,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/basic/messages.po,18,52,59,117,497,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/chart2/messages.po,230,488,486,157,264,233,616,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/connectivity/messages.po,0,0,0,8,56,98,991,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,3,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/cui/messages.po,375,545,601,741,1119,1227,3894,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dbaccess/messages.po,324,1864,1753,240,1066,248,1580,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/desktop/messages.po,42,181,178,15,74,105,970,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/en/dialog.po,1,1,1,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/hu_hu/dialog.po,1,1,1,5,8,26,62,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/ru_ru/dialog.po,2,2,2,2,4,10,20,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/editeng/messages.po,54,91,118,77,124,134,441,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/extensions/messages.po,335,735,798,190,688,138,676,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/extras/source/autocorr/emoji.po,42,39,41,181,172,1352,1606,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/extras/source/gallery/share.po,5,7,8,2,2,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/filter/messages.po,40,159,119,30,58,152,601,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/filter/source/config/fragments/filters.po,20,58,51,9,24,191,650,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/filter/source/config/fragments/types.po,2,8,8,5,18,31,95,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/forms/messages.po,51,294,280,1,2,6,34,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/formula/messages.po,54,57,64,53,54,327,399,434,510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/fpicker/messages.po,28,60,66,17,47,16,56,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/framework/messages.po,10,69,71,7,16,12,125,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/librelogo/source/pythonpath.po,14,16,21,45,47,79,110,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/nlpsolver/src/locale.po,5,5,5,8,9,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/officecfg/registry/data/org/openoffice/office.po,1179,1260,2195,9,12,120,569,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/readlicense_oo/docs.po,0,0,0,1,1,102,2402,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/reportdesign/messages.po,54,77,96,82,126,122,414,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/sc/messages.po,2097,10595,9322,999,2640,1590,7025,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/scaddins/messages.po,780,2459,2394,24,91,97,638,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/scp2/source/base.po,8,40,41,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/scp2/source/calc.po,15,48,43,4,33,3,13,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/scp2/source/draw.po,13,52,43,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/scp2/source/graphicfilter.po,28,91,71,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/scp2/source/impress.po,17,66,63,2,8,2,7,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/scp2/source/math.po,10,42,43,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/scp2/source/quickstart.po,2,15,20,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/scp2/source/winexplorerext.po,2,18,14,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/scp2/source/writer.po,17,50,42,2,7,8,57,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/scp2/source/xsltfilter.po,2,6,4,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/sd/messages.po,348,889,929,369,648,602,1414,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/sfx2/messages.po,156,410,459,137,343,288,1473,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/starmath/messages.po,256,458,455,110,152,129,348,495,958,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/svl/messages.po,0,0,0,1,1,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/svtools/messages.po,290,701,684,73,157,551,1753,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/svx/messages.po,1145,2530,2765,585,1223,1116,3471,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/sw/messages.po,1077,1841,2146,1172,2012,1191,3885,3440,7738,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/swext/mediawiki/help.po,2,2,3,8,10,79,1392,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,5,5,5,7,7,20,169,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/sysui/desktop/share.po,19,89,106,23,86,24,102,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/uui/messages.po,60,523,493,22,122,75,909,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/vcl/messages.po,97,134,146,62,98,197,505,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/wizards/messages.po,218,974,1031,23,24,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/wizards/source/resources.po,397,1779,1724,97,298,60,209,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/writerperfect/messages.po,0,0,0,6,11,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/xmlsecurity/messages.po,15,24,24,17,54,59,346,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/accessibility/messages.po,1,1,1,0,0,10,26,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/avmedia/messages.po,11,12,15,1,1,10,32,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/basctl/messages.po,0,0,0,1,1,154,610,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/basic/messages.po,7,9,8,6,15,122,525,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/chart2/messages.po,0,0,0,0,0,620,1368,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/connectivity/messages.po,0,0,0,0,0,106,1047,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/connectivity/registry/calc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/connectivity/registry/flat/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/cui/messages.po,16,16,16,3,3,2324,5539,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dbaccess/messages.po,7,7,7,5,5,800,4498,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/desktop/messages.po,2,13,10,0,0,160,1212,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/en/dialog.po,0,0,0,0,0,37,176,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/hu_hu/dialog.po,0,0,0,0,0,32,71,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/ru_ru/dialog.po,0,0,0,0,0,14,26,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/editeng/messages.po,0,0,0,0,0,265,656,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/extensions/messages.po,5,5,5,3,3,655,2091,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/extras/source/autocorr/emoji.po,0,0,0,23,4,1552,1813,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/extras/source/gallery/share.po,0,0,0,0,0,12,15,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/filter/messages.po,0,0,0,0,0,222,818,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/filter/source/config/fragments/filters.po,0,0,0,0,0,220,732,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/filter/source/config/fragments/types.po,0,0,0,0,0,38,121,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/forms/messages.po,0,0,0,0,0,58,330,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/formula/messages.po,0,0,0,0,0,438,514,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/fpicker/messages.po,2,2,2,3,3,56,158,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/framework/messages.po,0,0,0,0,0,29,210,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/librelogo/source/pythonpath.po,3,5,4,2,4,133,164,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/nlpsolver/src/locale.po,1,1,1,0,0,40,104,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/officecfg/registry/data/org/openoffice/office.po,0,0,0,1,1,1307,1840,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/readlicense_oo/docs.po,0,0,0,0,0,103,2403,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/reportdesign/messages.po,4,4,4,0,0,254,613,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/sc/messages.po,3,3,3,7,7,4676,20250,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/scaddins/messages.po,0,0,0,1,1,900,3187,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/scp2/source/activex.po,0,0,0,0,0,2,16,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/scp2/source/base.po,0,0,0,0,0,10,44,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/scp2/source/calc.po,0,0,0,0,0,22,94,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/scp2/source/draw.po,0,0,0,0,0,41,149,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/scp2/source/extensions.po,0,0,0,0,0,16,65,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/scp2/source/graphicfilter.po,0,0,0,0,0,30,101,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/scp2/source/impress.po,0,0,0,0,0,21,81,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/scp2/source/math.po,0,0,0,0,0,10,42,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/scp2/source/quickstart.po,0,0,0,0,0,2,15,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/scp2/source/winexplorerext.po,0,0,0,0,0,2,18,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/scp2/source/writer.po,0,0,0,0,0,27,114,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/sd/messages.po,6,6,6,8,8,1305,2937,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/sfx2/messages.po,4,4,4,1,1,576,2221,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/starmath/messages.po,0,0,0,0,0,505,968,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/svl/messages.po,0,0,0,0,0,1,1,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/svtools/messages.po,0,0,0,1,1,913,2610,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/svx/messages.po,12,12,12,5,5,2829,7207,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/sw/messages.po,9,9,9,2,2,3430,7729,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/swext/mediawiki/help.po,0,0,0,0,0,89,1404,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,2,2,2,0,0,30,179,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/sysui/desktop/share.po,0,0,0,0,0,66,277,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/uui/messages.po,0,0,0,2,2,155,1552,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/vcl/messages.po,2,2,2,7,7,347,728,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/wizards/messages.po,2,2,2,0,0,263,1040,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/wizards/source/resources.po,4,4,4,1,1,549,2281,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/writerperfect/messages.po,0,0,0,0,0,30,65,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/xmlsecurity/messages.po,0,0,0,0,0,91,424,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/accessibility/messages.po,1,1,1,0,0,10,26,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/avmedia/messages.po,10,10,10,0,0,12,35,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/basctl/messages.po,49,124,122,28,38,78,449,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/basic/messages.po,6,6,6,2,9,127,534,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/chart2/messages.po,84,101,100,65,75,471,1192,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/connectivity/messages.po,0,0,0,1,4,105,1043,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/cui/messages.po,327,389,382,450,543,1566,4626,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dbaccess/messages.po,50,50,50,62,94,700,4366,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/desktop/messages.po,52,143,149,27,86,83,996,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/en/dialog.po,37,176,172,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,1,3,1,2,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/hu_hu/dialog.po,32,71,65,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,1,3,1,2,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/ru_ru/dialog.po,4,6,6,0,0,10,20,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/editeng/messages.po,182,380,361,17,34,66,242,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/extensions/messages.po,107,127,117,112,164,444,1808,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/extras/source/autocorr/emoji.po,31,29,29,110,94,1434,1694,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/extras/source/gallery/share.po,2,2,2,1,1,9,12,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/filter/messages.po,24,30,31,23,27,175,761,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/filter/source/config/fragments/filters.po,28,90,81,10,30,182,612,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/filter/source/config/fragments/types.po,5,19,18,5,21,28,81,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/forms/messages.po,11,13,13,1,1,46,316,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/formula/messages.po,33,33,33,35,39,368,440,436,512,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/fpicker/messages.po,10,13,12,7,9,44,141,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/framework/messages.po,13,28,27,3,6,13,176,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/librelogo/source/pythonpath.po,10,10,10,25,25,103,138,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/nlpsolver/src/locale.po,8,8,8,2,2,31,95,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/officecfg/registry/data/org/openoffice/office.po,133,151,148,128,134,1047,1556,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/readlicense_oo/docs.po,32,763,656,9,127,62,1513,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/reportdesign/messages.po,72,91,90,37,62,149,464,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/sc/messages.po,640,717,685,681,887,3365,18656,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/scaddins/messages.po,32,32,32,47,51,822,3105,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/scp2/source/base.po,9,29,26,0,0,1,15,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/scp2/source/calc.po,16,44,40,0,0,6,50,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/scp2/source/draw.po,11,29,25,0,0,30,120,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/scp2/source/extensions.po,2,4,4,0,0,14,61,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/scp2/source/gnome.po,1,2,1,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/scp2/source/graphicfilter.po,0,0,0,0,0,30,101,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/scp2/source/impress.po,16,46,42,1,1,4,34,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/scp2/source/math.po,8,21,20,0,0,2,21,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/scp2/source/onlineupdate.po,1,2,2,0,0,1,11,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/scp2/source/quickstart.po,2,15,13,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/scp2/source/winexplorerext.po,0,0,0,0,0,2,18,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/scp2/source/writer.po,22,69,60,0,0,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/scp2/source/xsltfilter.po,2,6,4,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/sd/messages.po,149,174,171,206,278,964,2499,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/sfx2/messages.po,96,116,117,80,103,405,2007,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/starmath/messages.po,117,136,131,80,95,308,737,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/svl/messages.po,0,0,0,0,0,1,1,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/svtools/messages.po,170,213,206,71,121,673,2277,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/svx/messages.po,416,501,464,304,429,2126,6294,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/sw/messages.po,473,525,511,690,922,2278,6293,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/swext/mediawiki/help.po,5,5,5,2,2,82,1397,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,8,8,8,2,2,22,171,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/sysui/desktop/share.po,32,95,91,9,48,25,134,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/uui/messages.po,23,72,67,13,25,121,1457,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/vcl/messages.po,67,72,71,39,44,250,621,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/wizards/messages.po,30,31,31,22,24,213,987,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/wizards/source/resources.po,76,94,93,37,57,441,2135,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/writerperfect/messages.po,0,0,0,3,5,27,60,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/xmlsecurity/messages.po,10,11,11,4,6,77,407,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/accessibility/messages.po,11,27,15,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/avmedia/messages.po,22,45,22,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/basctl/messages.po,155,611,226,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/basic/messages.po,135,549,235,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/chart2/messages.po,618,1364,828,0,0,2,4,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/connectivity/messages.po,0,0,0,8,56,98,991,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/connectivity/registry/calc/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/cui/messages.po,409,575,423,646,992,1288,3991,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dbaccess/messages.po,333,1925,579,227,1042,252,1543,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/desktop/messages.po,162,1225,407,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/en/dialog.po,37,176,92,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,2,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/hu_hu/dialog.po,32,71,34,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/pt_br/dialog.po,2,5,3,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/ru_ru/dialog.po,13,25,14,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/editeng/messages.po,179,403,269,25,40,61,213,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/extensions/messages.po,663,2099,882,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/extensions/source/update/check/org/openoffice/office.po,1,3,1,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/extras/source/autocorr/emoji.po,27,23,23,148,137,1400,1657,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/extras/source/gallery/share.po,11,14,13,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/filter/messages.po,222,818,427,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/filter/source/config/fragments/filters.po,220,732,635,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/filter/source/config/fragments/internalgraphicfilters.po,38,139,118,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/filter/source/config/fragments/types.po,38,121,119,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/forms/messages.po,58,330,105,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/formula/messages.po,437,513,507,0,0,1,1,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/fpicker/messages.po,61,163,79,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/framework/messages.po,29,210,57,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/auxiliary.po,0,0,0,0,0,105,302,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/sbasic/guide.po,0,0,0,0,0,103,1345,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/sbasic/shared.po,0,0,0,0,0,4505,35431,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/scalc.po,0,0,0,0,0,187,986,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/scalc/guide.po,0,0,0,0,0,1469,21593,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/schart.po,0,0,0,0,0,96,931,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/sdraw.po,0,0,0,0,0,123,732,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/sdraw/guide.po,0,0,0,0,0,275,3072,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/shared.po,0,0,0,0,0,250,2308,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/shared/autokorr.po,0,0,0,0,0,48,420,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/shared/autopi.po,0,0,0,0,0,887,8394,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/shared/explorer/database.po,0,0,0,1,0,1640,18857,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/shared/guide.po,0,0,0,0,0,2516,36443,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/shared/optionen.po,0,0,0,0,0,1934,23351,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/simpress.po,0,0,0,0,0,199,1395,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/simpress/guide.po,0,0,0,0,0,767,10282,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/smath.po,0,0,0,0,0,60,739,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/smath/guide.po,0,0,0,0,0,104,1193,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/swriter.po,0,0,0,0,0,336,2946,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/swriter/guide.po,0,0,0,0,0,2144,27937,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/swriter/librelogo.po,0,0,0,0,0,326,3019,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/librelogo/source/pythonpath.po,138,173,153,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,5,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/nlpsolver/src/locale.po,41,105,69,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/officecfg/registry/data/org/openoffice.po,9,28,18,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/officecfg/registry/data/org/openoffice/office.po,1302,1833,1491,1,1,5,7,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/readlicense_oo/docs.po,0,0,0,1,1,102,2402,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,6,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/reportdesign/messages.po,75,116,79,68,113,115,388,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/sc/messages.po,2190,10478,2843,870,2514,1626,7268,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/scaddins/messages.po,781,2471,908,23,79,97,638,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/sccomp/messages.po,14,65,37,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/scp2/source/base.po,3,19,5,4,13,3,12,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/scp2/source/calc.po,15,48,32,4,33,3,13,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/scp2/source/draw.po,13,52,37,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/scp2/source/graphicfilter.po,28,91,91,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/scp2/source/impress.po,17,66,51,2,8,2,7,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/scp2/source/math.po,10,42,33,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/scp2/source/quickstart.po,2,15,6,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/scp2/source/winexplorerext.po,2,18,10,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/scp2/source/writer.po,17,50,40,2,7,8,57,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/scp2/source/xsltfilter.po,2,6,4,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/sd/messages.po,348,824,409,350,614,621,1513,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/sfx2/messages.po,176,474,215,119,327,286,1425,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/starmath/messages.po,87,130,101,89,114,329,724,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/svtools/messages.po,112,142,115,105,217,697,2252,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/svx/messages.po,1017,2136,1299,529,884,1300,4204,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/sw/messages.po,1081,1812,1335,1129,1931,1231,3997,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/swext/mediawiki/help.po,4,4,4,6,8,79,1392,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,4,4,4,8,8,20,169,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/sysui/desktop/share.po,66,277,180,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/uui/messages.po,15,160,41,17,37,125,1357,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/vcl/messages.po,110,143,113,58,97,188,497,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/wizards/messages.po,220,942,258,19,19,26,81,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/wizards/source/resources.po,424,1802,557,62,156,68,328,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/writerperfect/messages.po,30,65,53,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/xmlsecurity/messages.po,91,424,142,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/accessibility/messages.po,11,27,23,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/avmedia/messages.po,22,45,43,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/basctl/messages.po,155,611,517,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/basic/messages.po,135,549,481,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/chart2/messages.po,618,1364,1325,0,0,2,4,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/connectivity/messages.po,106,1047,734,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,3,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/cui/messages.po,2313,5459,5183,1,1,29,98,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dbaccess/messages.po,787,4337,3331,2,3,23,170,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/desktop/messages.po,162,1225,950,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/en/dialog.po,37,176,170,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/hu_hu/dialog.po,32,71,66,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/ru_ru/dialog.po,13,25,27,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/editeng/messages.po,265,656,691,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/extensions/messages.po,648,2078,1737,13,13,2,8,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/extras/source/autocorr/emoji.po,1572,1813,2182,0,0,3,4,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/extras/source/gallery/share.po,12,15,15,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/filter/messages.po,222,818,732,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/filter/source/config/fragments/filters.po,217,721,785,0,0,3,11,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/filter/source/config/fragments/internalgraphicfilters.po,38,139,147,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/filter/source/config/fragments/types.po,38,121,135,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/forms/messages.po,58,330,242,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/formula/messages.po,437,513,512,0,0,1,1,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/fpicker/messages.po,59,160,143,0,0,2,3,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/framework/messages.po,29,210,168,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/auxiliary.po,89,263,266,0,0,16,39,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/sbasic/guide.po,0,0,0,0,0,103,1345,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/sbasic/shared.po,0,0,0,0,0,4505,35431,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/scalc.po,187,986,818,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/scalc/guide.po,1466,21503,16776,0,0,3,90,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/schart.po,0,0,0,0,0,96,931,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/sdraw.po,120,712,645,0,0,3,20,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/sdraw/guide.po,0,0,0,0,0,275,3072,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/shared.po,115,727,632,0,0,135,1581,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/shared/autokorr.po,0,0,0,0,0,48,420,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/shared/autopi.po,17,0,0,0,0,870,8394,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/shared/explorer/database.po,8,0,0,0,0,1633,18857,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/shared/guide.po,472,5556,4936,2,36,2042,30851,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/shared/help.po,76,109,106,0,0,2,8,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/shared/optionen.po,1619,19449,16420,4,123,311,3779,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/simpress.po,0,0,0,0,0,199,1395,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/simpress/guide.po,0,0,0,0,0,767,10282,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/smath.po,10,102,93,0,0,50,637,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/smath/guide.po,0,0,0,0,0,104,1193,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/swriter.po,244,1655,1404,0,0,92,1291,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/swriter/guide.po,263,2964,2654,0,0,1881,24973,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/swriter/librelogo.po,3,5,6,0,0,323,3014,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/helpcontent2/source/text/swriter/menu.po,17,96,74,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/librelogo/source/pythonpath.po,137,172,217,0,0,1,1,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,17,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/nlpsolver/src/locale.po,41,105,98,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/officecfg/registry/data/org/openoffice.po,8,25,26,0,0,1,3,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/officecfg/registry/data/org/openoffice/office.po,1303,1834,1799,0,0,5,7,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/readlicense_oo/docs.po,102,2343,1869,0,0,1,60,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,14,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/reportdesign/messages.po,246,588,575,11,23,1,6,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/sc/messages.po,3976,17921,13599,305,598,405,1741,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/scaddins/messages.po,820,2694,2239,2,2,79,492,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/sccomp/messages.po,12,51,43,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/scp2/source/activex.po,2,16,15,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/scp2/source/base.po,10,44,47,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/scp2/source/calc.po,22,94,90,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/scp2/source/draw.po,41,149,153,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/scp2/source/extensions.po,16,65,62,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/scp2/source/gnome.po,2,11,9,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/scp2/source/graphicfilter.po,30,101,178,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/scp2/source/impress.po,21,81,75,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/scp2/source/math.po,10,42,39,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/scp2/source/onlineupdate.po,2,13,8,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/scp2/source/python.po,2,7,9,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/scp2/source/quickstart.po,2,15,14,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/scp2/source/winexplorerext.po,2,18,17,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/scp2/source/writer.po,27,114,110,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/sd/messages.po,1195,2759,2554,55,80,69,112,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/sfx2/messages.po,495,1832,1530,28,37,58,357,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/starmath/messages.po,487,910,933,0,0,18,58,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/svtools/messages.po,796,2357,2226,9,15,109,239,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/svx/messages.po,2520,6468,6162,74,131,252,625,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/sw/messages.po,3337,7335,7217,28,37,76,368,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/swext/mediawiki/help.po,75,1191,989,0,0,14,213,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,134,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/sysui/desktop/share.po,66,277,283,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/uui/messages.po,155,1536,1150,2,18,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/vcl/messages.po,281,554,515,0,0,75,183,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/wizards/messages.po,256,1030,813,0,0,9,12,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/wizards/source/resources.po,520,2211,1666,12,14,22,61,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/writerperfect/messages.po,30,65,64,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/xmlsecurity/messages.po,91,424,351,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/accessibility/messages.po,11,27,22,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/avmedia/messages.po,22,45,41,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/basctl/messages.po,155,611,513,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/basic/messages.po,135,549,509,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/chart2/messages.po,620,1368,1342,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/connectivity/messages.po,106,1047,732,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,3,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/cui/messages.po,2343,5558,5175,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dbaccess/messages.po,812,4510,3571,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/desktop/messages.po,162,1225,980,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/en/dialog.po,37,176,188,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/hu_hu/dialog.po,32,71,67,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/ru_ru/dialog.po,14,26,27,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/editeng/messages.po,265,656,642,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/extensions/messages.po,663,2099,1873,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/extras/source/autocorr/emoji.po,1558,1794,1841,0,0,17,23,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/extras/source/gallery/share.po,12,15,15,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/filter/messages.po,222,818,710,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/filter/source/config/fragments/filters.po,220,732,728,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/filter/source/config/fragments/internalgraphicfilters.po,38,139,135,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/filter/source/config/fragments/types.po,38,121,123,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/forms/messages.po,58,330,258,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/formula/messages.po,438,514,514,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/fpicker/messages.po,61,163,148,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/framework/messages.po,29,210,165,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/auxiliary.po,94,271,264,0,0,11,31,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/sbasic/guide.po,69,646,514,0,0,34,699,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/sbasic/shared.po,2026,5887,5385,0,0,2479,29544,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/scalc.po,148,369,351,0,0,39,617,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/scalc/guide.po,315,1263,1167,0,0,1154,20330,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/schart.po,63,278,239,0,0,33,653,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/sdraw.po,81,160,153,0,0,42,572,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/sdraw/guide.po,34,89,82,0,0,241,2983,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/shared.po,101,202,201,0,0,149,2106,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/shared/autokorr.po,24,96,96,0,0,24,324,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/shared/autopi.po,478,1657,1540,0,0,409,6737,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/shared/explorer/database.po,712,2079,1821,0,0,929,16778,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/shared/guide.po,369,1388,1232,0,0,2147,35055,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/shared/optionen.po,726,1706,1602,0,0,1208,21645,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/simpress.po,149,417,364,0,0,50,978,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/simpress/guide.po,117,492,415,0,0,650,9790,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/smath.po,37,75,70,0,0,23,664,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/smath/guide.po,25,70,65,0,0,79,1123,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/swriter.po,193,479,447,0,0,143,2467,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/swriter/guide.po,452,1917,1636,0,0,1692,26020,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/swriter/librelogo.po,126,148,144,0,0,200,2871,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/librelogo/source/pythonpath.po,138,173,170,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,18,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/nlpsolver/src/locale.po,41,105,101,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/officecfg/registry/data/org/openoffice.po,9,28,28,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/officecfg/registry/data/org/openoffice/office.po,1308,1841,1779,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/readlicense_oo/docs.po,103,2403,1882,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,13,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/reportdesign/messages.po,258,617,583,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/sc/messages.po,4677,20155,15848,4,47,5,58,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/scaddins/messages.po,901,3188,2482,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/sccomp/messages.po,14,65,63,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/scp2/source/activex.po,2,16,18,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/scp2/source/base.po,10,44,38,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/scp2/source/calc.po,22,94,86,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/scp2/source/draw.po,41,149,148,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/scp2/source/extensions.po,16,65,59,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/scp2/source/gnome.po,2,11,9,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/scp2/source/graphicfilter.po,30,101,99,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/scp2/source/impress.po,21,81,74,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/scp2/source/math.po,10,42,37,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/scp2/source/onlineupdate.po,2,13,9,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/scp2/source/python.po,2,7,7,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/scp2/source/quickstart.po,2,15,11,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/scp2/source/winexplorerext.po,2,18,14,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/scp2/source/writer.po,27,114,108,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/sd/messages.po,1312,2929,2671,0,0,7,22,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/sfx2/messages.po,578,2200,1875,0,0,3,26,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/starmath/messages.po,505,968,959,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/svtools/messages.po,909,2605,2329,0,0,5,6,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/svx/messages.po,2834,7204,6788,2,2,10,18,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/sw/messages.po,3439,7713,7331,2,27,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/swext/mediawiki/help.po,89,1404,1116,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,137,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/sysui/desktop/share.po,66,277,257,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/uui/messages.po,156,1523,1214,1,31,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/vcl/messages.po,337,684,667,0,0,19,53,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/wizards/messages.po,265,1042,896,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/wizards/source/resources.po,551,2283,1861,3,3,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/writerperfect/messages.po,27,62,64,0,0,3,3,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/xmlsecurity/messages.po,91,424,352,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/accessibility/messages.po,9,23,22,0,0,2,4,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/avmedia/messages.po,19,36,33,1,4,2,5,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/basctl/messages.po,85,292,316,31,40,39,279,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/basic/messages.po,10,21,24,118,500,7,28,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/chart2/messages.po,128,168,175,150,265,342,935,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/connectivity/messages.po,0,0,0,7,48,99,999,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,3,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/cui/messages.po,425,597,637,695,1071,1223,3890,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dbaccess/messages.po,301,1584,1547,237,1056,274,1870,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/desktop/messages.po,43,198,201,17,71,102,956,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/en/dialog.po,1,1,1,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/hu_hu/dialog.po,1,1,1,5,8,26,62,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/ru_ru/dialog.po,2,2,2,2,4,10,20,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/editeng/messages.po,72,115,135,59,100,134,441,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/extensions/messages.po,337,737,773,187,681,139,681,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/extras/source/autocorr/emoji.po,43,39,39,181,173,1351,1605,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/extras/source/gallery/share.po,6,8,8,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/filter/messages.po,41,160,170,29,57,152,601,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/filter/source/config/fragments/filters.po,22,67,66,10,27,188,638,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/filter/source/config/fragments/internalgraphicfilters.po,2,8,8,0,0,36,131,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/filter/source/config/fragments/types.po,2,8,8,5,18,31,95,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/forms/messages.po,51,294,301,1,2,6,34,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/formula/messages.po,54,57,58,53,54,327,399,434,510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/fpicker/messages.po,29,61,75,16,46,16,56,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/framework/messages.po,10,69,81,7,16,12,125,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/librelogo/source/pythonpath.po,14,16,18,45,47,79,110,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/nlpsolver/src/locale.po,7,7,8,6,7,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/officecfg/registry/data/org/openoffice/office.po,1173,1254,1456,15,18,120,569,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/readlicense_oo/docs.po,0,0,0,1,1,102,2402,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/reportdesign/messages.po,70,93,101,65,108,123,416,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/sc/messages.po,2041,10499,8893,1057,2747,1588,7014,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/scaddins/messages.po,775,2433,2056,29,117,97,638,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/scp2/source/base.po,8,40,43,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/scp2/source/calc.po,15,48,50,4,33,3,13,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/scp2/source/draw.po,13,52,55,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/scp2/source/extensions.po,1,1,1,2,8,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/scp2/source/graphicfilter.po,28,91,95,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/scp2/source/impress.po,17,66,69,2,8,2,7,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/scp2/source/math.po,10,42,39,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/scp2/source/quickstart.po,2,15,14,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/scp2/source/winexplorerext.po,2,18,14,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/scp2/source/writer.po,17,50,50,2,7,8,57,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/sd/messages.po,360,901,942,358,640,601,1410,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/sfx2/messages.po,158,431,455,137,356,286,1439,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/starmath/messages.po,264,466,476,109,151,129,348,502,965,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/svl/messages.po,0,0,0,1,1,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/svtools/messages.po,378,985,986,79,161,457,1465,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/svx/messages.po,1165,2547,2654,574,1213,1107,3464,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/sw/messages.po,1064,1842,2047,1201,2095,1174,3801,3439,7738,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/swext/mediawiki/help.po,3,3,3,7,9,79,1392,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,5,5,8,7,7,20,169,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/sysui/desktop/share.po,32,119,124,12,64,22,94,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/uui/messages.po,62,525,515,20,120,75,909,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/vcl/messages.po,102,141,177,60,97,194,499,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/wizards/messages.po,207,917,939,34,81,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/wizards/source/resources.po,421,1797,1850,72,279,61,210,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/writerperfect/messages.po,1,1,1,5,10,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/xmlsecurity/messages.po,18,37,39,18,59,55,328,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/accessibility/messages.po,7,13,15,1,1,3,13,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/avmedia/messages.po,17,27,27,0,0,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/basctl/messages.po,90,303,321,35,52,30,256,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/basic/messages.po,18,52,60,117,497,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/chart2/messages.po,219,455,518,173,330,228,583,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/connectivity/messages.po,91,911,914,6,48,9,88,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,3,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,1,5,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/cui/messages.po,480,651,690,663,1059,1200,3848,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dbaccess/messages.po,396,2424,2464,250,1295,166,791,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/desktop/messages.po,91,400,408,35,343,36,482,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/en/dialog.po,1,1,1,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/hu_hu/dialog.po,1,1,1,5,8,26,62,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/ru_ru/dialog.po,2,2,2,2,4,10,20,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/editeng/messages.po,69,112,123,64,106,132,438,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/extensions/messages.po,390,958,1116,214,832,59,309,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/extras/source/autocorr/emoji.po,42,38,38,184,176,1349,1603,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/extras/source/gallery/share.po,6,8,8,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/filter/messages.po,51,185,162,29,57,142,576,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/filter/source/config/fragments/filters.po,81,280,282,10,25,129,427,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/filter/source/config/fragments/internalgraphicfilters.po,35,127,123,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/filter/source/config/fragments/types.po,15,41,48,3,12,20,68,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/forms/messages.po,54,314,308,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/formula/messages.po,303,306,308,63,89,71,118,437,513,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/fpicker/messages.po,30,76,83,16,46,15,41,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/framework/messages.po,17,163,171,6,14,6,33,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/auxiliary.po,22,30,30,0,0,83,272,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/sbasic/guide.po,51,598,600,0,0,52,747,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/sbasic/shared.po,3449,28735,28810,0,0,1056,6696,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/scalc.po,170,854,923,0,0,17,132,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/scalc/guide.po,1221,17170,17053,0,0,248,4423,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/schart.po,38,416,417,0,0,58,515,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/sdraw.po,115,698,766,0,0,8,34,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/sdraw/guide.po,256,2730,2609,0,0,19,342,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/shared.po,209,1822,1820,0,0,41,486,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/shared/autokorr.po,47,403,364,0,0,1,17,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/shared/autopi.po,738,6465,6469,0,0,149,1929,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/shared/explorer/database.po,1244,10814,10810,0,0,397,8043,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/shared/guide.po,1776,24054,24234,0,0,740,12389,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/shared/optionen.po,1181,10424,10538,0,0,753,12927,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/simpress.po,175,1240,1342,0,0,24,155,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/simpress/guide.po,500,5836,5698,0,0,267,4446,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/smath.po,56,609,625,0,0,4,130,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/smath/guide.po,65,652,671,0,0,39,541,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/swriter.po,211,1354,1385,0,0,125,1592,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/swriter/guide.po,1791,21510,20765,0,0,353,6427,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/swriter/librelogo.po,38,39,40,1,1,287,2979,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/librelogo/source/pythonpath.po,13,15,15,46,48,79,110,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/nlpsolver/src/locale.po,9,9,10,4,5,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/officecfg/registry/data/org/openoffice/office.po,1190,1277,1287,6,9,112,555,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/readlicense_oo/docs.po,1,2,2,1,1,101,2400,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/reportdesign/messages.po,169,421,465,71,135,18,61,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/sc/messages.po,2213,11140,10146,970,2659,1503,6461,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/scaddins/messages.po,781,2471,2150,23,79,97,638,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/sccomp/messages.po,11,47,53,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/scp2/source/activex.po,1,2,1,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/scp2/source/base.po,8,40,46,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/scp2/source/calc.po,17,56,61,3,29,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/scp2/source/draw.po,13,52,48,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/scp2/source/gnome.po,1,2,3,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/scp2/source/graphicfilter.po,28,91,132,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/scp2/source/impress.po,19,74,72,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/scp2/source/math.po,10,42,38,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/scp2/source/onlineupdate.po,2,13,13,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/scp2/source/quickstart.po,2,15,19,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/scp2/source/winexplorerext.po,2,18,25,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/scp2/source/writer.po,22,69,66,0,0,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/sd/messages.po,398,951,1001,340,637,581,1363,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/sfx2/messages.po,179,495,498,146,425,256,1306,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/starmath/messages.po,273,475,529,103,145,129,348,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/svl/messages.po,0,0,0,1,1,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/svtools/messages.po,543,1353,1352,72,182,299,1076,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/svx/messages.po,1309,2965,3293,568,1281,969,2978,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/sw/messages.po,1199,2002,2235,1102,2041,1139,3696,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/swext/mediawiki/help.po,44,304,308,24,702,21,398,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,31,161,156,0,0,1,20,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/sysui/desktop/share.po,43,153,162,10,52,13,72,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/uui/messages.po,86,797,795,23,166,48,591,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/vcl/messages.po,130,184,185,48,96,178,457,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/wizards/messages.po,229,985,991,12,13,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/wizards/source/resources.po,447,1888,1914,55,218,52,180,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/writerperfect/messages.po,1,1,1,5,10,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/xmlsecurity/messages.po,21,40,42,16,101,54,283,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/accessibility/messages.po,11,27,23,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/avmedia/messages.po,19,39,33,1,1,2,5,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/basctl/messages.po,149,602,476,6,9,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/basic/messages.po,135,549,473,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/chart2/messages.po,534,1150,1096,36,56,50,162,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/connectivity/messages.po,105,1033,709,0,0,1,14,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,6,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,4,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/cui/messages.po,1501,3369,3095,378,737,464,1452,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dbaccess/messages.po,472,2856,1979,228,1218,112,436,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/desktop/messages.po,153,1118,918,5,28,4,79,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/en/dialog.po,37,176,164,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/hu_hu/dialog.po,32,71,63,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/ru_ru/dialog.po,13,25,24,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/editeng/messages.po,258,641,596,4,6,3,9,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/extensions/messages.po,413,1079,951,210,794,40,226,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/extras/source/autocorr/emoji.po,106,99,99,221,220,1248,1498,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/extras/source/gallery/share.po,11,14,13,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/filter/messages.po,79,280,232,36,76,107,462,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/filter/source/config/fragments/filters.po,93,335,344,26,95,101,302,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/filter/source/config/fragments/internalgraphicfilters.po,35,127,129,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/filter/source/config/fragments/types.po,21,66,66,3,13,14,42,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/forms/messages.po,57,321,212,0,0,1,9,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/formula/messages.po,323,326,326,55,81,60,107,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/fpicker/messages.po,52,145,130,3,4,6,14,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/framework/messages.po,22,194,146,6,14,1,2,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/librelogo/source/pythonpath.po,137,170,162,1,3,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,14,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/nlpsolver/src/locale.po,41,105,98,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/officecfg/registry/data/org/openoffice/office.po,1234,1421,2150,10,25,64,395,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/readlicense_oo/docs.po,83,1646,1456,1,85,19,672,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,13,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/reportdesign/messages.po,179,445,420,68,144,11,28,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/sc/messages.po,2694,12948,8594,942,2535,1050,4777,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/scaddins/messages.po,841,2698,1998,14,18,46,472,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/sccomp/messages.po,12,51,40,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/scp2/source/base.po,10,44,41,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/scp2/source/calc.po,19,81,78,1,4,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/scp2/source/draw.po,15,60,56,1,5,25,84,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/scp2/source/extensions.po,16,65,62,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/scp2/source/graphicfilter.po,28,91,102,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/scp2/source/impress.po,19,74,75,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/scp2/source/math.po,10,42,33,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/scp2/source/onlineupdate.po,2,13,7,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/scp2/source/python.po,2,7,6,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/scp2/source/quickstart.po,2,15,11,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/scp2/source/winexplorerext.po,2,18,14,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/scp2/source/writer.po,22,69,68,0,0,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/sd/messages.po,514,1312,1160,354,623,451,1016,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/sfx2/messages.po,261,774,642,147,460,173,992,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/starmath/messages.po,313,536,468,89,130,100,299,502,965,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/svtools/messages.po,714,1827,1632,68,398,132,386,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/svx/messages.po,1791,4070,3863,521,1235,534,1919,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/sw/messages.po,1713,3204,3202,916,1803,811,2732,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/swext/mediawiki/help.po,47,353,253,26,817,16,234,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,4,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,129,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/sysui/desktop/share.po,65,261,254,1,16,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/uui/messages.po,105,1021,696,18,131,34,402,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/vcl/messages.po,247,484,456,10,12,99,241,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/wizards/messages.po,261,1038,790,4,4,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/wizards/source/resources.po,467,1957,1401,79,268,8,61,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/writerperfect/messages.po,3,5,5,3,6,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/xmlsecurity/messages.po,66,338,259,8,20,17,66,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/accessibility/messages.po,11,27,31,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/avmedia/messages.po,22,45,40,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/basctl/messages.po,155,611,560,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/basic/messages.po,135,549,548,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/chart2/messages.po,618,1364,1513,0,0,2,4,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/connectivity/messages.po,58,587,465,3,22,45,438,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/connectivity/registry/calc/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,5,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,1,1,1,2,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,1,5,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/cui/messages.po,742,1885,1955,698,1063,903,2610,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dbaccess/messages.po,446,2805,2324,228,1039,138,666,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/desktop/messages.po,154,1140,1081,4,6,4,79,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/en/dialog.po,37,176,214,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/hu_hu/dialog.po,32,71,92,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/pt_br/dialog.po,2,5,7,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/ru_ru/dialog.po,13,25,28,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/editeng/messages.po,216,483,571,19,53,30,120,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/extensions/messages.po,389,968,936,217,823,57,308,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/extras/source/autocorr/emoji.po,49,45,47,232,224,1294,1548,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/extras/source/gallery/share.po,5,7,8,3,3,4,5,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/filter/messages.po,53,187,163,33,64,136,567,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/filter/source/config/fragments/filters.po,92,332,347,15,50,113,350,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/filter/source/config/fragments/internalgraphicfilters.po,35,127,127,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/filter/source/config/fragments/types.po,19,57,59,2,8,17,56,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/forms/messages.po,57,321,248,0,0,1,9,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/formula/messages.po,309,312,313,56,79,73,123,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/fpicker/messages.po,53,145,143,3,6,5,12,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/framework/messages.po,22,194,163,6,14,1,2,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/librelogo/source/pythonpath.po,25,27,36,45,47,68,99,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/nlpsolver/src/locale.po,9,9,9,5,6,27,90,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/officecfg/registry/data/org/openoffice/office.po,1188,1275,1282,11,14,109,552,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/readlicense_oo/docs.po,2,4,6,1,1,100,2398,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,14,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/reportdesign/messages.po,169,420,385,62,115,27,82,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/sc/messages.po,2162,10873,7594,1069,2865,1455,6522,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/scaddins/messages.po,781,2471,1805,23,79,97,638,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/sccomp/messages.po,12,51,48,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/scp2/source/base.po,8,40,37,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/scp2/source/calc.po,15,48,53,5,37,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/scp2/source/draw.po,13,52,51,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/scp2/source/graphicfilter.po,28,91,91,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/scp2/source/impress.po,17,66,69,3,12,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/scp2/source/math.po,10,42,42,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/scp2/source/onlineupdate.po,2,13,10,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/scp2/source/quickstart.po,2,15,16,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/scp2/source/winexplorerext.po,2,18,18,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/scp2/source/writer.po,16,47,51,3,10,8,57,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/sd/messages.po,417,1006,948,351,642,551,1303,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/sfx2/messages.po,166,488,460,151,402,264,1336,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/starmath/messages.po,269,471,445,102,145,123,341,494,957,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/svtools/messages.po,543,1414,1536,86,188,285,1009,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/svx/messages.po,1323,3063,2996,604,1272,919,2889,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/sw/messages.po,1132,1968,2070,1219,2144,1088,3624,3439,7736,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/swext/mediawiki/help.po,45,352,295,23,654,21,398,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,31,161,126,0,0,1,20,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/sysui/desktop/share.po,65,261,300,1,16,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/uui/messages.po,81,806,669,25,140,51,608,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/vcl/messages.po,126,194,187,75,134,155,409,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/wizards/messages.po,205,893,779,37,106,23,43,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/wizards/source/resources.po,442,1943,1658,61,159,51,184,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/writerperfect/messages.po,1,1,1,5,10,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/xmlsecurity/messages.po,20,57,58,19,86,52,281,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/accessibility/messages.po,6,11,13,1,2,4,14,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/avmedia/messages.po,16,26,26,1,1,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/basctl/messages.po,112,517,432,34,50,9,44,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/basic/messages.po,17,51,53,117,497,1,1,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/chart2/messages.po,237,417,418,169,324,214,627,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/connectivity/messages.po,95,946,731,8,56,3,45,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,4,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,1,5,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/cui/messages.po,851,1908,1882,718,1294,774,2356,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dbaccess/messages.po,464,2631,2227,246,1345,102,534,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/desktop/messages.po,97,571,509,35,402,30,252,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/en/dialog.po,1,1,1,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/en/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/hu_hu/dialog.po,2,2,2,6,9,24,60,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/pt_br/dialog.po,1,2,2,0,0,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/ru_ru/dialog.po,4,4,4,2,4,8,18,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/editeng/messages.po,173,469,511,73,119,19,68,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/extensions/messages.po,404,1273,1254,197,612,62,214,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/extras/source/autocorr/emoji.po,36,33,33,195,186,1344,1598,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/extras/source/gallery/share.po,6,8,8,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/filter/messages.po,51,253,228,39,86,132,479,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/filter/source/config/fragments/filters.po,86,303,299,11,33,123,396,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/filter/source/config/fragments/internalgraphicfilters.po,35,127,127,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/filter/source/config/fragments/types.po,4,17,17,6,23,28,81,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/forms/messages.po,51,294,241,1,2,6,34,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/formula/messages.po,97,100,109,69,70,268,340,434,510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/fpicker/messages.po,30,76,74,17,48,14,39,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/framework/messages.po,10,69,39,7,16,12,125,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/librelogo/source/pythonpath.po,18,20,24,44,46,76,107,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/nlpsolver/src/locale.po,6,6,7,7,8,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/officecfg/registry/data/org/openoffice/office.po,1253,1514,2586,9,40,46,287,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/readlicense_oo/docs.po,67,1304,1148,2,86,34,1013,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/reportdesign/messages.po,120,235,255,78,145,60,237,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/sc/messages.po,2091,10838,8010,1110,2706,1485,6716,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/scaddins/messages.po,784,2463,1959,22,89,95,636,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/scp2/source/base.po,8,40,38,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/scp2/source/calc.po,15,48,48,5,37,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/scp2/source/draw.po,13,52,53,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/scp2/source/gnome.po,0,0,0,1,2,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/scp2/source/graphicfilter.po,28,91,89,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/scp2/source/impress.po,17,66,65,3,12,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/scp2/source/math.po,10,42,41,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/scp2/source/onlineupdate.po,2,13,11,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/scp2/source/quickstart.po,2,15,15,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/scp2/source/writer.po,21,65,65,1,4,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/sd/messages.po,464,1111,1095,363,671,492,1169,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/sfx2/messages.po,195,584,563,131,380,255,1262,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/starmath/messages.po,270,472,491,109,154,121,337,500,963,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/svl/messages.po,0,0,0,1,1,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/svtools/messages.po,390,1011,930,80,150,444,1450,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/svx/messages.po,1292,2861,3025,598,1335,956,3028,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/sw/messages.po,1130,1944,2103,1205,2146,1105,3649,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/swext/mediawiki/help.po,25,113,92,22,547,42,744,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,5,7,6,9,9,18,165,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/sysui/desktop/share.po,40,156,148,13,65,13,56,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/uui/messages.po,98,944,825,26,164,33,446,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/vcl/messages.po,144,225,245,61,126,151,386,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/wizards/messages.po,227,983,853,14,15,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/wizards/source/resources.po,413,1810,1517,91,299,50,177,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/writerperfect/messages.po,0,0,0,6,11,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/xmlsecurity/messages.po,34,133,140,17,118,40,173,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/accessibility/messages.po,11,27,25,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/avmedia/messages.po,16,26,27,1,1,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/basctl/messages.po,131,534,514,21,39,3,38,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/basic/messages.po,16,46,50,119,503,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/chart2/messages.po,528,1133,1311,69,146,23,89,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/connectivity/messages.po,102,990,876,0,0,4,57,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/cui/messages.po,1565,3772,4233,540,1079,238,707,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dbaccess/messages.po,561,3156,2898,219,1217,32,137,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/desktop/messages.po,126,689,674,26,411,10,125,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/en/dialog.po,37,176,178,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/hu_hu/dialog.po,32,71,73,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/ru_ru/dialog.po,13,25,26,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/editeng/messages.po,253,628,641,5,8,7,20,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/extensions/messages.po,431,1351,1305,198,632,34,116,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/extras/source/autocorr/emoji.po,55,48,48,207,204,1313,1565,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/extras/source/gallery/share.po,11,14,14,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/filter/messages.po,160,543,590,40,113,22,162,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/filter/source/config/fragments/filters.po,101,361,361,18,66,101,305,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/filter/source/config/fragments/internalgraphicfilters.po,35,127,128,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/filter/source/config/fragments/types.po,21,66,66,3,13,14,42,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/forms/messages.po,54,314,278,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/formula/messages.po,324,327,332,54,80,60,107,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/fpicker/messages.po,31,88,96,18,42,12,33,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/framework/messages.po,20,184,175,6,14,3,12,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/librelogo/source/pythonpath.po,133,166,175,2,4,3,3,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,18,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/nlpsolver/src/locale.po,41,105,102,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/officecfg/registry/data/org/openoffice/office.po,1236,1423,1533,8,23,64,395,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/readlicense_oo/docs.po,81,1590,1319,1,85,21,728,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,14,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/reportdesign/messages.po,204,494,530,51,120,3,3,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/sc/messages.po,3199,14095,11833,795,2434,692,3731,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/scaddins/messages.po,835,2579,2104,14,18,52,591,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/sccomp/messages.po,11,47,47,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/scp2/source/base.po,10,44,45,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/scp2/source/calc.po,19,81,84,1,4,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/scp2/source/draw.po,15,60,60,1,5,25,84,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/scp2/source/extensions.po,16,65,62,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/scp2/source/graphicfilter.po,28,91,95,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/scp2/source/impress.po,19,74,75,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/scp2/source/math.po,10,42,45,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/scp2/source/onlineupdate.po,2,13,16,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/scp2/source/python.po,2,7,6,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/scp2/source/quickstart.po,2,15,13,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/scp2/source/winexplorerext.po,2,18,17,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/scp2/source/writer.po,22,69,69,0,0,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/sd/messages.po,673,1657,1762,316,605,330,689,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/sfx2/messages.po,304,852,918,135,493,142,881,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/starmath/messages.po,351,611,638,83,136,71,221,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/svtools/messages.po,721,1848,1796,63,379,130,384,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/svx/messages.po,1940,4661,4842,494,1167,412,1396,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/sw/messages.po,2250,4778,5405,711,1579,480,1383,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/swext/mediawiki/help.po,47,353,309,26,817,16,234,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,4,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,166,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/sysui/desktop/share.po,64,257,258,2,20,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/uui/messages.po,121,1087,1016,19,151,17,316,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/vcl/messages.po,227,415,468,29,74,100,248,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/wizards/messages.po,261,1038,1039,3,3,1,1,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/wizards/source/resources.po,466,1933,1900,77,275,11,78,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/writerperfect/messages.po,1,2,2,5,9,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/xmlsecurity/messages.po,55,223,204,18,131,18,70,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/accessibility/messages.po,7,13,10,1,1,3,13,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/avmedia/messages.po,16,26,16,1,1,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/basctl/messages.po,105,399,148,29,46,21,166,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/basic/messages.po,17,49,19,118,500,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/chart2/messages.po,254,547,352,174,295,192,526,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/connectivity/messages.po,102,990,346,0,0,4,57,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,3,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/cui/messages.po,976,2106,1595,633,1080,734,2372,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dbaccess/messages.po,451,2725,1413,238,1250,123,535,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/desktop/messages.po,97,497,263,28,162,37,566,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/en/dialog.po,4,6,5,0,0,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/en/dialog/registry/data/org/openoffice/office.po,1,2,4,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/hu_hu/dialog.po,7,10,7,0,0,25,61,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,1,2,4,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/pt_br/dialog.po,1,2,4,0,0,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,1,2,4,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/ru_ru/dialog.po,5,7,6,0,0,9,19,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,1,2,4,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/editeng/messages.po,242,595,313,9,14,14,47,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/extensions/messages.po,402,1060,646,216,781,45,258,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/extras/source/autocorr/emoji.po,43,43,43,200,189,1332,1585,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/extras/source/gallery/share.po,6,8,8,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/filter/messages.po,72,265,166,31,55,119,498,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/filter/source/config/fragments/filters.po,81,280,269,9,24,130,428,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/filter/source/config/fragments/internalgraphicfilters.po,35,127,123,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/filter/source/config/fragments/types.po,18,53,50,2,8,18,60,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/forms/messages.po,54,314,162,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/formula/messages.po,63,66,64,21,25,325,394,409,485,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/fpicker/messages.po,31,88,54,15,34,15,41,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/framework/messages.po,18,167,96,6,14,5,29,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/librelogo/source/pythonpath.po,55,59,57,5,5,78,109,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/nlpsolver/src/locale.po,13,14,14,0,0,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/officecfg/registry/data/org/openoffice/office.po,1194,1282,1632,4,7,110,552,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/readlicense_oo/docs.po,25,315,191,1,85,77,2003,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/reportdesign/messages.po,174,432,291,70,147,14,38,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/sc/messages.po,2387,11876,6699,1053,2858,1246,5526,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/scaddins/messages.po,778,2520,925,12,16,108,649,898,3185,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/sccomp/messages.po,11,47,14,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/scp2/source/activex.po,1,2,1,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/scp2/source/base.po,8,40,26,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/scp2/source/calc.po,19,81,59,1,4,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/scp2/source/draw.po,13,52,33,2,9,26,88,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/scp2/source/extensions.po,3,9,3,0,0,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/scp2/source/graphicfilter.po,28,91,87,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/scp2/source/impress.po,19,74,55,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/scp2/source/math.po,10,42,31,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/scp2/source/onlineupdate.po,2,13,7,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/scp2/source/quickstart.po,2,15,10,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/scp2/source/winexplorerext.po,2,18,12,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/scp2/source/writer.po,22,69,65,0,0,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/sd/messages.po,497,1255,835,329,581,493,1115,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/sfx2/messages.po,216,586,389,150,445,215,1195,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/starmath/messages.po,300,508,341,86,126,119,334,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/svtools/messages.po,614,1605,1058,48,147,252,859,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/svx/messages.po,1565,3537,3254,501,1169,780,2518,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/sw/messages.po,1613,2848,2417,889,1751,938,3140,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/swext/mediawiki/help.po,43,282,146,21,649,25,473,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,77,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/sysui/desktop/share.po,51,185,150,2,20,13,72,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/uui/messages.po,93,839,516,20,164,44,551,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/vcl/messages.po,176,284,232,27,69,153,384,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/wizards/messages.po,235,992,733,6,6,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/wizards/source/resources.po,432,1857,1330,72,252,50,177,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/writerperfect/messages.po,2,3,2,4,8,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/xmlsecurity/messages.po,18,37,32,22,124,51,263,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/accessibility/messages.po,11,27,29,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/avmedia/messages.po,22,45,44,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/basctl/messages.po,155,611,550,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/basic/messages.po,135,549,523,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/chart2/messages.po,620,1368,1165,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/connectivity/messages.po,106,1047,893,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,3,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,3,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,1,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/cui/messages.po,2343,5558,5152,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dbaccess/messages.po,812,4510,3943,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/desktop/messages.po,162,1225,1172,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/en/dialog.po,37,176,177,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/hu_hu/dialog.po,32,71,72,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/pt_br/dialog.po,2,5,3,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/ru_ru/dialog.po,14,26,27,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/editeng/messages.po,265,656,624,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/extensions/messages.po,663,2099,1795,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/extras/source/autocorr/emoji.po,1575,1817,1815,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/extras/source/gallery/share.po,12,15,14,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/filter/messages.po,222,818,729,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/filter/source/config/fragments/filters.po,220,732,636,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/filter/source/config/fragments/internalgraphicfilters.po,38,139,173,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/filter/source/config/fragments/types.po,38,121,98,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/forms/messages.po,58,330,293,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/formula/messages.po,425,491,570,0,0,0,0,425,491,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/fpicker/messages.po,61,163,145,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/framework/messages.po,29,210,192,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/auxiliary.po,105,302,278,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/sbasic/guide.po,103,1345,1209,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/sbasic/shared.po,1802,10238,9006,0,0,2703,25193,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/scalc.po,187,986,895,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/scalc/guide.po,1466,21503,19308,0,0,3,90,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/schart.po,96,931,791,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/sdraw.po,123,732,682,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/sdraw/guide.po,275,3072,2867,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/shared.po,246,2199,2042,0,0,4,109,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/shared/autokorr.po,48,420,370,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/shared/autopi.po,887,8394,7333,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/shared/explorer/database.po,1638,18750,16021,0,0,3,107,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/shared/guide.po,2271,32794,30494,0,0,245,3649,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/shared/help.po,78,117,121,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/shared/menu.po,16,120,110,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/shared/optionen.po,1412,13566,12882,0,0,522,9785,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/simpress.po,199,1395,1316,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/simpress/guide.po,767,10282,9396,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/smath.po,60,739,648,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/smath/guide.po,104,1193,1174,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/swriter.po,331,2836,2534,0,0,5,110,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/swriter/guide.po,2144,27937,25092,0,0,0,0,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/swriter/librelogo.po,326,3019,3081,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/helpcontent2/source/text/swriter/menu.po,17,96,98,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/librelogo/source/pythonpath.po,138,173,179,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,24,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/nlpsolver/src/locale.po,41,105,95,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/officecfg/registry/data/org/openoffice.po,9,28,18,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/officecfg/registry/data/org/openoffice/office.po,1308,1841,1781,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/readlicense_oo/docs.po,103,2403,2132,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,15,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/reportdesign/messages.po,258,617,590,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/sc/messages.po,4686,20260,17055,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/scaddins/messages.po,901,3188,2659,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/sccomp/messages.po,14,65,59,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/scp2/source/activex.po,2,16,14,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/scp2/source/base.po,10,44,41,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/scp2/source/calc.po,22,94,78,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/scp2/source/draw.po,41,149,111,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/scp2/source/extensions.po,16,65,60,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/scp2/source/gnome.po,2,11,8,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/scp2/source/graphicfilter.po,30,101,105,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/scp2/source/impress.po,21,81,65,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/scp2/source/math.po,10,42,39,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/scp2/source/python.po,2,7,5,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/scp2/source/quickstart.po,2,15,12,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/scp2/source/winexplorerext.po,2,18,23,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/scp2/source/writer.po,27,114,78,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/scp2/source/xsltfilter.po,2,6,2,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/sd/messages.po,1319,2951,2819,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/sfx2/messages.po,581,2226,2076,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/starmath/messages.po,505,968,932,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/svtools/messages.po,914,2611,2435,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/svx/messages.po,2846,7224,6544,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/sw/messages.po,3439,7736,7268,0,0,0,0,3439,7736,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/swext/mediawiki/help.po,89,1404,1369,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,156,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/sysui/desktop/share.po,66,277,215,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/uui/messages.po,157,1554,1423,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/vcl/messages.po,356,737,710,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/wizards/messages.po,265,1042,886,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/wizards/source/resources.po,554,2286,2017,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/writerperfect/messages.po,30,65,61,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/xmlsecurity/messages.po,91,424,375,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/accessibility/messages.po,11,27,25,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/avmedia/messages.po,22,45,49,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/basctl/messages.po,155,611,581,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/basic/messages.po,135,549,593,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/chart2/messages.po,473,1038,1071,64,100,83,230,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/connectivity/messages.po,105,1033,919,0,0,1,14,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,3,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/cui/messages.po,780,1485,1523,561,950,1002,3123,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dbaccess/messages.po,377,2155,1987,197,796,238,1559,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/desktop/messages.po,102,522,511,24,152,36,551,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/en/dialog.po,37,176,206,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/en/dialog/registry/data/org/openoffice/office.po,1,3,4,0,0,1,2,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/hu_hu/dialog.po,32,71,88,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,1,3,4,0,0,1,2,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/ru_ru/dialog.po,13,25,27,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,1,3,3,0,0,1,2,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/editeng/messages.po,122,232,244,16,21,127,403,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/extensions/messages.po,415,1067,1106,203,773,45,259,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/extras/source/autocorr/emoji.po,46,46,46,194,183,1335,1588,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/extras/source/gallery/share.po,6,8,8,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/filter/messages.po,61,224,226,34,54,127,540,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/filter/source/config/fragments/filters.po,84,292,291,10,29,126,411,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/filter/source/config/fragments/internalgraphicfilters.po,35,127,127,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/filter/source/config/fragments/types.po,20,62,58,3,13,15,46,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/forms/messages.po,58,330,296,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/formula/messages.po,314,317,322,53,79,65,112,432,508,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/fpicker/messages.po,32,89,101,14,33,15,41,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/framework/messages.po,18,167,160,6,14,5,29,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/auxiliary.po,96,276,285,0,0,9,26,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/sbasic/guide.po,62,718,665,0,0,41,627,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/sbasic/shared.po,3393,27229,24304,0,0,1112,8202,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/scalc.po,177,856,832,0,0,10,130,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/scalc/guide.po,1051,14272,12587,0,0,418,7321,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/schart.po,18,151,145,0,0,78,780,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/sdraw.po,123,732,703,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/sdraw/guide.po,249,2625,2402,0,0,26,447,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/shared.po,206,1781,1565,0,0,44,527,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/shared/autokorr.po,46,362,373,0,0,2,58,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/shared/autopi.po,711,6144,5506,0,0,176,2250,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/shared/explorer/database.po,1147,9517,8413,0,0,494,9340,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/shared/guide.po,1630,21031,18406,0,0,886,15412,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/shared/optionen.po,1125,9294,8374,0,0,809,14057,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/simpress.po,170,1195,1099,0,0,29,200,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/simpress/guide.po,476,5546,4831,0,0,291,4736,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/smath.po,55,576,522,0,0,5,163,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/smath/guide.po,66,654,593,0,0,38,539,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/swriter.po,205,1153,1082,0,0,131,1793,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/swriter/guide.po,1527,17236,14641,0,0,617,10701,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/swriter/librelogo.po,39,40,40,1,1,286,2978,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/librelogo/source/pythonpath.po,56,60,68,3,3,79,110,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/nlpsolver/src/locale.po,16,22,24,0,0,25,83,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/officecfg/registry/data/org/openoffice/office.po,1195,1283,2230,2,5,111,553,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/readlicense_oo/docs.po,12,185,164,0,0,91,2218,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,15,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/reportdesign/messages.po,187,447,456,57,132,14,38,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/sc/messages.po,2521,11671,9040,801,2183,1364,6406,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/scaddins/messages.po,778,2520,2019,12,16,108,649,898,3185,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/sccomp/messages.po,14,65,62,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/scp2/source/base.po,8,40,43,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/scp2/source/calc.po,19,81,77,0,0,3,13,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/scp2/source/draw.po,15,60,63,1,5,25,84,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/scp2/source/extensions.po,3,9,9,0,0,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/scp2/source/graphicfilter.po,28,91,103,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/scp2/source/impress.po,19,74,79,0,0,2,7,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/scp2/source/math.po,10,42,45,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/scp2/source/quickstart.po,2,15,16,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/scp2/source/writer.po,20,61,60,0,0,7,53,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/sd/messages.po,473,1152,1169,311,532,535,1267,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/sfx2/messages.po,223,625,646,135,371,223,1230,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/starmath/messages.po,308,530,514,83,122,113,315,504,967,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/svtools/messages.po,641,1561,1514,44,147,229,903,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/svx/messages.po,1496,3334,3473,452,1044,898,2846,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/sw/messages.po,1577,2705,2935,824,1593,1039,3441,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/swext/mediawiki/help.po,25,185,165,5,114,59,1105,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,13,17,16,2,2,17,162,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/sysui/desktop/share.po,51,201,199,2,20,13,56,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/uui/messages.po,107,979,904,19,72,31,503,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/vcl/messages.po,189,322,349,21,45,146,370,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/wizards/messages.po,235,992,962,6,6,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/wizards/source/resources.po,466,2003,1838,38,105,50,178,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/writerperfect/messages.po,1,2,2,5,9,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/xmlsecurity/messages.po,21,83,69,18,76,52,265,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/accessibility/messages.po,11,27,27,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/avmedia/messages.po,22,45,42,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/basctl/messages.po,155,611,610,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/basic/messages.po,135,549,542,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/chart2/messages.po,620,1368,1187,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/connectivity/messages.po,106,1047,1115,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,3,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,3,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,1,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/cui/messages.po,2343,5558,5334,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dbaccess/messages.po,812,4510,4269,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/desktop/messages.po,162,1225,1313,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/en/dialog.po,37,176,195,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/hu_hu/dialog.po,32,71,84,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/ru_ru/dialog.po,14,26,31,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/editeng/messages.po,265,656,685,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/extensions/messages.po,663,2099,1917,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/extras/source/autocorr/emoji.po,1575,1817,1898,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/extras/source/gallery/share.po,12,15,14,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/filter/messages.po,222,818,773,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/filter/source/config/fragments/filters.po,220,732,661,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/filter/source/config/fragments/internalgraphicfilters.po,38,139,137,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/filter/source/config/fragments/types.po,38,121,111,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/forms/messages.po,58,330,328,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/formula/messages.po,437,513,572,0,0,0,0,437,513,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/fpicker/messages.po,61,163,137,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/framework/messages.po,29,210,233,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/auxiliary.po,105,302,281,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/sbasic/guide.po,103,1345,1400,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/sbasic/shared.po,4502,35372,34332,0,0,3,59,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/scalc.po,187,986,1022,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/scalc/guide.po,1469,21593,21182,0,0,0,0,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/schart.po,96,931,979,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/sdraw.po,123,732,723,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/sdraw/guide.po,275,3072,3125,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/shared.po,250,2308,2245,0,0,0,0,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/shared/autokorr.po,48,420,366,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/shared/autopi.po,887,8394,8252,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/shared/explorer/database.po,1641,18857,18427,0,0,0,0,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/shared/guide.po,2516,36443,36107,0,0,0,0,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/shared/help.po,78,117,118,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/shared/menu.po,16,120,111,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/shared/optionen.po,1931,23189,22803,0,0,3,162,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/simpress.po,199,1395,1438,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/simpress/guide.po,767,10282,10360,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/smath.po,60,739,760,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/smath/guide.po,104,1193,1162,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/swriter.po,336,2946,2945,0,0,0,0,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/swriter/guide.po,2144,27937,27661,0,0,0,0,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/swriter/librelogo.po,326,3019,3046,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/helpcontent2/source/text/swriter/menu.po,17,96,109,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/librelogo/source/pythonpath.po,138,173,170,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,24,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/nlpsolver/src/locale.po,41,105,95,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/officecfg/registry/data/org/openoffice.po,9,28,21,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/officecfg/registry/data/org/openoffice/office.po,1308,1841,1840,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/readlicense_oo/docs.po,103,2403,2535,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,20,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/reportdesign/messages.po,258,617,592,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/sc/messages.po,4686,20260,19056,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/scaddins/messages.po,901,3188,3172,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/sccomp/messages.po,14,65,66,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/scp2/source/activex.po,2,16,18,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/scp2/source/base.po,10,44,47,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/scp2/source/calc.po,22,94,89,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/scp2/source/draw.po,41,149,129,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/scp2/source/extensions.po,16,65,67,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/scp2/source/gnome.po,2,11,10,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/scp2/source/graphicfilter.po,30,101,53,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/scp2/source/impress.po,21,81,71,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/scp2/source/math.po,10,42,44,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/scp2/source/onlineupdate.po,2,13,13,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/scp2/source/python.po,2,7,5,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/scp2/source/quickstart.po,2,15,16,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/scp2/source/winexplorerext.po,2,18,15,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/scp2/source/writer.po,27,114,87,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/scp2/source/xsltfilter.po,2,6,4,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/sd/messages.po,1319,2951,2771,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/sfx2/messages.po,581,2226,2172,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/starmath/messages.po,505,968,937,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/svtools/messages.po,914,2611,2459,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/svx/messages.po,2846,7224,6703,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/sw/messages.po,3441,7740,7282,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/swext/mediawiki/help.po,89,1404,1452,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,166,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/sysui/desktop/share.po,66,277,265,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/uui/messages.po,157,1554,1618,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/vcl/messages.po,356,737,728,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/wizards/messages.po,265,1042,978,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/wizards/source/resources.po,554,2286,2168,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/writerperfect/messages.po,30,65,59,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/xmlsecurity/messages.po,91,424,436,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/accessibility/messages.po,11,27,28,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/avmedia/messages.po,22,45,42,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/basctl/messages.po,155,611,559,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/basic/messages.po,135,549,535,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/chart2/messages.po,620,1368,1161,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/connectivity/messages.po,106,1047,877,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,3,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,3,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,1,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,1,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,1,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/cui/messages.po,2342,5554,5252,0,0,1,4,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dbaccess/messages.po,812,4510,3929,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/desktop/messages.po,162,1225,1183,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/en/dialog.po,37,176,181,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/hu_hu/dialog.po,32,71,73,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/pt_br/dialog.po,2,5,3,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/ru_ru/dialog.po,14,26,27,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/editeng/messages.po,265,656,631,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/extensions/messages.po,663,2099,1829,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/extras/source/autocorr/emoji.po,1575,1817,1846,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/extras/source/gallery/share.po,12,15,14,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/filter/messages.po,222,818,730,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/filter/source/config/fragments/filters.po,220,732,700,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/filter/source/config/fragments/internalgraphicfilters.po,38,139,173,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/filter/source/config/fragments/types.po,38,121,98,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/forms/messages.po,58,330,295,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/formula/messages.po,438,514,588,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/fpicker/messages.po,61,163,143,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/framework/messages.po,29,210,191,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/auxiliary.po,105,302,275,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/sbasic/guide.po,103,1345,1247,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/sbasic/shared.po,4505,35431,31449,0,0,0,0,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/scalc.po,187,986,880,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/scalc/guide.po,1468,21546,19794,0,0,1,47,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/schart.po,96,931,804,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/sdraw.po,123,732,685,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/sdraw/guide.po,275,3072,2951,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/shared.po,246,2199,2056,0,0,4,109,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/shared/autokorr.po,48,420,381,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/shared/autopi.po,887,8394,7390,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/shared/explorer/database.po,1638,18750,16378,0,0,3,107,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/shared/guide.po,2508,36212,34402,0,0,8,231,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/shared/help.po,78,117,122,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/shared/menu.po,16,120,110,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/shared/optionen.po,1934,23351,21988,0,0,0,0,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/simpress.po,199,1395,1321,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/simpress/guide.po,767,10282,9634,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/smath.po,60,739,676,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/smath/guide.po,104,1193,1181,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/swriter.po,331,2836,2527,0,0,5,110,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/swriter/guide.po,2144,27937,26018,0,0,0,0,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/swriter/librelogo.po,326,3019,3135,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/helpcontent2/source/text/swriter/menu.po,17,96,99,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/librelogo/source/pythonpath.po,138,173,186,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,24,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/nlpsolver/src/locale.po,41,105,102,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/officecfg/registry/data/org/openoffice.po,9,28,19,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/officecfg/registry/data/org/openoffice/office.po,1308,1841,1774,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/readlicense_oo/docs.po,103,2403,2155,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,15,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/reportdesign/messages.po,258,617,603,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/sc/messages.po,4681,20238,17463,0,0,5,22,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/scaddins/messages.po,901,3188,2725,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/sccomp/messages.po,14,65,52,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/scp2/source/activex.po,2,16,14,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/scp2/source/base.po,10,44,40,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/scp2/source/calc.po,22,94,79,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/scp2/source/draw.po,41,149,136,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/scp2/source/extensions.po,16,65,62,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/scp2/source/gnome.po,2,11,8,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/scp2/source/graphicfilter.po,30,101,105,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/scp2/source/impress.po,21,81,67,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/scp2/source/math.po,10,42,39,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/scp2/source/python.po,2,7,5,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/scp2/source/quickstart.po,2,15,14,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/scp2/source/winexplorerext.po,2,18,21,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/scp2/source/writer.po,27,114,80,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/scp2/source/xsltfilter.po,2,6,2,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/sd/messages.po,1306,2938,2842,0,0,13,13,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/sfx2/messages.po,580,2116,2001,0,0,1,110,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/starmath/messages.po,505,968,929,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/svtools/messages.po,914,2611,2429,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/svx/messages.po,2846,7224,6531,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/sw/messages.po,3437,7736,7291,0,0,3,3,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/swext/mediawiki/help.po,89,1404,1368,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,149,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/sysui/desktop/share.po,66,277,220,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/uui/messages.po,157,1554,1477,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/vcl/messages.po,354,733,718,0,0,2,4,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/wizards/messages.po,265,1042,899,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/wizards/source/resources.po,554,2286,2016,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/writerperfect/messages.po,30,65,53,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/xmlsecurity/messages.po,91,424,389,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/accessibility/messages.po,5,9,9,0,0,6,18,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/avmedia/messages.po,16,26,22,1,1,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/basctl/messages.po,74,242,187,34,50,47,319,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/basic/messages.po,8,14,11,9,31,118,504,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/chart2/messages.po,96,144,147,207,344,317,880,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/connectivity/messages.po,0,0,0,8,56,98,991,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/connectivity/registry/calc/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/connectivity/registry/flat/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/cui/messages.po,417,869,804,805,1262,1121,3427,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dbaccess/messages.po,295,1598,1153,225,654,292,2258,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/desktop/messages.po,43,167,148,13,28,106,1030,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/en/dialog.po,1,1,1,2,3,34,172,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/hu_hu/dialog.po,1,1,2,5,6,26,64,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/pt_br/dialog.po,0,0,0,1,2,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/ru_ru/dialog.po,2,2,2,0,0,12,24,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/editeng/messages.po,198,459,417,49,141,18,56,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/extensions/messages.po,310,646,646,195,489,158,964,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/extras/source/autocorr/emoji.po,40,36,38,165,156,1370,1625,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/extras/source/gallery/share.po,5,7,8,2,2,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/filter/messages.po,41,160,149,30,59,151,599,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/filter/source/config/fragments/filters.po,19,55,53,11,28,190,649,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/filter/source/config/fragments/types.po,2,8,8,5,18,31,95,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/forms/messages.po,50,278,214,1,2,7,50,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/formula/messages.po,283,286,292,71,96,84,132,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/fpicker/messages.po,25,39,40,18,52,18,72,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/framework/messages.po,8,14,17,7,15,14,181,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/librelogo/source/pythonpath.po,11,11,11,43,43,84,119,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/nlpsolver/src/locale.po,8,8,9,5,6,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/officecfg/registry/data/org/openoffice/office.po,477,566,1055,347,341,484,934,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/readlicense_oo/docs.po,7,41,33,1,1,95,2361,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/reportdesign/messages.po,57,76,75,78,125,123,416,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/sc/messages.po,1207,6911,4494,1415,3402,2064,9947,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/scaddins/messages.po,260,1345,939,191,433,449,1409,900,3187,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/scp2/source/base.po,8,40,33,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/scp2/source/calc.po,13,41,38,4,33,5,20,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/scp2/source/draw.po,11,45,36,1,5,29,99,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/scp2/source/graphicfilter.po,24,77,124,2,6,4,18,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/scp2/source/impress.po,15,59,52,2,8,4,14,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/scp2/source/math.po,9,39,36,0,0,1,3,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/scp2/source/quickstart.po,2,15,12,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/scp2/source/writer.po,14,37,36,2,7,11,70,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/sd/messages.po,303,772,684,368,618,648,1561,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/sfx2/messages.po,149,355,307,138,310,294,1561,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/starmath/messages.po,259,459,496,113,158,132,350,504,967,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/svtools/messages.po,388,847,840,103,205,423,1559,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/svx/messages.po,1099,2364,2272,642,1164,1105,3696,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/sw/messages.po,859,1547,1644,1314,2113,1264,4072,3437,7732,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/swext/mediawiki/help.po,4,4,4,6,8,79,1392,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,5,5,5,7,7,20,169,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/sysui/desktop/share.po,31,119,111,13,64,22,94,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/uui/messages.po,13,88,65,24,80,120,1386,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/vcl/messages.po,87,105,105,74,116,195,516,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/wizards/messages.po,134,715,520,50,83,81,244,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/wizards/source/resources.po,391,1731,1321,84,198,79,357,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/writerperfect/messages.po,1,1,1,5,10,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/xmlsecurity/messages.po,18,26,29,13,50,60,348,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/accessibility/messages.po,6,11,18,1,2,4,14,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/avmedia/messages.po,16,25,25,1,2,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/basctl/messages.po,76,244,308,35,55,44,312,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/basic/messages.po,9,17,19,9,31,117,501,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/chart2/messages.po,134,190,276,192,352,294,826,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/connectivity/messages.po,0,0,0,8,56,98,991,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/cui/messages.po,597,1162,1430,700,1154,1046,3242,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dbaccess/messages.po,323,1839,2239,216,663,273,2008,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/desktop/messages.po,92,450,595,33,349,37,426,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/en/dialog.po,1,1,2,2,3,34,172,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/hu_hu/dialog.po,1,1,1,5,6,26,64,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/ru_ru/dialog.po,3,3,4,1,2,10,21,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/editeng/messages.po,227,543,865,26,82,12,31,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/extensions/messages.po,343,717,992,173,472,147,910,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/extras/source/autocorr/emoji.po,42,38,41,179,171,1354,1608,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/extras/source/gallery/share.po,6,8,8,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/filter/messages.po,41,160,201,30,58,151,600,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/filter/source/config/fragments/filters.po,20,58,71,9,24,191,650,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/filter/source/config/fragments/types.po,3,10,11,4,16,31,95,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/forms/messages.po,51,294,367,1,2,6,34,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/formula/messages.po,287,290,295,76,101,74,122,437,513,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/fpicker/messages.po,28,73,85,17,48,16,42,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/framework/messages.po,17,163,225,6,14,6,33,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/librelogo/source/pythonpath.po,13,13,17,46,46,79,114,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/nlpsolver/src/locale.po,8,8,10,5,6,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/officecfg/registry/data/org/openoffice/office.po,1181,1262,1361,9,12,118,567,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/readlicense_oo/docs.po,18,217,300,0,0,85,2186,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/reportdesign/messages.po,81,105,136,59,105,118,407,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/sc/messages.po,1395,7117,7706,1298,3357,1993,9786,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/scaddins/messages.po,269,1354,1751,220,469,412,1365,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/scp2/source/base.po,8,40,51,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/scp2/source/calc.po,13,41,57,4,33,5,20,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/scp2/source/draw.po,11,45,70,1,5,29,99,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/scp2/source/graphicfilter.po,24,77,138,2,6,4,18,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/scp2/source/impress.po,15,59,81,2,8,4,14,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/scp2/source/math.po,9,39,53,0,0,1,3,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/scp2/source/onlineupdate.po,1,2,3,0,0,1,11,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/scp2/source/quickstart.po,2,15,24,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/scp2/source/winexplorerext.po,2,18,22,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/scp2/source/writer.po,14,37,51,2,7,11,70,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/sd/messages.po,407,1023,1343,333,568,579,1360,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/sfx2/messages.po,188,504,634,133,413,260,1309,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/starmath/messages.po,267,467,619,106,151,129,347,502,965,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/svtools/messages.po,551,1414,1776,75,185,288,1012,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/svx/messages.po,1444,3330,4775,577,1330,825,2564,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/sw/messages.po,1247,2076,2678,1066,1994,1127,3669,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/swext/mediawiki/help.po,7,7,7,3,5,79,1392,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,9,10,11,5,5,18,166,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/sysui/desktop/share.po,43,153,230,9,50,14,74,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/uui/messages.po,14,92,128,29,113,114,1349,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/vcl/messages.po,148,219,253,44,91,164,427,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/wizards/messages.po,143,724,921,44,77,78,241,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/wizards/source/resources.po,424,1804,2358,54,135,76,347,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/writerperfect/messages.po,1,1,1,5,10,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/xmlsecurity/messages.po,16,24,42,16,54,59,346,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/accessibility/messages.po,11,27,30,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/avmedia/messages.po,22,45,56,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/basctl/messages.po,155,611,709,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/basic/messages.po,135,549,620,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/chart2/messages.po,617,1340,1715,0,0,3,28,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/connectivity/messages.po,105,1033,1168,0,0,1,14,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,3,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,3,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/cui/messages.po,2324,5423,6510,0,0,19,135,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dbaccess/messages.po,808,4481,5265,0,0,4,29,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/desktop/messages.po,160,1172,1302,0,0,2,53,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/en/dialog.po,37,176,221,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/hu_hu/dialog.po,32,71,85,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/ru_ru/dialog.po,13,25,31,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/editeng/messages.po,265,656,789,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/extensions/messages.po,660,2080,2386,0,0,3,19,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/extensions/source/update/check/org/openoffice/office.po,1,3,5,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/extras/source/autocorr/emoji.po,1567,1809,1917,0,0,8,8,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/extras/source/gallery/share.po,12,15,16,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/filter/messages.po,222,818,1004,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/filter/source/config/fragments/filters.po,220,732,759,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/filter/source/config/fragments/internalgraphicfilters.po,38,139,142,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/filter/source/config/fragments/types.po,38,121,130,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/forms/messages.po,58,330,360,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/formula/messages.po,417,478,583,0,0,0,0,417,478,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/fpicker/messages.po,61,163,198,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/framework/messages.po,29,210,258,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/librelogo/source/pythonpath.po,138,173,177,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,26,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/nlpsolver/src/locale.po,41,105,126,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/officecfg/registry/data/org/openoffice.po,8,25,37,0,0,1,3,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/officecfg/registry/data/org/openoffice/office.po,1306,1811,1975,0,0,2,30,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/readlicense_oo/docs.po,89,1845,1866,0,0,14,558,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,20,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/reportdesign/messages.po,258,617,758,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/sc/messages.po,4204,15617,16955,11,159,471,4484,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/scaddins/messages.po,895,3091,3039,0,0,4,95,899,3186,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/sccomp/messages.po,12,51,67,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/scp2/source/activex.po,2,16,19,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/scp2/source/base.po,10,44,55,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/scp2/source/calc.po,22,94,114,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/scp2/source/draw.po,41,149,153,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/scp2/source/extensions.po,16,65,78,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/scp2/source/gnome.po,2,11,12,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/scp2/source/graphicfilter.po,30,101,99,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/scp2/source/impress.po,21,81,88,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/scp2/source/math.po,10,42,45,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/scp2/source/onlineupdate.po,2,13,18,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/scp2/source/quickstart.po,2,15,16,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/scp2/source/winexplorerext.po,2,18,20,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/scp2/source/writer.po,27,114,121,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/scp2/source/xsltfilter.po,2,6,8,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/sd/messages.po,1184,2784,3249,0,0,135,167,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/sfx2/messages.po,550,1672,1841,0,0,31,554,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/starmath/messages.po,505,968,1101,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/svtools/messages.po,883,2449,2631,2,21,29,141,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/svx/messages.po,2659,6088,7143,4,95,183,1041,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/sw/messages.po,3163,6473,8012,5,86,272,1180,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/swext/mediawiki/help.po,52,465,507,22,707,15,232,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,4,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,172,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/sysui/desktop/share.po,66,277,310,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/uui/messages.po,145,1209,1308,2,92,10,253,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/vcl/messages.po,269,521,585,0,0,87,216,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/wizards/messages.po,262,1026,1110,3,16,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/wizards/source/resources.po,548,2216,2403,1,10,5,60,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/writerperfect/messages.po,15,40,50,0,0,15,25,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/xmlsecurity/messages.po,89,421,507,0,0,2,3,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/accessibility/messages.po,7,13,13,1,1,3,13,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/avmedia/messages.po,17,27,26,0,0,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/basctl/messages.po,98,394,335,34,50,23,167,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/basic/messages.po,17,49,42,118,500,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/chart2/messages.po,235,526,509,165,277,220,565,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/connectivity/messages.po,102,990,764,0,0,4,57,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/cui/messages.po,614,1392,1273,781,1278,948,2888,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dbaccess/messages.po,433,2679,2188,248,1305,131,526,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/desktop/messages.po,102,521,448,36,366,24,338,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/en/dialog.po,13,37,40,3,8,21,131,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/hu_hu/dialog.po,7,10,12,4,5,21,56,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/pt_br/dialog.po,0,0,0,1,2,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/ru_ru/dialog.po,4,5,5,1,2,9,19,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/editeng/messages.po,66,114,112,75,138,124,404,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/extensions/messages.po,398,1061,953,216,796,49,242,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/extras/source/autocorr/emoji.po,41,38,38,191,182,1343,1597,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/extras/source/gallery/share.po,5,7,8,2,2,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/filter/messages.po,55,232,199,29,49,138,537,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/filter/source/config/fragments/filters.po,93,324,325,10,29,117,379,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/filter/source/config/fragments/internalgraphicfilters.po,35,127,127,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/filter/source/config/fragments/types.po,21,66,68,3,13,14,42,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/forms/messages.po,54,314,250,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/formula/messages.po,314,317,317,63,89,61,108,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/fpicker/messages.po,30,87,75,18,41,13,35,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/framework/messages.po,18,167,140,6,14,5,29,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/auxiliary.po,22,30,31,0,0,83,272,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/sbasic/guide.po,83,1116,883,0,0,20,229,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/sbasic/shared.po,3485,28988,23418,0,0,1020,6443,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/scalc.po,172,861,751,0,0,15,125,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/scalc/guide.po,1310,18357,13917,0,0,159,3236,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/schart.po,84,705,545,0,0,12,226,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/sdraw.po,117,702,615,0,0,6,30,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/sdraw/guide.po,258,2764,2054,0,0,17,308,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/shared.po,207,1768,1449,0,0,43,540,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/shared/autokorr.po,47,403,259,0,0,1,17,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/shared/autopi.po,745,6507,5132,0,0,142,1887,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/shared/explorer/database.po,1449,14276,11003,0,0,192,4581,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/shared/guide.po,2004,27759,22089,0,0,512,8684,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/shared/optionen.po,1229,10979,8794,0,0,705,12372,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/simpress.po,181,1264,1104,0,0,18,131,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/simpress/guide.po,590,7567,5898,0,0,177,2715,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/smath.po,56,609,511,0,0,4,130,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/smath/guide.po,94,1001,885,0,0,10,192,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/swriter.po,214,1268,1112,0,0,122,1678,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/swriter/guide.po,1869,22817,17838,0,0,275,5120,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/swriter/librelogo.po,39,40,40,1,1,286,2978,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/librelogo/source/pythonpath.po,16,18,17,45,47,77,108,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/nlpsolver/src/locale.po,6,6,6,7,8,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/officecfg/registry/data/org/openoffice/office.po,1189,1276,1292,7,10,112,555,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/readlicense_oo/docs.po,24,303,258,3,100,76,2000,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,18,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/reportdesign/messages.po,179,432,406,65,147,14,38,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/sc/messages.po,2215,11144,7861,1020,2735,1451,6381,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/scaddins/messages.po,791,2532,1856,16,21,92,633,899,3186,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/sccomp/messages.po,11,47,45,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/scp2/source/base.po,8,40,36,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/scp2/source/calc.po,17,56,54,3,29,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/scp2/source/draw.po,13,52,48,3,13,25,84,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/scp2/source/graphicfilter.po,28,91,91,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/scp2/source/impress.po,19,74,67,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/scp2/source/math.po,10,42,38,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/scp2/source/onlineupdate.po,2,13,10,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/scp2/source/quickstart.po,2,15,11,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/scp2/source/winexplorerext.po,2,18,17,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/scp2/source/writer.po,22,69,67,0,0,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/sd/messages.po,398,1013,898,351,600,570,1338,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/sfx2/messages.po,177,493,432,151,434,253,1299,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/starmath/messages.po,280,496,482,106,150,119,322,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/svtools/messages.po,554,1416,1514,72,177,288,1018,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/svx/messages.po,1409,3204,3207,604,1367,833,2653,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/sw/messages.po,1149,1960,2010,1187,2168,1105,3612,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/swext/mediawiki/help.po,45,307,235,23,699,21,398,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,142,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/sysui/desktop/share.po,54,210,201,2,20,10,47,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/uui/messages.po,95,929,790,22,141,40,484,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/vcl/messages.po,166,276,263,45,89,145,372,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/wizards/messages.po,204,890,731,37,108,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/wizards/source/resources.po,437,1849,1551,69,275,48,162,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/writerperfect/messages.po,0,0,0,6,11,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/xmlsecurity/messages.po,18,37,35,20,121,53,266,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/accessibility/messages.po,11,27,25,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/avmedia/messages.po,18,38,37,2,2,2,5,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/basctl/messages.po,149,602,570,6,9,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/basic/messages.po,91,357,366,44,192,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/chart2/messages.po,548,1194,1293,53,101,19,73,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/connectivity/messages.po,104,1017,838,0,0,2,30,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,6,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/cui/messages.po,2008,4679,5201,121,232,214,647,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dbaccess/messages.po,686,4144,3782,113,275,13,91,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/desktop/messages.po,153,1096,1078,5,50,4,79,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/en/dialog.po,37,176,186,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/hu_hu/dialog.po,32,71,73,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/ru_ru/dialog.po,13,25,28,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/editeng/messages.po,258,641,687,3,4,4,11,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/extensions/messages.po,557,1850,1803,92,163,14,86,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/extras/source/autocorr/emoji.po,57,50,51,203,200,1315,1567,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/extras/source/gallery/share.po,11,14,14,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/filter/messages.po,215,798,885,1,4,6,16,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/filter/source/config/fragments/filters.po,169,587,580,5,11,46,134,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/filter/source/config/fragments/internalgraphicfilters.po,38,139,139,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/filter/source/config/fragments/types.po,25,85,85,1,5,12,31,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/forms/messages.po,57,321,259,0,0,1,9,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/formula/messages.po,396,446,450,12,14,28,50,436,510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/fpicker/messages.po,43,120,140,7,11,11,32,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/framework/messages.po,21,193,148,6,14,2,3,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/librelogo/source/pythonpath.po,137,170,197,1,3,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,22,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/nlpsolver/src/locale.po,41,105,110,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/officecfg/registry/data/org/openoffice/office.po,1233,1420,2148,11,26,64,395,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/readlicense_oo/docs.po,81,1590,1368,1,85,21,728,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,14,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/reportdesign/messages.po,236,551,460,22,66,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/sc/messages.po,2743,13008,9892,897,2491,1046,4761,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/scaddins/messages.po,835,2579,2036,14,18,52,591,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/sccomp/messages.po,12,51,45,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/scp2/source/base.po,10,44,45,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/scp2/source/calc.po,19,81,79,1,4,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/scp2/source/draw.po,15,60,58,3,12,23,77,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/scp2/source/extensions.po,16,65,72,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/scp2/source/graphicfilter.po,28,91,91,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/scp2/source/impress.po,19,74,76,2,7,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/scp2/source/math.po,10,42,44,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/scp2/source/onlineupdate.po,2,13,13,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/scp2/source/python.po,2,7,7,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/scp2/source/quickstart.po,2,15,13,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/scp2/source/writer.po,22,69,68,1,4,4,41,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/sd/messages.po,532,1325,1293,343,625,444,1001,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/sfx2/messages.po,271,756,791,144,493,166,977,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/starmath/messages.po,312,536,550,89,129,99,298,500,963,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/svtools/messages.po,730,1884,1812,68,390,116,337,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/svx/messages.po,1794,4071,4204,526,1262,526,1891,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/sw/messages.po,2514,5135,5825,445,1192,481,1412,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/swext/mediawiki/help.po,47,353,306,26,817,16,234,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,5,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,179,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/sysui/desktop/share.po,65,261,261,1,16,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/uui/messages.po,130,1113,1043,10,125,17,316,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/vcl/messages.po,255,499,536,9,11,92,227,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/wizards/messages.po,262,1039,955,3,3,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/wizards/source/resources.po,500,2029,1820,46,196,8,61,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/writerperfect/messages.po,2,3,3,4,8,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/xmlsecurity/messages.po,67,331,316,7,27,17,66,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/accessibility/messages.po,11,27,28,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/avmedia/messages.po,22,45,46,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/basctl/messages.po,155,611,684,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/basic/messages.po,17,49,62,118,500,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/chart2/messages.po,289,628,668,170,295,161,445,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/connectivity/messages.po,105,1033,1045,0,0,1,14,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,7,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/cui/messages.po,1040,2469,2562,640,1101,663,1988,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dbaccess/messages.po,469,2919,2903,222,1081,121,510,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/desktop/messages.po,105,544,657,25,153,32,528,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/en/dialog.po,37,176,193,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/hu_hu/dialog.po,32,71,73,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/ru_ru/dialog.po,13,25,26,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/editeng/messages.po,263,655,717,1,1,1,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/extensions/messages.po,419,1095,1189,202,773,42,231,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/extras/source/autocorr/emoji.po,74,75,77,224,213,1277,1529,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/extras/source/gallery/share.po,11,14,14,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/filter/messages.po,75,275,275,37,74,110,469,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/filter/source/config/fragments/filters.po,105,380,382,14,50,101,302,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/filter/source/config/fragments/internalgraphicfilters.po,35,127,127,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/filter/source/config/fragments/types.po,21,66,66,3,13,14,42,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/forms/messages.po,58,330,333,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/formula/messages.po,321,324,331,53,79,60,107,434,510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/fpicker/messages.po,58,159,171,0,0,3,4,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/framework/messages.po,29,210,224,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/librelogo/source/pythonpath.po,76,80,94,3,3,59,90,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,26,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/nlpsolver/src/locale.po,41,105,112,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/officecfg/registry/data/org/openoffice/office.po,1192,1280,1304,7,10,109,551,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/readlicense_oo/docs.po,73,1381,1399,1,85,29,937,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,23,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/reportdesign/messages.po,179,438,449,65,141,14,38,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/sc/messages.po,2647,12456,11940,827,2346,1212,5458,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/scaddins/messages.po,786,2528,2240,12,16,103,644,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/sccomp/messages.po,14,65,64,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/scp2/source/base.po,10,44,47,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/scp2/source/calc.po,19,81,91,1,4,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/scp2/source/draw.po,15,60,61,1,5,25,84,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/scp2/source/extensions.po,15,51,53,0,0,1,14,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/scp2/source/graphicfilter.po,28,91,91,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/scp2/source/impress.po,19,74,77,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/scp2/source/math.po,10,42,43,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/scp2/source/onlineupdate.po,2,13,13,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/scp2/source/quickstart.po,2,15,20,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/scp2/source/winexplorerext.po,2,18,22,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/scp2/source/writer.po,24,102,109,0,0,3,12,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/sd/messages.po,492,1263,1306,342,595,485,1093,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/sfx2/messages.po,239,714,773,145,430,197,1082,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/starmath/messages.po,306,528,519,91,133,107,306,504,967,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/svtools/messages.po,678,1743,1812,56,191,180,677,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/svx/messages.po,1642,3779,3849,509,1180,695,2265,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/sw/messages.po,1693,3110,3317,873,1727,875,2903,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/swext/mediawiki/help.po,49,429,467,23,676,17,299,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,170,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/sysui/desktop/share.po,66,277,294,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/uui/messages.po,99,938,1062,19,162,39,454,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/vcl/messages.po,206,361,399,23,52,127,324,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/wizards/messages.po,234,981,1040,7,17,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/wizards/source/resources.po,458,2028,2126,48,96,48,162,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/writerperfect/messages.po,1,2,2,5,9,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/xmlsecurity/messages.po,18,37,40,27,133,46,254,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/accessibility/messages.po,11,27,29,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/avmedia/messages.po,22,45,44,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/basctl/messages.po,155,611,569,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/basic/messages.po,135,549,549,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/chart2/messages.po,620,1368,1430,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/connectivity/messages.po,106,1047,932,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,4,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/cui/messages.po,2342,5557,5542,0,0,1,1,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dbaccess/messages.po,812,4510,3973,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/desktop/messages.po,162,1225,1119,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/en/dialog.po,37,176,174,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/hu_hu/dialog.po,32,71,68,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/ru_ru/dialog.po,14,26,25,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/editeng/messages.po,265,656,687,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/extensions/messages.po,663,2099,1943,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/extras/source/autocorr/emoji.po,1575,1817,2019,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/extras/source/gallery/share.po,12,15,15,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/filter/messages.po,222,818,794,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/filter/source/config/fragments/filters.po,220,732,756,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/filter/source/config/fragments/internalgraphicfilters.po,38,139,139,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/filter/source/config/fragments/types.po,38,121,135,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/forms/messages.po,58,330,271,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/formula/messages.po,433,509,721,0,0,1,1,434,510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/fpicker/messages.po,61,163,155,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/framework/messages.po,29,210,174,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/auxiliary.po,105,302,317,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/sbasic/guide.po,103,1345,1212,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/sbasic/shared.po,4464,35164,31036,0,0,41,267,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/scalc.po,187,986,913,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/scalc/guide.po,1455,21277,18564,0,0,14,316,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/schart.po,96,931,791,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/sdraw.po,123,732,690,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/sdraw/guide.po,272,2992,2592,0,0,3,80,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/shared.po,240,2133,1860,0,0,10,175,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/shared/autokorr.po,48,420,309,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/shared/autopi.po,872,8202,7084,0,0,15,192,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/shared/explorer/database.po,1521,15820,13889,0,0,120,3037,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/shared/guide.po,2398,34306,31071,0,0,118,2137,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/shared/help.po,43,55,56,0,0,35,62,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/shared/menu.po,16,120,112,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/shared/optionen.po,1850,21674,19343,0,0,84,1677,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/simpress.po,197,1363,1157,0,0,2,32,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/simpress/guide.po,664,9023,7690,0,0,103,1259,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/smath.po,59,722,617,0,0,1,17,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/smath/guide.po,104,1193,1079,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/swriter.po,301,2498,2237,0,0,35,448,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/swriter/guide.po,2026,25814,22581,0,0,118,2123,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/swriter/librelogo.po,319,2865,2746,0,0,7,154,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/helpcontent2/source/text/swriter/menu.po,17,96,91,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/librelogo/source/pythonpath.po,138,173,172,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,22,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/nlpsolver/src/locale.po,41,105,103,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/officecfg/registry/data/org/openoffice.po,9,28,29,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/officecfg/registry/data/org/openoffice/office.po,1308,1841,1814,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/readlicense_oo/docs.po,103,2403,2146,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,13,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/reportdesign/messages.po,258,617,591,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/sc/messages.po,4683,20239,17241,0,0,3,21,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/scaddins/messages.po,901,3188,3084,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/sccomp/messages.po,14,65,67,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/scp2/source/activex.po,2,16,16,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/scp2/source/base.po,10,44,42,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/scp2/source/calc.po,22,94,98,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/scp2/source/draw.po,41,149,147,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/scp2/source/extensions.po,16,65,66,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/scp2/source/gnome.po,2,11,14,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/scp2/source/graphicfilter.po,30,101,139,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/scp2/source/impress.po,21,81,84,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/scp2/source/math.po,10,42,43,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/scp2/source/onlineupdate.po,2,13,9,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/scp2/source/quickstart.po,2,15,13,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/scp2/source/winexplorerext.po,2,18,17,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/scp2/source/writer.po,27,114,126,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/sd/messages.po,1319,2951,2953,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/sfx2/messages.po,581,2226,2045,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/starmath/messages.po,505,968,1039,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/svtools/messages.po,911,2602,2494,0,0,3,9,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/svx/messages.po,2845,7222,7047,0,0,1,2,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/sw/messages.po,3439,7733,7769,0,0,1,6,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/swext/mediawiki/help.po,89,1404,1256,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,145,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/sysui/desktop/share.po,66,277,298,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/uui/messages.po,157,1554,1389,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/vcl/messages.po,322,644,632,0,0,34,93,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/wizards/messages.po,265,1042,931,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/wizards/source/resources.po,554,2286,1950,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/writerperfect/messages.po,30,65,66,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/xmlsecurity/messages.po,91,424,404,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/accessibility/messages.po,11,27,27,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/avmedia/messages.po,22,45,50,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/basctl/messages.po,155,611,667,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/basic/messages.po,135,549,664,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/chart2/messages.po,620,1368,1672,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/connectivity/messages.po,106,1047,1141,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,7,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,5,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,3,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/cui/messages.po,2343,5558,6413,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dbaccess/messages.po,812,4510,4972,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/desktop/messages.po,162,1225,1351,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/en/dialog.po,37,176,193,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/hu_hu/dialog.po,32,71,79,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/pt_br/dialog.po,2,5,6,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/ru_ru/dialog.po,14,26,30,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/editeng/messages.po,265,656,725,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/extensions/messages.po,663,2099,2361,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/extras/source/autocorr/emoji.po,1575,1817,1953,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/extras/source/gallery/share.po,12,15,20,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/filter/messages.po,222,818,910,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/filter/source/config/fragments/filters.po,220,732,814,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/filter/source/config/fragments/internalgraphicfilters.po,38,139,137,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/filter/source/config/fragments/types.po,38,121,148,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/forms/messages.po,58,330,347,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/formula/messages.po,438,514,594,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/fpicker/messages.po,61,163,170,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/framework/messages.po,29,210,229,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/auxiliary.po,105,302,355,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/sbasic/guide.po,103,1345,1523,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/sbasic/shared.po,4505,35431,37569,0,0,0,0,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/scalc.po,187,986,1081,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/scalc/guide.po,1469,21593,22430,0,0,0,0,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/schart.po,96,931,1055,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/sdraw.po,123,732,777,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/sdraw/guide.po,275,3072,3246,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/shared.po,250,2308,2483,0,0,0,0,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/shared/autokorr.po,48,420,403,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/shared/autopi.po,887,8394,8982,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/shared/explorer/database.po,1641,18857,20832,0,0,0,0,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/shared/guide.po,2516,36443,39758,0,0,0,0,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/shared/help.po,78,117,153,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/shared/menu.po,16,120,134,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/shared/optionen.po,1934,23351,25037,0,0,0,0,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/simpress.po,199,1395,1515,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/simpress/guide.po,767,10282,11029,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/smath.po,60,739,793,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/smath/guide.po,104,1193,1222,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/swriter.po,336,2946,3297,0,0,0,0,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/swriter/guide.po,2144,27937,29003,0,0,0,0,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/swriter/librelogo.po,326,3019,3328,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/helpcontent2/source/text/swriter/menu.po,17,96,118,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/librelogo/source/pythonpath.po,138,173,173,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,24,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/nlpsolver/src/locale.po,41,105,130,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/officecfg/registry/data/org/openoffice.po,9,28,40,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/officecfg/registry/data/org/openoffice/office.po,1308,1841,1948,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/readlicense_oo/docs.po,103,2403,2448,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,18,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/reportdesign/messages.po,258,617,693,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/sc/messages.po,4686,20260,21222,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/scaddins/messages.po,901,3188,3437,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/sccomp/messages.po,14,65,82,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/scp2/source/activex.po,2,16,22,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/scp2/source/base.po,10,44,54,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/scp2/source/calc.po,22,94,104,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/scp2/source/draw.po,41,149,156,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/scp2/source/extensions.po,16,65,78,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/scp2/source/gnome.po,2,11,11,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/scp2/source/graphicfilter.po,30,101,140,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/scp2/source/impress.po,21,81,92,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/scp2/source/math.po,10,42,47,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/scp2/source/quickstart.po,2,15,20,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/scp2/source/winexplorerext.po,2,18,20,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/scp2/source/writer.po,27,114,129,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/scp2/source/xsltfilter.po,2,6,8,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/sd/messages.po,1319,2951,3372,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/sfx2/messages.po,581,2226,2370,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/starmath/messages.po,505,968,1097,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/svtools/messages.po,914,2611,2855,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/svx/messages.po,2846,7224,8102,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/sw/messages.po,3441,7740,9017,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/swext/mediawiki/help.po,89,1404,1486,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,179,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/sysui/desktop/share.po,66,277,345,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/uui/messages.po,157,1554,1646,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/vcl/messages.po,356,737,823,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/wizards/messages.po,265,1042,1115,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/wizards/source/resources.po,554,2286,2352,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/writerperfect/messages.po,30,65,77,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/xmlsecurity/messages.po,91,424,462,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/accessibility/messages.po,11,27,28,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/avmedia/messages.po,22,45,49,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/basctl/messages.po,155,611,687,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/basic/messages.po,135,549,647,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/chart2/messages.po,620,1368,1646,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/connectivity/messages.po,106,1047,1119,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,3,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,7,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,5,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,3,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/cui/messages.po,2343,5558,6263,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dbaccess/messages.po,812,4510,4837,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/desktop/messages.po,162,1225,1306,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/en/dialog.po,37,176,183,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/hu_hu/dialog.po,32,71,79,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/pt_br/dialog.po,2,5,7,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/ru_ru/dialog.po,14,26,30,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/editeng/messages.po,265,656,724,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/extensions/messages.po,663,2099,2317,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/extras/source/autocorr/emoji.po,1572,1813,1963,0,0,3,4,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/extras/source/gallery/share.po,12,15,16,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/filter/messages.po,222,818,895,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/filter/source/config/fragments/filters.po,220,732,912,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/filter/source/config/fragments/internalgraphicfilters.po,38,139,138,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/filter/source/config/fragments/types.po,38,121,172,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/forms/messages.po,58,330,346,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/formula/messages.po,438,514,594,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/fpicker/messages.po,61,163,175,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/framework/messages.po,29,210,207,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/auxiliary.po,105,302,357,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/sbasic/guide.po,103,1345,1601,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/sbasic/shared.po,4217,32854,34596,0,0,288,2577,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/scalc.po,187,986,1075,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/scalc/guide.po,1468,21546,21993,0,0,1,47,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/schart.po,96,931,1040,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/sdraw.po,123,732,771,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/sdraw/guide.po,275,3072,3222,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/shared.po,250,2308,2468,0,0,0,0,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/shared/autokorr.po,48,420,450,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/shared/autopi.po,887,8394,8961,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/shared/explorer/database.po,1563,16357,18297,0,0,78,2500,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/shared/guide.po,2364,32903,35904,0,0,152,3540,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/shared/help.po,78,117,127,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/shared/menu.po,16,120,146,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/shared/optionen.po,1880,21821,23705,0,0,54,1530,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/simpress.po,199,1395,1519,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/simpress/guide.po,767,10282,11117,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/smath.po,60,739,782,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/smath/guide.po,104,1193,1223,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/swriter.po,336,2946,3212,0,0,0,0,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/swriter/guide.po,2143,27934,29035,0,0,1,3,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/swriter/librelogo.po,326,3019,3224,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/helpcontent2/source/text/swriter/menu.po,17,96,115,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/librelogo/source/pythonpath.po,138,173,171,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,26,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/nlpsolver/src/locale.po,41,105,131,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/officecfg/registry/data/org/openoffice.po,9,28,40,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/officecfg/registry/data/org/openoffice/office.po,1308,1841,1941,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/readlicense_oo/docs.po,103,2403,2432,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,18,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/reportdesign/messages.po,258,617,667,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/sc/messages.po,4686,20260,22688,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/scaddins/messages.po,901,3188,4948,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/sccomp/messages.po,14,65,84,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/scp2/source/activex.po,2,16,21,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/scp2/source/base.po,10,44,53,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/scp2/source/calc.po,22,94,131,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/scp2/source/draw.po,41,149,157,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/scp2/source/extensions.po,16,65,73,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/scp2/source/gnome.po,2,11,11,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/scp2/source/graphicfilter.po,30,101,149,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/scp2/source/impress.po,21,81,91,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/scp2/source/math.po,10,42,46,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/scp2/source/onlineupdate.po,2,13,13,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/scp2/source/quickstart.po,2,15,17,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/scp2/source/winexplorerext.po,2,18,23,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/scp2/source/writer.po,27,114,144,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/scp2/source/xsltfilter.po,2,6,8,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/sd/messages.po,1319,2951,3309,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/sfx2/messages.po,581,2226,2326,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/starmath/messages.po,505,968,1098,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/svtools/messages.po,914,2611,2872,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/svx/messages.po,2846,7224,7997,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/sw/messages.po,3441,7740,8907,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/swext/mediawiki/help.po,89,1404,1489,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,4,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,175,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/sysui/desktop/share.po,66,277,369,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/uui/messages.po,157,1554,1600,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/vcl/messages.po,356,737,800,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/wizards/messages.po,265,1042,1089,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/wizards/source/resources.po,554,2286,2352,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/writerperfect/messages.po,30,65,72,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/xmlsecurity/messages.po,91,424,459,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/accessibility/messages.po,11,27,30,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/avmedia/messages.po,22,45,43,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/basctl/messages.po,155,611,597,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/basic/messages.po,135,549,590,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/chart2/messages.po,617,1340,1504,0,0,3,28,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/connectivity/messages.po,105,1033,1032,0,0,1,14,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,3,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/cui/messages.po,2198,5190,5451,24,51,121,317,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dbaccess/messages.po,802,4462,4481,0,0,10,48,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/desktop/messages.po,160,1172,1167,0,0,2,53,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/en/dialog.po,37,176,191,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/hu_hu/dialog.po,32,71,83,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/ru_ru/dialog.po,13,25,28,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/editeng/messages.po,263,655,718,1,1,1,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/extensions/messages.po,657,2073,2148,1,5,5,21,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/extras/source/autocorr/emoji.po,1104,1313,1378,0,0,471,504,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/extras/source/gallery/share.po,11,14,16,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/filter/messages.po,222,818,858,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/filter/source/config/fragments/filters.po,189,646,681,1,2,30,84,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/filter/source/config/fragments/internalgraphicfilters.po,38,139,139,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/filter/source/config/fragments/types.po,28,95,107,0,0,10,26,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/forms/messages.po,58,330,352,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/formula/messages.po,432,508,507,5,5,1,1,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/fpicker/messages.po,54,148,149,2,3,5,12,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/framework/messages.po,29,210,204,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/auxiliary.po,92,266,310,0,0,13,36,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/sbasic/guide.po,17,238,216,0,0,86,1107,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/sbasic/shared.po,0,0,0,0,0,4505,35431,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/scalc.po,4,23,27,0,0,183,963,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/scalc/guide.po,0,0,0,0,0,1469,21593,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/schart.po,0,0,0,0,0,96,931,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/sdraw.po,0,0,0,0,0,123,732,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/sdraw/guide.po,0,0,0,0,0,275,3072,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/shared.po,0,0,0,0,0,250,2308,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/shared/autokorr.po,0,0,0,0,0,48,420,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/shared/autopi.po,0,0,0,0,0,887,8394,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/shared/explorer/database.po,0,0,0,0,0,1641,18857,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/shared/guide.po,0,0,0,0,0,2516,36443,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/shared/optionen.po,0,0,0,0,0,1934,23351,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/simpress.po,9,19,20,0,0,190,1376,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/simpress/guide.po,0,0,0,0,0,767,10282,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/smath.po,0,0,0,0,0,60,739,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/smath/guide.po,0,0,0,0,0,104,1193,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/swriter.po,0,0,0,0,0,336,2946,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/swriter/guide.po,0,0,0,0,0,2144,27937,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/swriter/librelogo.po,55,105,119,0,0,271,2914,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/librelogo/source/pythonpath.po,138,173,173,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,19,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/nlpsolver/src/locale.po,41,105,126,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/officecfg/registry/data/org/openoffice.po,8,25,27,0,0,1,3,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/officecfg/registry/data/org/openoffice/office.po,1300,1827,1828,1,4,7,10,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/readlicense_oo/docs.po,89,1845,1833,0,0,14,558,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,10,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/reportdesign/messages.po,258,617,666,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/sc/messages.po,3769,17071,15685,538,1595,379,1594,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/scaddins/messages.po,901,3188,2800,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/sccomp/messages.po,12,51,56,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/scp2/source/activex.po,2,16,17,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/scp2/source/base.po,10,44,50,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/scp2/source/calc.po,22,94,118,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/scp2/source/draw.po,41,149,147,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/scp2/source/extensions.po,16,65,73,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/scp2/source/gnome.po,1,2,3,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/scp2/source/graphicfilter.po,30,101,139,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/scp2/source/impress.po,21,81,80,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/scp2/source/math.po,10,42,41,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/scp2/source/onlineupdate.po,2,13,11,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/scp2/source/python.po,2,7,10,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/scp2/source/quickstart.po,2,15,18,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/scp2/source/winexplorerext.po,2,18,20,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/scp2/source/writer.po,27,114,118,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/scp2/source/xsltfilter.po,2,6,8,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/sd/messages.po,989,2403,2491,120,238,210,310,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/sfx2/messages.po,515,1878,1855,5,7,61,341,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/starmath/messages.po,501,963,1014,2,3,0,0,503,966,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/svtools/messages.po,852,2414,2473,5,5,57,192,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/svx/messages.po,2385,5808,6006,195,504,266,912,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/sw/messages.po,3051,6699,7276,133,370,257,671,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/swext/mediawiki/help.po,47,353,350,26,817,16,234,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,175,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/sysui/desktop/share.po,66,277,321,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/uui/messages.po,145,1266,1265,1,31,11,257,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/vcl/messages.po,267,519,543,2,2,87,216,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/wizards/messages.po,263,1040,1105,2,2,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/wizards/source/resources.po,505,2073,2045,46,212,3,1,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/writerperfect/messages.po,2,3,4,4,8,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/xmlsecurity/messages.po,83,392,405,2,10,6,22,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/accessibility/messages.po,11,27,22,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/avmedia/messages.po,22,45,38,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/basctl/messages.po,155,611,515,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/basic/messages.po,135,549,494,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/chart2/messages.po,620,1368,1353,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/connectivity/messages.po,106,1047,788,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,3,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/cui/messages.po,2343,5558,5068,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dbaccess/messages.po,812,4510,3690,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/desktop/messages.po,162,1225,1005,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/en/dialog.po,37,176,149,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/hu_hu/dialog.po,32,71,68,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/pt_br/dialog.po,2,5,4,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/ru_ru/dialog.po,14,26,21,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,4,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/editeng/messages.po,265,656,652,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/extensions/messages.po,663,2099,1820,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/extras/source/autocorr/emoji.po,1104,1313,1502,0,0,471,504,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/extras/source/gallery/share.po,12,15,15,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/filter/messages.po,222,818,753,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/filter/source/config/fragments/filters.po,220,732,748,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/filter/source/config/fragments/internalgraphicfilters.po,38,139,138,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/filter/source/config/fragments/types.po,38,121,129,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/forms/messages.po,58,330,258,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/formula/messages.po,438,514,523,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/fpicker/messages.po,61,163,140,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/framework/messages.po,29,210,159,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/auxiliary.po,92,266,270,0,0,13,36,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/sbasic/guide.po,86,1147,1072,0,0,17,198,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/sbasic/shared.po,3518,29389,25150,0,0,987,6042,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/scalc.po,187,986,901,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/scalc/guide.po,1357,19438,16390,0,0,112,2155,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/schart.po,88,796,756,0,0,8,135,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/sdraw.po,121,724,659,0,0,2,8,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/sdraw/guide.po,266,2860,2404,0,0,9,212,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/shared.po,218,1962,1639,0,0,32,346,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/shared/autokorr.po,47,403,288,0,0,1,17,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/shared/autopi.po,752,6507,5178,0,0,135,1887,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/shared/explorer/database.po,1458,14344,12063,0,0,183,4513,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/shared/guide.po,2060,28665,24873,0,0,456,7778,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/shared/optionen.po,1252,11507,9992,0,0,682,11844,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/simpress.po,197,1363,1186,0,0,2,32,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/simpress/guide.po,603,7919,6760,0,0,164,2363,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/smath.po,56,609,550,0,0,4,130,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/smath/guide.po,95,1030,944,0,0,9,163,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/swriter.po,245,1959,1736,0,0,91,987,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/swriter/guide.po,1902,23418,19817,0,0,242,4519,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/swriter/librelogo.po,42,54,53,1,1,283,2964,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/librelogo/source/pythonpath.po,138,173,167,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,17,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/nlpsolver/src/locale.po,41,105,99,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/officecfg/registry/data/org/openoffice.po,9,28,27,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/officecfg/registry/data/org/openoffice/office.po,1308,1841,1754,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/readlicense_oo/docs.po,103,2403,2026,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,11,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/reportdesign/messages.po,258,617,564,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/sc/messages.po,4686,20260,15689,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/scaddins/messages.po,901,3188,3093,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/sccomp/messages.po,14,65,61,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/scp2/source/activex.po,2,16,17,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/scp2/source/base.po,10,44,48,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/scp2/source/calc.po,22,94,97,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/scp2/source/draw.po,41,149,147,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/scp2/source/extensions.po,16,65,69,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/scp2/source/gnome.po,2,11,10,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/scp2/source/graphicfilter.po,30,101,118,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/scp2/source/impress.po,21,81,78,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/scp2/source/math.po,10,42,39,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/scp2/source/onlineupdate.po,2,13,7,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/scp2/source/quickstart.po,2,15,15,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/scp2/source/winexplorerext.po,2,18,15,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/scp2/source/writer.po,27,114,109,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/sd/messages.po,1319,2951,2796,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/sfx2/messages.po,581,2226,1873,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/starmath/messages.po,505,968,939,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/svtools/messages.po,912,2603,2381,0,0,2,8,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/svx/messages.po,2846,7224,6725,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/sw/messages.po,3441,7740,7423,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/swext/mediawiki/help.po,89,1404,1075,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,129,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/sysui/desktop/share.po,66,277,278,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/uui/messages.po,157,1554,1196,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/vcl/messages.po,354,727,681,0,0,2,10,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/wizards/messages.po,265,1042,830,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/wizards/source/resources.po,554,2286,1788,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/writerperfect/messages.po,30,65,64,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/xmlsecurity/messages.po,91,424,319,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/accessibility/messages.po,11,27,26,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/avmedia/messages.po,22,45,42,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/basctl/messages.po,116,487,403,20,22,19,102,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/basic/messages.po,10,21,17,118,500,7,28,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/chart2/messages.po,216,415,433,160,313,244,640,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/connectivity/messages.po,6,61,47,8,56,92,930,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,6,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/cui/messages.po,475,650,648,658,1037,1210,3871,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dbaccess/messages.po,358,2163,1648,226,1017,228,1330,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/desktop/messages.po,85,362,318,24,119,53,744,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/en/dialog.po,1,1,1,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/hu_hu/dialog.po,1,1,1,5,8,26,62,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/ru_ru/dialog.po,2,2,3,2,4,10,20,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/editeng/messages.po,69,112,122,63,105,133,439,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/extensions/messages.po,388,945,892,210,826,65,328,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/extras/source/autocorr/emoji.po,43,39,39,182,174,1350,1604,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/extras/source/gallery/share.po,6,8,8,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/filter/messages.po,43,162,136,29,57,150,599,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/filter/source/config/fragments/filters.po,78,268,285,10,25,132,439,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/filter/source/config/fragments/internalgraphicfilters.po,35,127,132,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/filter/source/config/fragments/types.po,15,41,49,3,12,20,68,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/forms/messages.po,54,314,243,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/formula/messages.po,292,295,297,64,87,82,132,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/fpicker/messages.po,31,77,72,15,45,15,41,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/framework/messages.po,14,152,117,6,14,9,44,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/librelogo/source/pythonpath.po,14,16,16,45,47,79,110,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/nlpsolver/src/locale.po,10,10,10,3,4,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/officecfg/registry/data/org/openoffice/office.po,1187,1274,1602,8,11,113,556,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/readlicense_oo/docs.po,0,0,0,1,1,102,2402,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/reportdesign/messages.po,169,391,387,57,112,32,114,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/sc/messages.po,2170,10770,8016,965,2646,1551,6844,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/scaddins/messages.po,781,2471,2082,23,79,97,638,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/scp2/source/base.po,8,40,46,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/scp2/source/calc.po,15,48,50,4,33,3,13,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/scp2/source/draw.po,13,52,54,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/scp2/source/gnome.po,1,2,3,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/scp2/source/graphicfilter.po,28,91,95,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/scp2/source/impress.po,17,66,72,2,8,2,7,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/scp2/source/math.po,10,42,40,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/scp2/source/onlineupdate.po,2,13,10,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/scp2/source/quickstart.po,2,15,15,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/scp2/source/winexplorerext.po,2,18,19,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/scp2/source/writer.po,17,50,56,2,7,8,57,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/sd/messages.po,387,925,834,337,625,595,1401,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/sfx2/messages.po,174,464,392,130,364,277,1398,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/starmath/messages.po,273,475,461,102,144,129,348,504,967,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/svl/messages.po,0,0,0,1,1,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/svtools/messages.po,507,1266,1213,73,189,334,1156,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/svx/messages.po,1305,2949,2924,552,1268,989,3007,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/sw/messages.po,1248,2040,2200,1045,1955,1147,3744,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/swext/mediawiki/help.po,6,6,6,4,6,79,1392,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,4,4,4,9,9,19,168,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/sysui/desktop/share.po,35,125,145,13,66,18,86,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/uui/messages.po,65,595,486,24,139,68,820,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/vcl/messages.po,131,180,168,43,81,182,476,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/wizards/messages.po,229,985,819,12,13,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/wizards/source/resources.po,447,1847,1495,49,239,58,200,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/writerperfect/messages.po,1,1,1,5,10,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/xmlsecurity/messages.po,20,39,35,16,58,55,327,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/accessibility/messages.po,7,13,10,1,1,3,13,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/avmedia/messages.po,16,26,20,1,1,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/basctl/messages.po,111,443,326,33,49,11,119,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/basic/messages.po,17,49,43,118,500,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/chart2/messages.po,340,737,573,150,310,130,321,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/connectivity/messages.po,94,914,602,8,56,4,77,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/connectivity/registry/calc/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,3,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,1,5,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/cui/messages.po,843,1840,1524,740,1300,760,2418,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dbaccess/messages.po,477,2736,1948,235,1272,100,502,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/desktop/messages.po,104,474,353,33,382,25,369,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/en/dialog.po,1,1,1,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/en/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/hu_hu/dialog.po,2,2,2,6,9,24,60,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/pt_br/dialog.po,1,2,2,0,0,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/ru_ru/dialog.po,4,4,4,2,4,8,18,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/editeng/messages.po,178,479,411,72,118,15,59,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/extensions/messages.po,419,1244,839,201,677,43,178,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/extras/source/autocorr/emoji.po,46,43,43,193,184,1336,1590,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/extras/source/gallery/share.po,6,8,7,2,2,4,5,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/filter/messages.po,94,389,307,37,102,91,327,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/filter/source/config/fragments/filters.po,86,303,248,12,34,122,395,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/filter/source/config/fragments/internalgraphicfilters.po,35,127,102,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/filter/source/config/fragments/types.po,20,62,52,3,13,15,46,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/forms/messages.po,54,314,202,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/formula/messages.po,98,101,103,70,74,265,334,433,509,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/fpicker/messages.po,30,76,72,17,48,14,39,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/framework/messages.po,18,167,140,6,14,5,29,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/librelogo/source/pythonpath.po,34,36,41,39,41,65,96,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/nlpsolver/src/locale.po,7,7,7,6,7,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/officecfg/registry/data/org/openoffice/office.po,1238,1499,1506,23,54,47,288,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/readlicense_oo/docs.po,67,1304,1045,2,86,34,1013,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/reportdesign/messages.po,191,462,352,55,124,12,31,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/sc/messages.po,2478,11965,7096,990,2762,1218,5533,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/scaddins/messages.po,785,2475,1395,21,77,95,636,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/sccomp/messages.po,11,47,31,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/scp2/source/base.po,8,40,33,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/scp2/source/calc.po,15,48,44,5,37,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/scp2/source/draw.po,13,52,47,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/scp2/source/extensions.po,1,14,14,3,9,12,42,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/scp2/source/graphicfilter.po,28,91,88,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/scp2/source/impress.po,17,66,59,3,12,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/scp2/source/math.po,10,42,35,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/scp2/source/onlineupdate.po,2,13,10,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/scp2/source/quickstart.po,2,15,12,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/scp2/source/winexplorerext.po,2,18,15,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/scp2/source/writer.po,20,62,49,2,7,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/scp2/source/xsltfilter.po,2,6,4,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/sd/messages.po,484,1140,924,358,679,477,1132,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/sfx2/messages.po,186,557,456,166,433,229,1236,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/starmath/messages.po,270,472,367,113,159,117,332,500,963,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/svl/messages.po,0,0,0,1,1,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/svtools/messages.po,583,1422,1196,79,187,252,1002,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/svx/messages.po,1524,3530,2616,590,1371,732,2323,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/sw/messages.po,1544,3149,2598,1068,2077,829,2514,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/swext/mediawiki/help.po,44,304,217,24,702,21,398,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,5,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,125,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/sysui/desktop/share.po,39,155,115,14,66,13,56,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/uui/messages.po,103,949,676,26,163,28,442,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/vcl/messages.po,150,243,235,55,117,151,377,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/wizards/messages.po,221,975,628,20,23,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/wizards/source/resources.po,418,1817,1224,88,295,48,174,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/writerperfect/messages.po,0,0,0,6,11,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/xmlsecurity/messages.po,32,131,116,20,106,39,187,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/accessibility/messages.po,1,1,1,0,0,10,26,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/avmedia/messages.po,0,0,0,0,0,22,45,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/basctl/messages.po,0,0,0,0,0,155,611,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/basic/messages.po,0,0,0,8,23,127,526,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/chart2/messages.po,0,0,0,0,0,620,1368,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/connectivity/messages.po,0,0,0,0,0,106,1047,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/connectivity/registry/calc/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/connectivity/registry/flat/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/cui/messages.po,0,0,0,9,12,2334,5546,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dbaccess/messages.po,2,2,2,3,3,807,4505,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/desktop/messages.po,0,0,0,0,0,162,1225,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/en/dialog.po,0,0,0,0,0,37,176,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/hu_hu/dialog.po,0,0,0,0,0,32,71,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/ru_ru/dialog.po,0,0,0,0,0,14,26,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/editeng/messages.po,0,0,0,0,0,265,656,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/extensions/messages.po,0,0,0,0,0,663,2099,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/extras/source/autocorr/emoji.po,0,0,0,19,0,1556,1817,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/extras/source/gallery/share.po,0,0,0,0,0,12,15,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/filter/messages.po,0,0,0,0,0,222,818,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/filter/source/config/fragments/filters.po,0,0,0,4,11,216,721,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/filter/source/config/fragments/types.po,0,0,0,0,0,38,121,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/forms/messages.po,0,0,0,0,0,58,330,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/formula/messages.po,0,0,0,2,2,436,512,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/fpicker/messages.po,0,0,0,0,0,61,163,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/framework/messages.po,0,0,0,0,0,29,210,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/librelogo/source/pythonpath.po,0,0,0,1,3,137,170,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/nlpsolver/src/locale.po,0,0,0,0,0,41,105,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/officecfg/registry/data/org/openoffice/office.po,41,57,58,0,0,1267,1784,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/readlicense_oo/docs.po,0,0,0,0,0,103,2403,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/reportdesign/messages.po,0,0,0,1,1,257,616,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/sc/messages.po,2,2,2,18,20,4666,20238,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/scaddins/messages.po,0,0,0,0,0,901,3188,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/scp2/source/activex.po,0,0,0,0,0,2,16,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/scp2/source/base.po,0,0,0,0,0,10,44,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/scp2/source/calc.po,0,0,0,1,1,21,93,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/scp2/source/draw.po,0,0,0,1,1,40,148,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/scp2/source/extensions.po,0,0,0,0,0,16,65,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/scp2/source/graphicfilter.po,0,0,0,0,0,30,101,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/scp2/source/impress.po,0,0,0,1,1,20,80,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/scp2/source/math.po,0,0,0,0,0,10,42,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/scp2/source/quickstart.po,0,0,0,0,0,2,15,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/scp2/source/winexplorerext.po,0,0,0,0,0,2,18,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/scp2/source/writer.po,0,0,0,1,2,26,112,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/sd/messages.po,0,0,0,7,8,1312,2943,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/sfx2/messages.po,4,4,5,2,3,575,2219,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/starmath/messages.po,0,0,0,1,1,504,967,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/svl/messages.po,0,0,0,0,0,1,1,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/svtools/messages.po,0,0,0,6,8,908,2603,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/svx/messages.po,2,2,2,2,2,2842,7220,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/sw/messages.po,1,1,1,9,11,3431,7728,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/swext/mediawiki/help.po,0,0,0,0,0,89,1404,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,0,0,0,0,0,32,181,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/sysui/desktop/share.po,0,0,0,3,4,63,273,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/uui/messages.po,0,0,0,0,0,157,1554,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/vcl/messages.po,0,0,0,0,0,356,737,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/wizards/messages.po,0,0,0,0,0,265,1042,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/wizards/source/resources.po,0,0,0,2,3,552,2283,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/writerperfect/messages.po,0,0,0,0,0,30,65,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/xmlsecurity/messages.po,0,0,0,1,2,90,422,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/accessibility/messages.po,8,14,18,0,0,3,13,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/avmedia/messages.po,16,26,30,1,1,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/basctl/messages.po,123,529,865,26,41,6,41,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/basic/messages.po,17,49,67,118,500,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/chart2/messages.po,376,815,1039,138,263,106,290,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/connectivity/messages.po,104,1017,1063,0,0,2,30,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,5,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,1,2,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/cui/messages.po,1116,2802,3582,788,1438,439,1318,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dbaccess/messages.po,518,2925,4502,238,1329,56,256,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/desktop/messages.po,109,544,742,23,153,30,528,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/en/dialog.po,0,0,0,4,6,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/en/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/hu_hu/dialog.po,2,2,2,6,9,24,60,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/pt_br/dialog.po,1,2,2,0,0,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/ru_ru/dialog.po,3,3,8,3,5,8,18,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/editeng/messages.po,183,510,785,74,116,8,30,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/extensions/messages.po,405,1286,1735,212,645,46,168,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/extras/source/autocorr/emoji.po,42,37,39,193,186,1340,1594,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/extras/source/gallery/share.po,11,14,22,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/filter/messages.po,105,413,455,41,111,76,294,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/filter/source/config/fragments/filters.po,86,303,415,13,37,121,392,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/filter/source/config/fragments/internalgraphicfilters.po,35,127,174,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/filter/source/config/fragments/types.po,21,69,80,4,16,13,36,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/forms/messages.po,54,314,551,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/formula/messages.po,281,284,299,96,122,59,106,436,512,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/fpicker/messages.po,29,75,135,20,55,12,33,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/framework/messages.po,19,182,263,7,16,3,12,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/librelogo/source/pythonpath.po,39,40,56,38,40,61,93,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/nlpsolver/src/locale.po,7,7,9,6,7,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/officecfg/registry/data/org/openoffice/office.po,993,1239,4026,284,349,31,253,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/readlicense_oo/docs.po,76,1517,2997,2,86,25,800,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,21,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/reportdesign/messages.po,157,408,505,90,184,11,25,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/sc/messages.po,2702,12578,15227,1000,2865,984,4817,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/scaddins/messages.po,786,2457,2424,24,99,91,632,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/sccomp/messages.po,11,47,70,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/scp2/source/base.po,8,40,49,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/scp2/source/calc.po,15,48,50,5,37,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/scp2/source/draw.po,13,52,56,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/scp2/source/extensions.po,1,14,14,3,9,12,42,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/scp2/source/gnome.po,1,2,3,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/scp2/source/graphicfilter.po,28,91,89,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/scp2/source/impress.po,17,66,153,3,12,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/scp2/source/math.po,10,42,44,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/scp2/source/onlineupdate.po,2,13,15,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/scp2/source/python.po,1,1,1,0,0,1,6,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/scp2/source/quickstart.po,2,15,18,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/scp2/source/winexplorerext.po,2,18,18,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/scp2/source/writer.po,21,65,110,1,4,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/sd/messages.po,563,1322,2122,356,706,400,923,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/sfx2/messages.po,226,685,990,178,486,177,1055,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/starmath/messages.po,284,479,599,118,198,96,284,498,961,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/svl/messages.po,0,0,0,1,1,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/svtools/messages.po,612,1534,2356,77,173,225,904,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/svx/messages.po,1730,4119,6038,602,1402,514,1703,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/sw/messages.po,1729,3602,4914,1030,1996,682,2142,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/swext/mediawiki/help.po,35,287,390,26,657,28,460,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,6,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,20,168,180,11,11,1,2,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/sysui/desktop/share.po,32,138,255,23,89,11,50,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/uui/messages.po,119,1082,1552,19,152,19,320,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/vcl/messages.po,166,282,447,67,136,123,319,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/wizards/messages.po,219,975,1786,23,23,23,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/wizards/source/resources.po,390,1795,2850,117,330,47,161,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/writerperfect/messages.po,0,0,0,6,11,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/xmlsecurity/messages.po,53,221,296,20,133,18,70,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/accessibility/messages.po,7,13,15,0,0,4,14,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/avmedia/messages.po,16,26,28,1,1,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/basctl/messages.po,110,442,652,34,50,11,119,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/basic/messages.po,18,52,67,117,497,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/chart2/messages.po,306,670,823,180,352,134,346,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/connectivity/messages.po,93,900,1021,8,56,5,91,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/connectivity/registry/calc/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,4,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,6,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/cui/messages.po,967,2219,2969,734,1283,642,2056,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dbaccess/messages.po,468,2575,3272,247,1259,97,676,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/desktop/messages.po,105,472,601,22,131,35,622,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/en/dialog.po,1,1,1,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/en/dialog/registry/data/org/openoffice/office.po,1,2,5,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/hu_hu/dialog.po,2,2,3,6,9,24,60,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,1,2,5,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/pt_br/dialog.po,1,2,5,0,0,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,1,2,5,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/ru_ru/dialog.po,4,4,5,2,4,8,18,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,1,2,5,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/editeng/messages.po,176,483,676,75,122,14,51,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/extensions/messages.po,396,998,1486,213,726,54,375,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/extras/source/autocorr/emoji.po,40,36,36,199,191,1336,1590,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/extras/source/gallery/share.po,6,8,8,2,2,4,5,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/filter/messages.po,95,391,495,44,115,83,312,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/filter/source/config/fragments/filters.po,87,306,385,12,34,121,392,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/filter/source/config/fragments/internalgraphicfilters.po,35,127,170,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/filter/source/config/fragments/types.po,20,65,77,4,16,14,40,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/forms/messages.po,54,314,356,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/formula/messages.po,97,100,114,73,77,267,336,437,513,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/fpicker/messages.po,29,61,88,17,48,15,54,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/framework/messages.po,14,84,90,7,16,8,110,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/librelogo/source/pythonpath.po,30,31,40,39,41,69,101,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/nlpsolver/src/locale.po,6,6,6,7,8,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/officecfg/registry/data/org/openoffice/office.po,1268,1537,3443,8,39,32,265,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/readlicense_oo/docs.po,68,1308,1630,2,86,33,1009,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/reportbuilder/java/org/libreoffice/report/function/metadata.po,2,2,2,0,0,4,18,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/reportdesign/messages.po,152,401,527,94,185,12,31,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/sc/messages.po,2206,10670,10899,1270,3481,1210,6109,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/scaddins/messages.po,788,2467,2563,22,89,91,632,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/sccomp/messages.po,11,47,67,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/scp2/source/base.po,8,40,54,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/scp2/source/calc.po,15,48,60,5,37,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/scp2/source/draw.po,13,52,73,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/scp2/source/graphicfilter.po,28,91,143,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/scp2/source/impress.po,17,66,82,3,12,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/scp2/source/math.po,10,42,52,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/scp2/source/onlineupdate.po,2,13,15,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/scp2/source/quickstart.po,2,15,20,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/scp2/source/winexplorerext.po,2,18,22,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/scp2/source/writer.po,21,65,92,1,4,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/sd/messages.po,512,1214,1561,352,664,455,1073,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/sfx2/messages.po,200,559,747,160,398,221,1269,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/starmath/messages.po,298,511,644,95,143,106,308,499,962,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/svl/messages.po,0,0,0,1,1,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/svtools/messages.po,604,1426,1705,77,147,233,1038,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/svx/messages.po,1534,3511,4678,611,1413,701,2300,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/sw/messages.po,1545,3145,4393,1107,2081,789,2514,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/swext/mediawiki/help.po,22,110,137,25,550,42,744,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,6,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,22,170,201,9,9,1,2,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/sysui/desktop/share.po,43,169,198,11,54,12,54,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/uui/messages.po,100,742,901,26,163,31,649,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/vcl/messages.po,166,265,346,64,127,126,345,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/wizards/messages.po,220,976,1205,21,22,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/wizards/source/resources.po,395,1800,2059,111,323,48,163,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/writerperfect/messages.po,0,0,0,6,11,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/xmlsecurity/messages.po,40,124,163,20,67,31,233,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/accessibility/messages.po,7,13,13,1,1,3,13,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/avmedia/messages.po,16,26,28,1,1,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/basctl/messages.po,107,403,400,29,46,19,162,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/basic/messages.po,12,25,27,116,494,7,30,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/chart2/messages.po,255,549,570,171,289,194,530,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/connectivity/messages.po,100,925,778,0,0,6,122,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,4,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/cui/messages.po,979,2200,2443,653,1171,711,2187,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dbaccess/messages.po,429,2562,2354,236,1248,147,700,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/desktop/messages.po,94,472,475,25,153,43,600,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/en/dialog.po,4,6,9,0,0,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/en/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/hu_hu/dialog.po,8,11,16,0,0,24,60,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/pt_br/dialog.po,1,2,2,0,0,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/ru_ru/dialog.po,5,7,9,0,0,9,19,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/editeng/messages.po,197,435,469,14,20,54,201,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/extensions/messages.po,404,1063,1140,215,780,44,256,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/extras/source/autocorr/emoji.po,43,43,43,201,190,1331,1584,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/extras/source/gallery/share.po,6,8,9,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/filter/messages.po,73,247,251,30,55,119,516,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/filter/source/config/fragments/filters.po,81,277,306,10,28,129,427,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/filter/source/config/fragments/internalgraphicfilters.po,35,127,146,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/filter/source/config/fragments/types.po,18,53,58,2,8,18,60,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/forms/messages.po,54,314,266,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/formula/messages.po,312,315,316,57,83,63,110,432,508,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/fpicker/messages.po,31,88,96,17,40,13,35,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/framework/messages.po,18,167,177,6,14,5,29,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/auxiliary.po,10,10,13,0,0,95,292,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/sbasic/guide.po,83,1116,1043,0,0,20,229,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/sbasic/shared.po,2066,10046,9642,0,0,2439,25385,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/scalc.po,144,579,600,0,0,43,407,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/scalc/guide.po,68,242,225,0,0,1401,21351,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/schart.po,66,403,386,0,0,30,528,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/sdraw.po,100,671,725,0,0,23,61,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/sdraw/guide.po,45,435,385,0,0,230,2637,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/shared.po,128,651,533,0,0,122,1657,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/shared/autokorr.po,0,0,0,0,0,48,420,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/shared/autopi.po,62,73,75,0,0,825,8321,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/shared/explorer/database.po,225,590,711,0,0,1416,18267,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/shared/guide.po,57,335,242,0,0,2459,36108,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/shared/optionen.po,154,289,257,0,0,1780,23062,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/simpress.po,143,712,702,0,0,56,683,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/simpress/guide.po,99,815,734,0,0,668,9467,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/smath.po,56,609,538,0,0,4,130,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/smath/guide.po,16,118,107,0,0,88,1075,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/swriter.po,205,1135,1184,0,0,131,1811,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/swriter/guide.po,459,4156,3734,0,0,1685,23781,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/swriter/librelogo.po,16,17,17,0,0,310,3002,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/librelogo/source/pythonpath.po,56,60,72,5,5,77,108,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/nlpsolver/src/locale.po,13,14,18,0,0,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/officecfg/registry/data/org/openoffice/office.po,1193,1281,1782,5,8,110,552,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/readlicense_oo/docs.po,25,315,306,1,85,77,2003,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/reportdesign/messages.po,177,418,434,64,123,17,76,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/sc/messages.po,2497,11568,9455,868,2248,1321,6444,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/scaddins/messages.po,778,2520,2082,12,16,108,649,898,3185,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/sccomp/messages.po,11,47,44,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/scp2/source/base.po,8,40,45,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/scp2/source/calc.po,19,81,93,1,4,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/scp2/source/draw.po,13,52,56,2,9,26,88,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/scp2/source/extensions.po,3,9,9,0,0,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/scp2/source/graphicfilter.po,28,91,96,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/scp2/source/impress.po,19,74,88,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/scp2/source/math.po,10,42,43,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/scp2/source/onlineupdate.po,2,13,16,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/scp2/source/quickstart.po,2,15,16,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/scp2/source/winexplorerext.po,2,18,17,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/scp2/source/writer.po,22,69,68,0,0,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/sd/messages.po,471,1197,1246,345,602,503,1152,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/sfx2/messages.po,212,582,647,154,449,215,1195,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/starmath/messages.po,294,502,504,88,128,120,335,502,965,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/svtools/messages.po,613,1607,1593,45,140,256,864,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/svx/messages.po,1547,3447,3655,510,1178,789,2599,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/sw/messages.po,1600,2841,3447,899,1754,942,3145,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/swext/mediawiki/help.po,38,245,215,11,235,40,924,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,166,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/sysui/desktop/share.po,51,185,220,2,20,13,72,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/uui/messages.po,91,837,738,21,105,45,612,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/vcl/messages.po,184,308,384,27,69,145,360,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/wizards/messages.po,235,992,994,6,6,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/wizards/source/resources.po,428,1823,1771,60,241,66,222,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/writerperfect/messages.po,1,2,3,5,9,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/xmlsecurity/messages.po,18,37,39,22,124,51,263,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/accessibility/messages.po,7,13,13,1,1,3,13,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/avmedia/messages.po,17,27,23,0,0,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/basctl/messages.po,109,405,321,28,45,18,161,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/basic/messages.po,17,49,40,118,500,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/chart2/messages.po,266,577,550,177,301,177,490,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/connectivity/messages.po,102,990,649,0,0,4,57,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,6,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/cui/messages.po,1096,2477,2156,652,1212,595,1869,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dbaccess/messages.po,461,2838,1933,239,1243,112,429,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/desktop/messages.po,107,633,484,38,415,17,177,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/en/dialog.po,37,176,160,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/hu_hu/dialog.po,32,71,66,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/pt_br/dialog.po,2,5,6,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/ru_ru/dialog.po,13,25,26,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/editeng/messages.po,253,628,628,5,8,7,20,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/extensions/messages.po,406,1070,936,217,803,40,226,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/extras/source/autocorr/emoji.po,54,47,47,200,196,1321,1574,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/extras/source/gallery/share.po,11,14,14,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/filter/messages.po,76,277,225,38,78,108,463,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/filter/source/config/fragments/filters.po,90,315,316,13,38,117,379,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/filter/source/config/fragments/internalgraphicfilters.po,35,127,127,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/filter/source/config/fragments/types.po,21,66,64,3,13,14,42,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/forms/messages.po,54,314,230,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/formula/messages.po,323,326,328,55,81,60,107,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/fpicker/messages.po,30,87,65,19,43,12,33,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/framework/messages.po,20,184,140,6,14,3,12,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/auxiliary.po,0,0,0,0,0,105,302,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/sbasic/guide.po,83,1116,796,0,0,20,229,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/sbasic/shared.po,3534,29452,21870,0,0,971,5979,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/scalc.po,178,940,732,0,0,9,46,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/scalc/guide.po,1357,19438,13829,0,0,112,2155,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/schart.po,0,0,0,0,0,96,931,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/sdraw.po,120,718,581,0,0,3,14,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/sdraw/guide.po,259,2780,1978,0,0,16,292,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/shared.po,218,1962,1586,0,0,32,346,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/shared/autokorr.po,47,403,245,0,0,1,17,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/shared/autopi.po,753,6508,4781,0,0,134,1886,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/shared/explorer/database.po,1461,14452,10306,0,0,180,4405,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/shared/guide.po,2073,29003,20692,0,0,443,7440,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/shared/optionen.po,1115,9561,7057,0,0,819,13790,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/simpress.po,185,1314,1059,0,0,14,81,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/simpress/guide.po,601,7917,5621,0,0,166,2365,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/smath.po,56,609,447,0,0,4,130,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/smath/guide.po,96,1031,770,0,0,8,162,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/swriter.po,217,1414,1171,0,0,119,1532,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/swriter/guide.po,1815,21539,15971,0,0,329,6398,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/swriter/librelogo.po,0,0,0,0,0,326,3019,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/librelogo/source/pythonpath.po,133,166,164,2,4,3,3,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,20,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/nlpsolver/src/locale.po,41,105,101,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/officecfg/registry/data/org/openoffice/office.po,1236,1423,1422,8,23,64,395,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/readlicense_oo/docs.po,81,1590,1152,1,85,21,728,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,16,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/reportdesign/messages.po,180,443,410,66,144,12,30,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/sc/messages.po,2719,12961,8971,898,2487,1069,4812,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/scaddins/messages.po,835,2579,1742,14,18,52,591,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/sccomp/messages.po,11,47,41,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/scp2/source/base.po,10,44,36,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/scp2/source/calc.po,19,81,83,1,4,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/scp2/source/draw.po,15,60,53,1,5,25,84,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/scp2/source/extensions.po,16,65,69,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/scp2/source/graphicfilter.po,28,91,108,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/scp2/source/impress.po,19,74,65,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/scp2/source/math.po,10,42,34,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/scp2/source/onlineupdate.po,2,13,10,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/scp2/source/python.po,2,7,7,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/scp2/source/quickstart.po,2,15,12,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/scp2/source/winexplorerext.po,2,18,17,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/scp2/source/writer.po,22,69,66,0,0,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/sd/messages.po,517,1316,1114,342,600,460,1035,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/sfx2/messages.po,257,729,597,149,501,175,996,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/starmath/messages.po,314,536,508,91,133,100,299,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/svtools/messages.po,705,1779,1542,61,371,148,461,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/svx/messages.po,1778,4050,3766,529,1247,539,1927,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/sw/messages.po,1679,3124,3062,928,1836,833,2779,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/swext/mediawiki/help.po,47,353,258,26,817,16,234,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,2,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,123,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/sysui/desktop/share.po,54,210,188,2,20,10,47,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/uui/messages.po,102,998,669,20,134,35,422,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/vcl/messages.po,209,354,333,24,58,123,325,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/wizards/messages.po,235,967,683,29,74,1,1,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/wizards/source/resources.po,474,1947,1451,69,261,11,78,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/writerperfect/messages.po,2,3,3,4,8,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/xmlsecurity/messages.po,47,203,156,24,145,20,76,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/accessibility/messages.po,11,27,25,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/avmedia/messages.po,22,45,44,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/basctl/messages.po,155,611,555,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/basic/messages.po,135,549,532,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/chart2/messages.po,620,1368,1365,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/connectivity/messages.po,106,1047,851,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/cui/messages.po,2343,5558,5398,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dbaccess/messages.po,812,4510,3814,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/desktop/messages.po,162,1225,1074,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/en/dialog.po,37,176,178,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/hu_hu/dialog.po,32,71,79,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/ru_ru/dialog.po,14,26,26,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/editeng/messages.po,265,656,654,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/extensions/messages.po,663,2099,1892,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/extras/source/autocorr/emoji.po,1575,1817,1822,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/extras/source/gallery/share.po,12,15,15,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/filter/messages.po,222,818,779,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/filter/source/config/fragments/filters.po,220,732,751,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/filter/source/config/fragments/internalgraphicfilters.po,38,139,139,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/filter/source/config/fragments/types.po,38,121,129,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/forms/messages.po,58,330,279,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/formula/messages.po,438,514,513,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/fpicker/messages.po,61,163,155,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/framework/messages.po,29,210,180,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/auxiliary.po,92,266,272,0,0,13,36,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/sbasic/guide.po,86,1147,1014,0,0,17,198,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/sbasic/shared.po,3035,22380,18784,0,0,1470,13051,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/scalc.po,181,947,845,0,0,6,39,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/scalc/guide.po,1125,15090,12177,0,0,344,6503,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/schart.po,88,796,676,0,0,8,135,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/sdraw.po,121,724,662,0,0,2,8,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/sdraw/guide.po,232,2455,2016,0,0,43,617,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/shared.po,221,1967,1651,0,0,29,341,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/shared/autokorr.po,47,403,361,0,0,1,17,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/shared/autopi.po,746,6394,5207,0,0,141,2000,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/shared/explorer/database.po,903,6500,5181,0,0,738,12357,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/shared/guide.po,1821,23721,19411,0,0,695,12722,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/shared/menu.po,8,10,12,0,0,8,110,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/shared/optionen.po,637,1442,1343,0,0,1297,21909,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/simpress.po,191,1339,1158,0,0,8,56,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/simpress/guide.po,537,6510,5401,0,0,230,3772,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/smath.po,57,613,550,0,0,3,126,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/smath/guide.po,94,1001,898,0,0,10,192,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/swriter.po,228,1449,1273,0,0,108,1497,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/swriter/guide.po,1355,15658,13038,0,0,789,12279,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/swriter/librelogo.po,45,46,46,0,0,281,2973,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/helpcontent2/source/text/swriter/menu.po,7,12,14,0,0,10,84,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/librelogo/source/pythonpath.po,138,173,170,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,15,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/nlpsolver/src/locale.po,41,105,106,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/officecfg/registry/data/org/openoffice.po,9,28,28,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/officecfg/registry/data/org/openoffice/office.po,1308,1841,1803,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/readlicense_oo/docs.po,103,2403,2137,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,14,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/reportdesign/messages.po,258,617,602,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/sc/messages.po,4686,20260,16779,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/scaddins/messages.po,901,3188,3003,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/sccomp/messages.po,14,65,62,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/scp2/source/activex.po,2,16,16,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/scp2/source/base.po,10,44,43,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/scp2/source/calc.po,22,94,100,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/scp2/source/draw.po,41,149,149,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/scp2/source/extensions.po,16,65,65,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/scp2/source/gnome.po,2,11,11,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/scp2/source/graphicfilter.po,30,101,106,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/scp2/source/impress.po,21,81,75,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/scp2/source/math.po,10,42,42,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/scp2/source/onlineupdate.po,2,13,10,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/scp2/source/quickstart.po,2,15,14,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/scp2/source/winexplorerext.po,2,18,15,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/scp2/source/writer.po,27,114,116,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/sd/messages.po,1319,2951,2838,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/sfx2/messages.po,581,2226,2017,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/starmath/messages.po,505,968,974,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/svtools/messages.po,914,2611,2480,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/svx/messages.po,2846,7224,6904,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/sw/messages.po,3441,7740,7662,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/swext/mediawiki/help.po,89,1404,1235,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,142,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/sysui/desktop/share.po,66,277,284,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/uui/messages.po,157,1554,1332,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/vcl/messages.po,356,737,728,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/wizards/messages.po,265,1042,906,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/wizards/source/resources.po,554,2286,1887,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/writerperfect/messages.po,30,65,67,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/xmlsecurity/messages.po,91,424,367,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/accessibility/messages.po,11,27,28,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/avmedia/messages.po,22,45,39,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/basctl/messages.po,155,611,570,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/basic/messages.po,135,549,563,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/chart2/messages.po,620,1368,1395,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/connectivity/messages.po,106,1047,872,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,7,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,3,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,12,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,3,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,3,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/cui/messages.po,2343,5558,5505,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dbaccess/messages.po,812,4510,3996,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/desktop/messages.po,162,1225,1128,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/en/dialog.po,37,176,185,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/hu_hu/dialog.po,32,71,68,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/ru_ru/dialog.po,14,26,27,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/editeng/messages.po,265,656,674,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/extensions/messages.po,663,2099,1937,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/extras/source/autocorr/emoji.po,1575,1817,1873,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/extras/source/gallery/share.po,12,15,15,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/filter/messages.po,222,818,796,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/filter/source/config/fragments/filters.po,220,732,864,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/filter/source/config/fragments/internalgraphicfilters.po,38,139,177,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/filter/source/config/fragments/types.po,38,121,132,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/forms/messages.po,58,330,278,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/formula/messages.po,438,514,515,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/fpicker/messages.po,61,163,159,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/framework/messages.po,29,210,185,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/auxiliary.po,105,302,313,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/sbasic/guide.po,103,1345,1272,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/sbasic/shared.po,4505,35431,31708,0,0,0,0,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/scalc.po,187,986,941,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/scalc/guide.po,1469,21593,18952,0,0,0,0,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/schart.po,96,931,788,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/sdraw.po,123,732,661,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/sdraw/guide.po,275,3072,2645,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/shared.po,250,2308,2053,0,0,0,0,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/shared/autokorr.po,48,420,369,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/shared/autopi.po,887,8394,7352,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/shared/explorer/database.po,1641,18857,16626,0,0,0,0,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/shared/guide.po,2516,36443,32834,0,0,0,0,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/shared/help.po,78,117,120,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/shared/menu.po,16,120,122,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/shared/optionen.po,1934,23351,21161,0,0,0,0,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/simpress.po,199,1395,1196,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/simpress/guide.po,767,10282,8771,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/smath.po,60,739,667,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/smath/guide.po,104,1193,1062,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/swriter.po,336,2946,2699,0,0,0,0,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/swriter/guide.po,2144,27937,23793,0,0,0,0,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/swriter/librelogo.po,326,3019,2926,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/helpcontent2/source/text/swriter/menu.po,17,96,93,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/librelogo/source/pythonpath.po,138,173,174,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,20,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/nlpsolver/src/locale.po,41,105,106,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/officecfg/registry/data/org/openoffice.po,9,28,29,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/officecfg/registry/data/org/openoffice/office.po,1308,1841,1836,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/readlicense_oo/docs.po,103,2403,2208,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,13,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/reportdesign/messages.po,258,617,599,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/sc/messages.po,4686,20260,17408,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/scaddins/messages.po,901,3188,2579,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/sccomp/messages.po,14,65,62,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/scp2/source/activex.po,2,16,17,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/scp2/source/base.po,10,44,51,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/scp2/source/calc.po,22,94,102,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/scp2/source/draw.po,41,149,167,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/scp2/source/extensions.po,16,65,64,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/scp2/source/gnome.po,2,11,10,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/scp2/source/graphicfilter.po,30,101,190,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/scp2/source/impress.po,21,81,85,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/scp2/source/math.po,10,42,42,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/scp2/source/onlineupdate.po,2,13,14,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/scp2/source/python.po,2,7,9,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/scp2/source/quickstart.po,2,15,16,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/scp2/source/writer.po,27,114,125,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/sd/messages.po,1319,2951,2866,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/sfx2/messages.po,581,2226,2076,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/starmath/messages.po,505,968,993,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/svtools/messages.po,914,2611,2598,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/svx/messages.po,2846,7224,7107,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/sw/messages.po,3441,7740,7785,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/swext/mediawiki/help.po,89,1404,1281,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,150,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/sysui/desktop/share.po,66,277,312,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/uui/messages.po,157,1554,1371,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/vcl/messages.po,356,737,764,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/wizards/messages.po,265,1042,939,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/wizards/source/resources.po,554,2286,2052,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/writerperfect/messages.po,30,65,68,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/xmlsecurity/messages.po,91,424,397,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/accessibility/messages.po,11,27,30,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/avmedia/messages.po,22,45,53,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/basctl/messages.po,155,611,677,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/basic/messages.po,135,549,699,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/chart2/messages.po,619,1366,1695,0,0,1,2,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/connectivity/messages.po,106,1047,1112,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,5,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,3,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,6,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,6,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/cui/messages.po,1650,3483,4060,184,409,509,1666,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dbaccess/messages.po,419,1373,1568,121,276,272,2861,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/desktop/messages.po,162,1225,1354,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/en/dialog.po,37,176,212,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/hu_hu/dialog.po,32,71,83,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,8,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/pt_br/dialog.po,2,5,6,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/ru_ru/dialog.po,14,26,36,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/editeng/messages.po,165,323,444,16,48,84,285,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/extensions/messages.po,495,1602,1869,118,284,50,213,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/extras/source/autocorr/emoji.po,668,720,773,86,91,821,1006,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/extras/source/gallery/share.po,11,14,15,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/filter/messages.po,142,468,528,12,38,68,312,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/filter/source/config/fragments/filters.po,161,554,566,9,29,50,149,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/filter/source/config/fragments/internalgraphicfilters.po,38,139,140,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/filter/source/config/fragments/types.po,20,66,75,2,10,16,45,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/forms/messages.po,58,330,387,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/formula/messages.po,306,314,325,53,75,79,125,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/fpicker/messages.po,61,163,194,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/framework/messages.po,29,210,242,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/auxiliary.po,89,255,318,1,4,15,43,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/sbasic/guide.po,7,21,26,0,0,96,1324,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/sbasic/shared.po,1344,2497,3165,0,0,3161,32934,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/scalc.po,26,43,66,0,0,161,943,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/scalc/guide.po,102,282,320,0,0,1367,21311,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/schart.po,8,17,22,0,0,88,914,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/sdraw.po,14,21,29,0,0,109,711,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/sdraw/guide.po,37,108,127,0,0,238,2964,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/shared.po,65,133,167,0,0,185,2175,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/shared/autokorr.po,25,101,77,0,0,23,319,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/shared/autopi.po,249,601,750,0,0,638,7793,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/shared/explorer/database.po,482,1024,1317,0,0,1159,17833,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/shared/guide.po,276,926,1146,0,0,2240,35517,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/shared/optionen.po,606,1283,1629,0,0,1328,22068,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/simpress.po,23,39,58,0,0,176,1356,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/simpress/guide.po,62,246,261,0,0,705,10036,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/smath.po,12,20,25,0,0,48,719,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/smath/guide.po,17,55,66,0,0,87,1138,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/swriter.po,94,134,159,0,0,242,2812,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/swriter/guide.po,323,1040,1095,0,0,1821,26897,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/swriter/librelogo.po,39,40,49,1,1,286,2978,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/librelogo/source/pythonpath.po,138,173,203,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/nlpsolver/src/locale.po,14,18,20,0,0,27,87,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/officecfg/registry/data/org/openoffice/office.po,477,671,722,111,130,720,1040,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/readlicense_oo/docs.po,66,1232,1337,1,1,36,1170,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,19,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/reportdesign/messages.po,199,377,489,25,45,34,195,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/sc/messages.po,2644,11313,11491,756,2148,1286,6799,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/scaddins/messages.po,623,1773,1692,21,76,257,1339,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/sccomp/messages.po,14,65,76,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/scp2/source/base.po,10,44,50,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/scp2/source/calc.po,20,77,104,0,0,2,17,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/scp2/source/draw.po,36,134,132,0,0,5,15,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/scp2/source/extensions.po,7,17,19,0,0,9,48,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/scp2/source/graphicfilter.po,30,101,106,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/scp2/source/impress.po,21,81,85,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/scp2/source/math.po,10,42,41,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/scp2/source/onlineupdate.po,1,2,3,0,0,1,11,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/scp2/source/python.po,1,1,1,0,0,1,6,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/scp2/source/quickstart.po,1,1,5,0,0,1,14,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/scp2/source/winexplorerext.po,1,3,3,0,0,1,15,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/scp2/source/writer.po,22,94,97,2,8,3,12,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/sd/messages.po,688,1624,1827,237,389,394,938,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/sfx2/messages.po,344,1089,1201,71,172,166,965,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/starmath/messages.po,382,638,775,33,59,90,271,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/svtools/messages.po,489,1338,1525,50,110,375,1163,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/svx/messages.po,1639,3800,4523,433,911,774,2513,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/sw/messages.po,2440,4725,5478,469,1083,532,1932,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/swext/mediawiki/help.po,40,220,241,5,136,44,1048,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,30,150,137,0,0,2,31,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/sysui/desktop/share.po,66,277,307,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/uui/messages.po,157,1554,1679,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/vcl/messages.po,354,731,851,0,0,2,6,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/wizards/messages.po,138,402,431,11,14,116,626,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/wizards/source/resources.po,361,1411,1490,54,110,139,765,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/writerperfect/messages.po,30,65,77,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/xmlsecurity/messages.po,25,139,160,24,53,42,232,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/accessibility/messages.po,1,1,1,7,13,3,13,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/avmedia/messages.po,13,15,16,3,3,6,27,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/basctl/messages.po,89,375,341,42,67,24,169,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/basic/messages.po,135,549,557,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/chart2/messages.po,140,402,404,234,337,248,611,622,1350,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/connectivity/messages.po,96,957,827,11,95,1,16,108,1068,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,7,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,4,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/cui/messages.po,294,957,862,1086,1731,901,2722,2281,5410,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dbaccess/messages.po,331,2357,2077,182,417,295,1716,808,4490,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/desktop/messages.po,75,457,437,42,342,45,426,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/en/dialog.po,37,176,175,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,1,3,1,2,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/hu_hu/dialog.po,31,69,69,1,2,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,1,3,1,2,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,1,3,1,2,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/ru_ru/dialog.po,14,26,26,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,1,3,1,2,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/editeng/messages.po,240,584,592,14,33,12,40,266,657,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/extensions/messages.po,407,1072,1072,168,318,87,699,662,2089,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/extras/source/autocorr/emoji.po,0,0,0,173,177,990,1211,1163,1388,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/extras/source/gallery/share.po,0,0,0,8,10,3,4,11,14,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/filter/messages.po,50,240,207,55,156,117,422,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/filter/source/config/fragments/filters.po,0,0,0,116,408,96,327,212,735,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/filter/source/config/fragments/internalgraphicfilters.po,35,127,127,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/filter/source/config/fragments/types.po,16,45,48,16,69,6,26,38,140,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/forms/messages.po,54,314,283,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/formula/messages.po,301,302,302,69,93,67,118,437,513,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/fpicker/messages.po,19,71,65,25,48,16,43,60,162,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/framework/messages.po,18,167,138,6,14,5,29,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/librelogo/source/pythonpath.po,35,70,72,44,46,59,57,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,17,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/nlpsolver/src/locale.po,41,105,113,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,29,9,29,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/officecfg/registry/data/org/openoffice/office.po,651,829,1200,590,595,66,417,1307,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/readlicense_oo/docs.po,41,609,575,3,119,59,1676,103,2404,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/reportdesign/messages.po,162,429,410,68,120,28,68,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/sc/messages.po,138,648,595,3390,14874,994,4299,4522,19821,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/scaddins/messages.po,0,0,0,801,2569,100,619,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/sccomp/messages.po,11,47,40,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/scp2/source/base.po,9,42,43,1,2,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/scp2/source/calc.po,19,81,80,1,4,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/scp2/source/draw.po,15,60,58,1,5,25,84,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/scp2/source/extensions.po,9,28,26,8,27,1,14,18,69,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/scp2/source/gnome.po,2,11,11,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/scp2/source/graphicfilter.po,26,84,131,3,15,1,2,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/scp2/source/impress.po,19,74,71,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/scp2/source/math.po,10,42,40,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/scp2/source/python.po,2,7,5,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/scp2/source/quickstart.po,2,15,16,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/scp2/source/winexplorerext.po,2,18,21,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/scp2/source/writer.po,22,69,71,2,33,3,12,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/scp2/source/xsltfilter.po,1,3,3,1,3,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/sd/messages.po,285,936,859,617,1076,320,815,1222,2827,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/sfx2/messages.po,100,429,399,250,457,191,1150,541,2036,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/starmath/messages.po,22,32,40,375,625,109,312,506,969,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/svl/messages.po,47,83,89,16,24,8,35,71,142,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/svtools/messages.po,519,1025,1031,199,869,160,579,878,2473,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/svx/messages.po,1129,2848,2773,927,1640,721,2482,2777,6970,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/sw/messages.po,959,2180,2214,1788,2779,775,2727,3522,7686,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/swext/mediawiki/help.po,48,456,377,41,971,2,21,91,1448,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,5,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,155,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/sysui/desktop/share.po,43,174,172,13,56,10,47,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/uui/messages.po,87,942,826,34,274,36,273,157,1489,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/vcl/messages.po,111,232,219,111,169,53,144,275,545,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/wizards/messages.po,0,0,0,264,1041,1,1,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/wizards/source/resources.po,0,0,0,541,2205,13,81,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/writerperfect/messages.po,0,0,0,6,11,9,29,15,40,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/xmlsecurity/messages.po,0,0,0,18,24,72,399,90,423,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/accessibility/messages.po,1,1,1,7,13,3,13,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/avmedia/messages.po,13,15,16,3,3,6,27,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/basctl/messages.po,89,375,341,42,67,24,169,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/basic/messages.po,135,549,557,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/chart2/messages.po,140,402,404,239,346,243,602,622,1350,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/connectivity/messages.po,96,957,827,11,95,1,16,108,1068,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,7,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,4,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/cui/messages.po,294,957,862,1297,2468,690,1985,2281,5410,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dbaccess/messages.po,331,2357,2077,191,498,286,1635,808,4490,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/desktop/messages.po,75,457,437,42,342,45,426,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/en/dialog.po,37,176,175,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,2,5,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/hu_hu/dialog.po,31,69,69,1,2,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,2,5,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,2,5,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/ru_ru/dialog.po,14,26,26,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,2,5,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/editeng/messages.po,240,584,592,14,33,12,40,266,657,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/extensions/messages.po,407,1072,1072,172,328,83,689,662,2089,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/extras/source/autocorr/emoji.po,0,0,0,173,177,990,1211,1163,1388,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/extras/source/gallery/share.po,0,0,0,9,11,2,3,11,14,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/filter/messages.po,50,240,207,55,156,117,422,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/filter/source/config/fragments/filters.po,0,0,0,116,408,96,327,212,735,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/filter/source/config/fragments/internalgraphicfilters.po,35,127,127,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/filter/source/config/fragments/types.po,16,45,48,16,69,6,26,38,140,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/forms/messages.po,54,314,283,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/formula/messages.po,301,302,302,69,93,67,118,437,513,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/fpicker/messages.po,19,71,65,25,48,16,43,60,162,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/framework/messages.po,18,167,138,6,14,5,29,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/librelogo/source/pythonpath.po,35,70,72,49,51,54,52,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,17,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/nlpsolver/src/locale.po,41,105,113,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,29,9,29,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/officecfg/registry/data/org/openoffice/office.po,651,829,1200,590,595,66,417,1307,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/readlicense_oo/docs.po,41,609,575,3,119,59,1676,103,2404,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/reportdesign/messages.po,162,429,410,70,124,26,64,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/sc/messages.po,138,648,595,3505,15341,879,3832,4522,19821,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/scaddins/messages.po,0,0,0,801,2569,100,619,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/sccomp/messages.po,11,47,40,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/scp2/source/base.po,9,42,43,1,2,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/scp2/source/calc.po,19,81,80,1,4,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/scp2/source/draw.po,15,60,58,1,5,25,84,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/scp2/source/extensions.po,9,28,26,8,27,1,14,18,69,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/scp2/source/gnome.po,2,11,11,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/scp2/source/graphicfilter.po,26,84,131,3,15,1,2,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/scp2/source/impress.po,19,74,71,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/scp2/source/math.po,10,42,40,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/scp2/source/python.po,2,7,5,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/scp2/source/quickstart.po,2,15,16,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/scp2/source/winexplorerext.po,2,18,21,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/scp2/source/writer.po,22,69,71,2,33,3,12,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/scp2/source/xsltfilter.po,1,3,3,1,3,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/sd/messages.po,285,936,859,653,1156,284,735,1222,2827,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/sfx2/messages.po,100,429,399,280,525,161,1082,541,2036,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/starmath/messages.po,22,32,40,381,633,103,304,506,969,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/svl/messages.po,47,83,89,16,24,8,35,71,142,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/svtools/messages.po,519,1025,1031,221,911,138,537,878,2473,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/svx/messages.po,1129,2848,2773,967,1737,681,2385,2777,6970,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/sw/messages.po,959,2180,2214,1880,3091,683,2415,3522,7686,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/swext/mediawiki/help.po,48,456,377,41,971,2,21,91,1448,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,5,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,155,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/sysui/desktop/share.po,43,174,172,13,56,10,47,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/uui/messages.po,87,942,826,39,336,31,211,157,1489,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/vcl/messages.po,111,232,219,111,169,53,144,275,545,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/wizards/messages.po,0,0,0,264,1041,1,1,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/wizards/source/resources.po,0,0,0,541,2205,13,81,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/writerperfect/messages.po,0,0,0,6,11,9,29,15,40,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/xmlsecurity/messages.po,0,0,0,49,219,41,204,90,423,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/accessibility/messages.po,5,9,9,0,0,6,18,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/avmedia/messages.po,16,26,21,1,1,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/basctl/messages.po,75,243,203,33,49,47,319,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/basic/messages.po,8,14,11,9,31,118,504,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/chart2/messages.po,117,165,167,184,318,319,885,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/connectivity/messages.po,0,0,0,8,56,98,991,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/cui/messages.po,498,964,864,733,1185,1112,3409,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dbaccess/messages.po,307,1613,1146,213,639,292,2258,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/desktop/messages.po,42,166,126,14,29,106,1030,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/en/dialog.po,1,1,1,2,3,34,172,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/hu_hu/dialog.po,1,1,1,5,6,26,64,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/pt_br/dialog.po,0,0,0,1,2,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/ru_ru/dialog.po,2,2,2,0,0,12,24,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/editeng/messages.po,200,461,432,47,139,18,56,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/extensions/messages.po,327,662,625,179,474,157,963,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/extras/source/autocorr/emoji.po,42,38,38,164,155,1369,1624,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/extras/source/gallery/share.po,5,7,6,2,2,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/filter/messages.po,41,160,126,33,63,148,595,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/filter/source/config/fragments/filters.po,20,58,54,10,25,190,649,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/filter/source/config/fragments/types.po,2,8,8,5,18,31,95,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/forms/messages.po,50,278,208,1,2,7,50,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/formula/messages.po,283,286,286,70,95,85,133,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/fpicker/messages.po,25,39,39,18,52,18,72,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/framework/messages.po,8,14,15,7,15,14,181,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/librelogo/source/pythonpath.po,12,12,12,44,44,82,117,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/nlpsolver/src/locale.po,7,7,7,6,7,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/officecfg/registry/data/org/openoffice/office.po,499,588,604,331,325,478,928,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/readlicense_oo/docs.po,7,41,33,1,1,95,2361,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/reportdesign/messages.po,70,90,89,67,114,121,413,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/sc/messages.po,1304,7002,4654,1371,3587,2011,9671,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/scaddins/messages.po,260,1345,979,192,434,449,1409,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/scp2/source/base.po,8,40,33,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/scp2/source/calc.po,13,41,39,4,33,5,20,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/scp2/source/draw.po,11,45,38,1,5,29,99,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/scp2/source/graphicfilter.po,24,77,77,2,6,4,18,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/scp2/source/impress.po,15,59,53,2,8,4,14,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/scp2/source/math.po,9,39,34,0,0,1,3,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/scp2/source/quickstart.po,2,15,12,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/scp2/source/winexplorerext.po,2,18,15,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/scp2/source/writer.po,14,37,37,2,7,11,70,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/sd/messages.po,340,809,717,336,586,643,1556,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/sfx2/messages.po,155,296,256,128,263,298,1667,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/starmath/messages.po,261,461,435,112,158,131,348,504,967,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/svl/messages.po,0,0,0,1,1,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/svtools/messages.po,394,856,802,100,205,420,1550,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/svx/messages.po,1143,2422,2306,623,1157,1080,3645,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/sw/messages.po,978,1678,1692,1216,2013,1247,4049,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/swext/mediawiki/help.po,6,6,6,4,6,79,1392,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,7,8,8,6,6,19,167,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/sysui/desktop/share.po,32,120,108,12,63,22,94,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/uui/messages.po,12,87,62,26,87,119,1380,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/vcl/messages.po,107,136,125,65,107,184,494,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/wizards/messages.po,135,716,538,49,82,81,244,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/wizards/source/resources.po,405,1748,1303,70,181,79,357,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/writerperfect/messages.po,1,1,1,5,10,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/xmlsecurity/messages.po,17,25,25,14,51,60,348,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/accessibility/messages.po,5,9,17,0,0,6,18,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/avmedia/messages.po,17,27,28,0,0,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/basctl/messages.po,74,242,316,34,50,47,319,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/basic/messages.po,8,14,13,9,31,118,504,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/chart2/messages.po,113,161,214,194,333,313,874,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/connectivity/messages.po,0,0,0,8,56,98,991,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/connectivity/registry/calc/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/connectivity/registry/flat/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/cui/messages.po,468,925,1204,764,1226,1111,3407,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dbaccess/messages.po,303,1609,1925,215,641,294,2260,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/desktop/messages.po,42,166,237,14,29,106,1030,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/en/dialog.po,1,1,2,2,3,34,172,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/hu_hu/dialog.po,2,2,2,4,5,26,64,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/pt_br/dialog.po,0,0,0,1,2,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/ru_ru/dialog.po,2,2,3,0,0,12,24,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/editeng/messages.po,198,459,728,49,141,18,56,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/extensions/messages.po,323,659,992,182,476,158,964,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/extras/source/autocorr/emoji.po,42,38,41,164,155,1369,1624,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/extras/source/gallery/share.po,5,7,7,2,2,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/filter/messages.po,41,160,208,32,62,149,596,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/filter/source/config/fragments/filters.po,20,58,72,9,24,191,650,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/filter/source/config/fragments/types.po,3,10,11,4,16,31,95,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/forms/messages.po,50,278,339,1,2,7,50,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/formula/messages.po,156,159,163,78,102,202,251,436,512,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/fpicker/messages.po,25,39,48,18,52,18,72,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/framework/messages.po,8,14,21,7,15,14,181,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/librelogo/source/pythonpath.po,13,13,16,41,41,84,119,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/nlpsolver/src/locale.po,7,7,8,6,7,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/officecfg/registry/data/org/openoffice/office.po,476,565,621,354,348,478,928,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/readlicense_oo/docs.po,7,41,59,1,1,95,2361,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/reportdesign/messages.po,63,83,102,73,120,122,414,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/sc/messages.po,1299,7005,7955,1364,3577,2023,9678,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/scaddins/messages.po,259,1344,1770,191,433,449,1409,899,3186,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/scp2/source/base.po,8,40,53,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/scp2/source/calc.po,13,41,70,4,33,5,20,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/scp2/source/draw.po,11,45,72,1,5,29,99,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/scp2/source/graphicfilter.po,24,77,170,2,6,4,18,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/scp2/source/impress.po,15,59,80,2,8,4,14,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/scp2/source/math.po,9,39,54,0,0,1,3,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/scp2/source/quickstart.po,2,15,22,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/scp2/source/winexplorerext.po,2,18,25,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/scp2/source/writer.po,14,37,51,2,7,11,70,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/sd/messages.po,322,791,1036,353,603,644,1557,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/sfx2/messages.po,154,295,398,128,263,299,1668,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/starmath/messages.po,263,463,655,110,156,131,348,504,967,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/svtools/messages.po,393,857,1073,102,206,419,1548,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/svx/messages.po,1131,2410,3539,623,1148,1092,3666,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/sw/messages.po,917,1612,2124,1285,2094,1239,4034,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/swext/mediawiki/help.po,5,5,5,5,7,79,1392,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,6,6,6,7,7,19,168,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/sysui/desktop/share.po,30,117,187,14,66,22,94,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/uui/messages.po,11,86,122,27,88,119,1380,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/vcl/messages.po,100,129,132,73,116,183,492,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/wizards/messages.po,134,715,895,50,83,81,244,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/wizards/source/resources.po,395,1735,2169,80,194,79,357,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/writerperfect/messages.po,0,0,0,6,11,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/xmlsecurity/messages.po,17,25,37,14,51,60,348,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/accessibility/messages.po,11,27,28,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/avmedia/messages.po,22,45,41,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/basctl/messages.po,155,611,584,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/basic/messages.po,135,549,593,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/chart2/messages.po,620,1368,1140,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/connectivity/messages.po,106,1047,870,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,3,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,3,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,1,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/cui/messages.po,2343,5558,5216,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dbaccess/messages.po,812,4510,3951,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/desktop/messages.po,162,1225,1213,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/en/dialog.po,37,176,154,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/hu_hu/dialog.po,32,71,68,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/pt_br/dialog.po,2,5,3,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/ru_ru/dialog.po,14,26,25,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/editeng/messages.po,265,656,631,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/extensions/messages.po,663,2099,1777,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/extras/source/autocorr/emoji.po,1575,1817,1747,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/extras/source/gallery/share.po,12,15,14,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/filter/messages.po,222,818,719,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/filter/source/config/fragments/filters.po,220,732,649,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/filter/source/config/fragments/internalgraphicfilters.po,38,139,137,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/filter/source/config/fragments/types.po,38,121,105,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/forms/messages.po,58,330,307,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/formula/messages.po,438,514,525,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/fpicker/messages.po,61,163,142,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/framework/messages.po,29,210,188,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/auxiliary.po,105,302,267,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/sbasic/guide.po,103,1345,1256,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/sbasic/shared.po,3675,30308,26822,0,0,830,5123,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/scalc.po,187,986,846,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/scalc/guide.po,1364,19648,17566,0,0,105,1945,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/schart.po,87,794,697,0,0,9,137,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/sdraw.po,123,732,697,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/sdraw/guide.po,264,2896,2971,0,0,11,176,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/shared.po,235,2098,1863,0,0,15,210,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/shared/autokorr.po,48,420,334,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/shared/autopi.po,757,6572,5696,0,0,130,1822,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/shared/explorer/database.po,1469,14596,12620,0,0,172,4261,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/shared/guide.po,2104,29662,26291,0,0,412,6781,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/shared/optionen.po,1542,16921,14780,0,0,392,6430,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/simpress.po,196,1360,1285,0,0,3,35,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/simpress/guide.po,603,7994,7339,0,0,164,2288,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/smath.po,56,609,579,0,0,4,130,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/smath/guide.po,96,1031,967,0,0,8,162,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/swriter.po,258,2086,1864,0,0,78,860,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/swriter/guide.po,1939,24266,22024,0,0,205,3671,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/swriter/librelogo.po,321,2824,2704,1,120,4,75,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/librelogo/source/pythonpath.po,138,173,170,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,18,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/nlpsolver/src/locale.po,41,105,103,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/officecfg/registry/data/org/openoffice.po,9,28,18,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/officecfg/registry/data/org/openoffice/office.po,1308,1841,1742,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/readlicense_oo/docs.po,103,2403,2181,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,14,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/reportdesign/messages.po,258,617,563,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/sc/messages.po,4686,20260,16459,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/scaddins/messages.po,901,3188,2634,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/sccomp/messages.po,14,65,52,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/scp2/source/activex.po,2,16,18,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/scp2/source/base.po,10,44,40,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/scp2/source/calc.po,22,94,83,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/scp2/source/draw.po,41,149,113,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/scp2/source/extensions.po,16,65,68,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/scp2/source/gnome.po,2,11,8,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/scp2/source/graphicfilter.po,30,101,93,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/scp2/source/impress.po,21,81,71,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/scp2/source/math.po,10,42,42,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/scp2/source/python.po,2,7,6,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/scp2/source/quickstart.po,2,15,13,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/scp2/source/winexplorerext.po,2,18,24,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/scp2/source/writer.po,27,114,90,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/scp2/source/xsltfilter.po,2,6,2,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/sd/messages.po,1277,2908,2680,0,0,42,43,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/sfx2/messages.po,577,2096,1925,0,0,4,130,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/starmath/messages.po,499,944,900,0,0,6,24,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/svtools/messages.po,914,2611,2413,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/svx/messages.po,2846,7224,6504,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/sw/messages.po,3397,7690,7068,1,1,43,49,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/swext/mediawiki/help.po,89,1404,1289,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,156,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/sysui/desktop/share.po,66,277,235,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/uui/messages.po,157,1554,1463,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/vcl/messages.po,354,731,679,0,0,2,6,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/wizards/messages.po,265,1042,909,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/wizards/source/resources.po,554,2286,2019,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/writerperfect/messages.po,30,65,53,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/xmlsecurity/messages.po,91,424,396,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/accessibility/messages.po,5,9,9,0,0,6,18,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/avmedia/messages.po,17,27,28,0,0,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/basctl/messages.po,84,285,238,31,41,40,285,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/basic/messages.po,11,24,20,117,497,7,28,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/chart2/messages.po,119,156,168,154,271,347,941,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/connectivity/messages.po,0,0,0,8,56,98,991,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/cui/messages.po,495,668,684,619,984,1229,3906,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dbaccess/messages.po,339,1936,1766,225,1034,248,1540,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/desktop/messages.po,61,231,221,13,65,88,929,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/en/dialog.po,1,1,1,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/hu_hu/dialog.po,1,1,1,5,8,26,62,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/ru_ru/dialog.po,2,2,4,2,4,10,20,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/editeng/messages.po,72,115,117,62,106,131,435,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/extensions/messages.po,353,753,778,171,682,139,664,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/extras/source/autocorr/emoji.po,43,39,39,182,174,1350,1604,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/extras/source/gallery/share.po,6,8,9,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/filter/messages.po,42,161,128,28,56,152,601,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/filter/source/config/fragments/filters.po,29,83,79,10,25,181,624,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/filter/source/config/fragments/types.po,3,10,10,4,16,31,95,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/forms/messages.po,51,294,279,1,2,6,34,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/formula/messages.po,287,290,291,64,87,87,137,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/fpicker/messages.po,30,62,60,15,45,16,56,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/framework/messages.po,9,16,16,6,13,14,181,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/librelogo/source/pythonpath.po,14,16,16,45,47,79,110,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/nlpsolver/src/locale.po,8,8,8,5,6,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/officecfg/registry/data/org/openoffice/office.po,1183,1264,1281,5,8,120,569,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/readlicense_oo/docs.po,0,0,0,1,1,102,2402,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/reportdesign/messages.po,83,105,108,55,102,120,410,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/sc/messages.po,2166,10719,8835,993,2973,1527,6568,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/scaddins/messages.po,781,2471,2138,23,79,97,638,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/scp2/source/base.po,8,40,41,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/scp2/source/calc.po,15,48,52,4,33,3,13,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/scp2/source/draw.po,13,52,54,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/scp2/source/graphicfilter.po,28,91,118,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/scp2/source/impress.po,17,66,71,2,8,2,7,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/scp2/source/math.po,10,42,44,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/scp2/source/quickstart.po,2,15,15,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/scp2/source/winexplorerext.po,2,18,18,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/scp2/source/writer.po,17,50,54,2,7,8,57,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/scp2/source/xsltfilter.po,2,6,10,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/sd/messages.po,392,934,883,325,603,602,1414,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/sfx2/messages.po,175,431,415,124,362,282,1433,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/starmath/messages.po,273,475,486,103,146,128,346,504,967,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/svl/messages.po,0,0,0,1,1,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/svtools/messages.po,501,1182,1144,73,156,340,1273,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/svx/messages.po,1300,2876,2913,533,1167,1013,3181,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/sw/messages.po,1238,2026,2215,1034,1925,1169,3789,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/swext/mediawiki/help.po,6,6,8,4,6,79,1392,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,8,8,8,4,4,20,169,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/sysui/desktop/share.po,32,119,130,13,66,21,92,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/uui/messages.po,64,532,449,24,139,69,883,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/vcl/messages.po,129,178,164,44,81,183,478,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/wizards/messages.po,229,985,980,12,13,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/wizards/source/resources.po,451,1866,1807,41,201,62,219,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/writerperfect/messages.po,1,1,1,5,10,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/xmlsecurity/messages.po,19,28,28,14,52,58,344,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/accessibility/messages.po,0,0,0,0,0,11,27,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/avmedia/messages.po,0,0,0,0,0,22,45,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/basctl/messages.po,0,0,0,1,0,154,611,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/basic/messages.po,0,0,0,0,0,135,549,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/chart2/messages.po,0,0,0,0,0,620,1368,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/connectivity/messages.po,0,0,0,0,0,106,1047,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/connectivity/registry/calc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/connectivity/registry/flat/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/cui/messages.po,0,0,0,8,0,2335,5558,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dbaccess/messages.po,0,0,0,10,0,802,4510,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/desktop/messages.po,0,0,0,0,0,162,1225,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/en/dialog.po,0,0,0,0,0,37,176,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/hu_hu/dialog.po,0,0,0,0,0,32,71,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/ru_ru/dialog.po,0,0,0,0,0,14,26,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/editeng/messages.po,0,0,0,0,0,265,656,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/extensions/messages.po,0,0,0,6,0,657,2099,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/extras/source/autocorr/emoji.po,0,0,0,19,0,1556,1817,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/extras/source/gallery/share.po,0,0,0,0,0,12,15,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/filter/messages.po,0,0,0,0,0,222,818,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/filter/source/config/fragments/filters.po,0,0,0,0,0,220,732,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/filter/source/config/fragments/types.po,0,0,0,0,0,38,121,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/forms/messages.po,0,0,0,0,0,58,330,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/formula/messages.po,0,0,0,0,0,438,514,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/fpicker/messages.po,0,0,0,0,0,61,163,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/framework/messages.po,0,0,0,0,0,29,210,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/librelogo/source/pythonpath.po,0,0,0,2,0,136,173,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/nlpsolver/src/locale.po,0,0,0,0,0,41,105,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/officecfg/registry/data/org/openoffice/office.po,0,0,0,11,0,1297,1841,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/readlicense_oo/docs.po,0,0,0,0,0,103,2403,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/reportdesign/messages.po,0,0,0,3,0,255,617,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/sc/messages.po,0,0,0,4,0,4682,20260,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/scaddins/messages.po,0,0,0,0,0,901,3188,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/scp2/source/activex.po,0,0,0,0,0,2,16,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/scp2/source/base.po,0,0,0,0,0,10,44,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/scp2/source/calc.po,0,0,0,0,0,22,94,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/scp2/source/draw.po,0,0,0,0,0,41,149,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/scp2/source/extensions.po,0,0,0,0,0,16,65,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/scp2/source/graphicfilter.po,0,0,0,0,0,30,101,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/scp2/source/impress.po,0,0,0,0,0,21,81,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/scp2/source/math.po,0,0,0,0,0,10,42,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/scp2/source/quickstart.po,0,0,0,0,0,2,15,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/scp2/source/winexplorerext.po,0,0,0,0,0,2,18,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/scp2/source/writer.po,0,0,0,0,0,27,114,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/sd/messages.po,0,0,0,6,0,1313,2951,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/sfx2/messages.po,0,0,0,0,0,581,2226,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/starmath/messages.po,0,0,0,0,0,505,968,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/svl/messages.po,0,0,0,0,0,1,1,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/svtools/messages.po,0,0,0,1,0,913,2611,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/svx/messages.po,0,0,0,1,0,2845,7224,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/sw/messages.po,0,0,0,21,0,3420,7740,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/swext/mediawiki/help.po,0,0,0,0,0,89,1404,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,0,0,0,0,0,32,181,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/sysui/desktop/share.po,0,0,0,0,0,66,277,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/uui/messages.po,0,0,0,0,0,157,1554,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/vcl/messages.po,0,0,0,4,0,352,737,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/wizards/messages.po,0,0,0,1,0,264,1042,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/wizards/source/resources.po,0,0,0,0,0,554,2286,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/writerperfect/messages.po,0,0,0,0,0,30,65,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/xmlsecurity/messages.po,0,0,0,0,0,91,424,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/accessibility/messages.po,11,27,25,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/avmedia/messages.po,22,45,42,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/basctl/messages.po,154,610,453,1,1,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/basic/messages.po,135,549,452,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/chart2/messages.po,611,1344,1276,4,11,5,13,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/connectivity/messages.po,105,1033,698,0,0,1,14,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/cui/messages.po,2071,4903,4286,113,211,159,444,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dbaccess/messages.po,780,4418,3187,22,44,10,48,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/desktop/messages.po,155,1141,855,3,5,4,79,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/en/dialog.po,37,176,179,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/hu_hu/dialog.po,32,71,70,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/ru_ru/dialog.po,13,25,25,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/editeng/messages.po,258,641,593,4,6,3,9,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/extensions/messages.po,568,1917,1531,86,152,9,30,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/extras/source/autocorr/emoji.po,1092,1289,1313,0,0,483,528,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/extras/source/gallery/share.po,11,14,14,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/filter/messages.po,220,813,679,0,0,2,5,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/filter/source/config/fragments/filters.po,181,618,622,2,7,37,107,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/filter/source/config/fragments/internalgraphicfilters.po,38,139,142,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/filter/source/config/fragments/types.po,27,92,92,0,0,11,29,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/forms/messages.po,57,321,230,0,0,1,9,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/formula/messages.po,429,505,504,6,6,3,3,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/fpicker/messages.po,54,146,124,2,5,5,12,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/framework/messages.po,22,194,140,6,14,1,2,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/auxiliary.po,105,302,286,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/sbasic/guide.po,92,1107,801,0,0,11,238,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/sbasic/shared.po,1167,3524,2956,0,0,3338,31907,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/scalc.po,184,973,741,0,0,3,13,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/scalc/guide.po,356,3654,2722,0,0,1113,17939,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/schart.po,88,796,602,0,0,8,135,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/sdraw.po,121,724,535,0,0,2,8,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/sdraw/guide.po,69,541,394,0,0,206,2531,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/shared.po,231,2018,1469,0,0,19,290,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/shared/autokorr.po,48,420,245,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/shared/autopi.po,342,2636,1924,0,0,545,5758,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/shared/explorer/database.po,742,5322,3860,0,0,899,13535,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/shared/guide.po,366,4763,3620,0,0,2150,31680,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/shared/help.po,11,34,29,0,0,67,83,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/shared/menu.po,16,120,93,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/shared/optionen.po,385,2249,1687,0,0,1549,21102,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/simpress.po,197,1363,998,0,0,2,32,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/simpress/guide.po,257,2238,1686,0,0,510,8044,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/smath.po,57,613,453,0,0,3,126,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/smath/guide.po,87,839,654,0,0,17,354,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/swriter.po,256,1772,1320,0,0,80,1174,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/swriter/guide.po,618,5083,3850,0,0,1526,22854,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/swriter/librelogo.po,52,344,260,1,1,273,2674,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/helpcontent2/source/text/swriter/menu.po,17,96,66,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/librelogo/source/pythonpath.po,137,170,170,1,3,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,16,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/nlpsolver/src/locale.po,41,105,101,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/officecfg/registry/data/org/openoffice.po,8,25,25,0,0,1,3,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/officecfg/registry/data/org/openoffice/office.po,1300,1827,1753,1,4,7,10,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/readlicense_oo/docs.po,89,1845,1303,0,0,14,558,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,14,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/reportdesign/messages.po,233,548,471,25,69,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/sc/messages.po,3572,15976,11658,678,2286,436,1998,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/scaddins/messages.po,886,3149,2256,15,39,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/sccomp/messages.po,12,51,44,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/scp2/source/base.po,10,44,41,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/scp2/source/calc.po,21,89,89,0,0,1,5,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/scp2/source/draw.po,41,149,135,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/scp2/source/extensions.po,16,65,65,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/scp2/source/graphicfilter.po,30,101,99,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/scp2/source/impress.po,21,81,81,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/scp2/source/math.po,10,42,38,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/scp2/source/onlineupdate.po,2,13,11,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/scp2/source/python.po,2,7,7,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/scp2/source/quickstart.po,2,15,12,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/scp2/source/winexplorerext.po,2,18,15,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/scp2/source/writer.po,27,114,108,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/sd/messages.po,896,2218,1885,188,350,235,383,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/sfx2/messages.po,404,1407,1103,65,110,112,709,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/starmath/messages.po,474,880,842,6,10,22,75,502,965,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/svtools/messages.po,812,2201,1944,24,153,78,257,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/svx/messages.po,2277,5513,5070,279,653,290,1058,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/sw/messages.po,2822,6224,5601,322,743,297,773,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/swext/mediawiki/help.po,47,353,276,26,817,16,234,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,129,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/sysui/desktop/share.po,66,277,249,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/uui/messages.po,143,1200,906,2,92,12,262,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/vcl/messages.po,257,501,469,10,14,89,222,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/wizards/messages.po,251,986,759,14,56,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/wizards/source/resources.po,467,1948,1495,79,277,8,61,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/writerperfect/messages.po,2,3,3,4,8,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/xmlsecurity/messages.po,78,362,282,3,12,10,50,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/accessibility/messages.po,7,13,13,1,1,3,13,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/avmedia/messages.po,17,27,25,0,0,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/basctl/messages.po,108,404,344,29,46,18,161,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/basic/messages.po,18,52,44,117,497,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/chart2/messages.po,276,590,592,183,322,161,456,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/connectivity/messages.po,102,990,650,0,0,4,57,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/cui/messages.po,1560,3763,3648,543,1076,240,719,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dbaccess/messages.po,456,2833,1996,246,1251,110,426,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/desktop/messages.po,109,635,495,36,413,17,177,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/en/dialog.po,37,176,172,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/hu_hu/dialog.po,32,71,71,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/ru_ru/dialog.po,13,25,25,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/editeng/messages.po,253,628,598,5,8,7,20,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/extensions/messages.po,408,1076,969,215,797,40,226,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/extras/source/autocorr/emoji.po,56,50,51,199,195,1320,1572,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/extras/source/gallery/share.po,11,14,14,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/filter/messages.po,77,278,236,39,81,106,459,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/filter/source/config/fragments/filters.po,90,312,195,13,41,117,379,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/filter/source/config/fragments/internalgraphicfilters.po,35,127,70,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/filter/source/config/fragments/types.po,21,66,61,3,13,14,42,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/forms/messages.po,55,316,229,0,0,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/formula/messages.po,323,326,327,55,81,60,107,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/fpicker/messages.po,31,88,77,18,42,12,33,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/framework/messages.po,20,184,159,6,14,3,12,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/librelogo/source/pythonpath.po,133,166,169,2,4,3,3,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,19,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/nlpsolver/src/locale.po,41,105,102,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/officecfg/registry/data/org/openoffice/office.po,1235,1422,1917,9,24,64,395,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/readlicense_oo/docs.po,81,1590,1117,1,85,21,728,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,14,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/reportdesign/messages.po,185,455,412,61,132,12,30,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/sc/messages.po,3351,15225,11394,836,2681,499,2354,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/scaddins/messages.po,835,2579,2023,14,18,52,591,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/sccomp/messages.po,11,47,26,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/scp2/source/base.po,10,44,39,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/scp2/source/calc.po,19,81,76,1,4,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/scp2/source/draw.po,15,60,54,1,5,25,84,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/scp2/source/extensions.po,16,65,66,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/scp2/source/graphicfilter.po,28,91,108,1,2,1,8,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/scp2/source/impress.po,19,74,74,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/scp2/source/math.po,10,42,40,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/scp2/source/onlineupdate.po,2,13,11,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/scp2/source/python.po,2,7,7,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/scp2/source/quickstart.po,2,15,13,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/scp2/source/winexplorerext.po,2,18,12,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/scp2/source/writer.po,22,69,72,0,0,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/sd/messages.po,517,1314,1212,362,652,440,985,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/sfx2/messages.po,254,726,616,156,518,171,982,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/starmath/messages.po,299,521,491,98,140,98,297,495,958,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/svtools/messages.po,703,1777,1565,64,375,147,459,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/svx/messages.po,1780,4066,3906,548,1282,518,1876,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/sw/messages.po,1716,3192,3208,917,1835,807,2712,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/swext/mediawiki/help.po,47,353,268,26,817,16,234,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,2,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,131,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/sysui/desktop/share.po,54,210,208,2,20,10,47,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/uui/messages.po,104,1021,900,22,137,31,396,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/vcl/messages.po,208,353,349,26,62,122,322,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/wizards/messages.po,261,1038,859,3,3,1,1,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/wizards/source/resources.po,505,2022,1556,38,186,11,78,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/writerperfect/messages.po,1,2,2,5,9,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/xmlsecurity/messages.po,50,206,170,21,142,20,76,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/accessibility/messages.po,11,27,33,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/avmedia/messages.po,22,45,45,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/basctl/messages.po,100,396,418,32,45,23,170,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/basic/messages.po,21,71,70,114,478,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/chart2/messages.po,127,180,196,154,262,339,926,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/connectivity/messages.po,4,40,32,7,49,95,958,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,3,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/cui/messages.po,484,658,692,646,1026,1213,3874,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dbaccess/messages.po,353,2099,1830,225,1036,234,1375,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/desktop/messages.po,91,394,357,25,123,46,708,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/en/dialog.po,1,1,2,3,5,33,170,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/hu_hu/dialog.po,1,1,1,5,8,26,62,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/ru_ru/dialog.po,2,2,3,2,4,10,20,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/editeng/messages.po,72,115,129,63,108,130,433,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/extensions/messages.po,356,758,777,175,710,132,631,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/extras/source/autocorr/emoji.po,43,39,39,183,175,1349,1603,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/extras/source/gallery/share.po,11,14,14,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/filter/messages.po,42,161,145,31,59,149,598,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/filter/source/config/fragments/filters.po,28,79,79,11,29,181,624,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/filter/source/config/fragments/types.po,3,10,11,4,16,31,95,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/forms/messages.po,57,321,259,0,0,1,9,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/formula/messages.po,355,376,378,36,51,47,87,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/fpicker/messages.po,31,88,84,17,40,13,35,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/framework/messages.po,11,71,60,6,14,12,125,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/auxiliary.po,70,190,190,0,0,35,112,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/sbasic/guide.po,1,23,15,0,0,102,1322,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/sbasic/shared.po,577,913,951,0,0,3928,34518,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/scalc.po,163,809,737,0,0,24,177,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/scalc/guide.po,1067,15457,11996,0,0,402,6136,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/schart.po,18,151,103,0,0,78,780,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/sdraw.po,116,702,584,0,0,7,30,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/sdraw/guide.po,245,2579,1930,0,0,30,493,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/shared.po,205,1800,1227,0,0,45,508,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/shared/autokorr.po,47,403,335,0,0,1,17,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/shared/autopi.po,703,6338,4859,0,0,184,2056,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/shared/explorer/database.po,401,1199,985,0,0,1240,17658,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/shared/guide.po,841,11043,9135,0,0,1675,25400,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/shared/optionen.po,1103,9544,7970,0,0,831,13807,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/simpress.po,175,1240,980,0,0,24,155,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/simpress/guide.po,440,5141,4727,0,0,327,5141,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/smath.po,56,609,447,0,0,4,130,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/smath/guide.po,54,587,483,0,0,50,606,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/swriter.po,206,1213,989,0,0,130,1733,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/swriter/guide.po,228,1446,1277,0,0,1916,26491,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/swriter/librelogo.po,11,12,12,0,0,315,3007,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/librelogo/source/pythonpath.po,16,18,19,43,45,79,110,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/nlpsolver/src/locale.po,7,7,7,6,7,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/officecfg/registry/data/org/openoffice/office.po,1183,1264,1273,6,9,119,568,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/readlicense_oo/docs.po,0,0,0,1,1,102,2402,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,17,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/reportdesign/messages.po,85,109,119,54,100,119,408,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/sc/messages.po,2206,10785,8609,962,2966,1518,6509,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/scaddins/messages.po,781,2471,2393,23,79,97,638,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/sccomp/messages.po,11,47,48,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/scp2/source/base.po,8,40,42,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/scp2/source/calc.po,15,48,51,4,33,3,13,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/scp2/source/draw.po,13,52,46,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/scp2/source/gnome.po,1,2,3,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/scp2/source/graphicfilter.po,28,91,108,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/scp2/source/impress.po,17,66,52,2,8,2,7,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/scp2/source/math.po,10,42,38,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/scp2/source/onlineupdate.po,2,13,11,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/scp2/source/quickstart.po,2,15,11,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/scp2/source/winexplorerext.po,2,18,15,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/scp2/source/writer.po,17,50,48,2,7,8,57,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/sd/messages.po,396,943,924,325,603,598,1405,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/sfx2/messages.po,178,468,433,127,379,276,1379,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/starmath/messages.po,272,474,476,105,148,128,346,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/svl/messages.po,0,0,0,1,1,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/svtools/messages.po,498,1208,1154,79,164,337,1239,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/svx/messages.po,1329,2988,2995,543,1256,974,2980,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/sw/messages.po,1226,2026,2102,1055,1950,1158,3762,3439,7738,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/swext/mediawiki/help.po,6,6,6,4,6,79,1392,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,8,8,8,4,4,20,169,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/sysui/desktop/share.po,32,120,116,14,67,20,90,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/uui/messages.po,65,595,490,24,139,68,820,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/vcl/messages.po,129,185,174,53,101,174,451,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/wizards/messages.po,225,981,883,16,17,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/wizards/source/resources.po,458,1895,1632,44,210,52,181,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/writerperfect/messages.po,1,1,1,5,10,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/xmlsecurity/messages.po,20,39,35,18,119,53,266,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/accessibility/messages.po,11,27,15,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/avmedia/messages.po,19,36,19,1,4,2,5,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/basctl/messages.po,139,585,193,16,26,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/basic/messages.po,18,52,25,117,497,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/chart2/messages.po,547,1190,699,45,90,28,88,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/connectivity/messages.po,104,1017,271,0,0,2,30,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,4,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,5,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/cui/messages.po,1009,2245,1178,583,1020,751,2293,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dbaccess/messages.po,412,2593,896,202,718,198,1199,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/desktop/messages.po,128,709,321,24,391,10,125,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/en/dialog.po,6,25,23,3,5,28,146,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/en/dialog/registry/data/org/openoffice/office.po,1,2,1,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/hu_hu/dialog.po,4,6,6,6,9,22,56,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,1,2,1,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/pt_br/dialog.po,2,5,3,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/ru_ru/dialog.po,4,6,5,1,2,9,18,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/editeng/messages.po,150,322,207,44,92,71,242,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/extensions/messages.po,381,818,437,181,767,101,514,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/extras/source/autocorr/emoji.po,47,44,44,190,181,1338,1592,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/extras/source/gallery/share.po,11,14,11,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/filter/messages.po,66,250,126,31,52,125,516,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/filter/source/config/fragments/filters.po,56,218,203,11,32,153,482,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/filter/source/config/fragments/internalgraphicfilters.po,8,38,44,0,0,30,101,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/filter/source/config/fragments/types.po,5,20,19,5,18,28,83,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/forms/messages.po,57,321,88,0,0,1,9,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/formula/messages.po,392,443,438,19,22,27,49,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/fpicker/messages.po,33,93,40,16,36,12,34,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/framework/messages.po,20,184,38,6,14,3,12,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/librelogo/source/pythonpath.po,49,51,50,24,26,65,96,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/nlpsolver/src/locale.po,12,16,14,3,4,26,85,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/officecfg/registry/data/org/openoffice.po,1,3,2,1,3,7,22,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/officecfg/registry/data/org/openoffice/office.po,1242,1510,1341,5,9,61,322,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/readlicense_oo/docs.po,51,961,286,1,85,51,1357,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,9,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/reportdesign/messages.po,200,481,231,55,133,3,3,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/sc/messages.po,2497,12281,3848,995,2857,1194,5122,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/scaddins/messages.po,782,2474,1044,24,88,95,626,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/sccomp/messages.po,12,51,20,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/scp2/source/base.po,10,44,44,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/scp2/source/calc.po,19,81,41,0,0,3,13,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/scp2/source/draw.po,14,55,32,3,13,24,81,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/scp2/source/extensions.po,3,5,3,2,8,11,52,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/scp2/source/graphicfilter.po,28,91,88,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/scp2/source/impress.po,19,74,42,0,0,2,7,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/scp2/source/math.po,10,42,23,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/scp2/source/quickstart.po,2,15,15,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/scp2/source/winexplorerext.po,2,18,11,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/scp2/source/writer.po,18,54,39,2,7,7,53,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/sd/messages.po,548,1283,684,335,686,436,982,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/sfx2/messages.po,206,576,381,148,440,227,1210,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/starmath/messages.po,326,577,405,90,164,89,227,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/svtools/messages.po,691,1766,1186,70,345,153,500,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/svx/messages.po,1632,3758,2480,523,1253,691,2213,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/sw/messages.po,1530,2823,1887,1011,1937,900,2980,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/swext/mediawiki/help.po,41,254,75,25,812,23,338,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,27,175,57,4,4,1,2,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/sysui/desktop/share.po,64,257,140,2,20,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/uui/messages.po,124,1091,429,16,147,17,316,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/vcl/messages.po,158,249,184,46,95,152,393,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/wizards/messages.po,210,888,271,54,153,1,1,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/wizards/source/resources.po,487,1972,710,58,252,9,62,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/writerperfect/messages.po,0,0,0,6,11,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/xmlsecurity/messages.po,20,41,35,26,75,45,308,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/accessibility/messages.po,9,23,19,0,0,2,4,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/avmedia/messages.po,17,34,32,2,5,3,6,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/basctl/messages.po,73,243,210,20,34,62,334,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/basic/messages.po,0,0,0,14,43,121,506,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/chart2/messages.po,39,60,69,19,27,562,1281,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/connectivity/messages.po,0,0,0,0,0,106,1047,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/connectivity/registry/calc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/connectivity/registry/flat/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/cui/messages.po,68,71,75,103,151,2172,5336,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dbaccess/messages.po,8,8,9,18,26,786,4476,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/desktop/messages.po,2,13,11,2,2,158,1210,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/en/dialog.po,0,0,0,0,0,37,176,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/hu_hu/dialog.po,0,0,0,0,0,32,71,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/ru_ru/dialog.po,0,0,0,0,0,14,26,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/editeng/messages.po,2,2,2,6,6,257,648,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/extensions/messages.po,12,17,20,12,12,639,2070,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/extras/source/autocorr/emoji.po,0,0,0,26,7,1549,1810,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/extras/source/gallery/share.po,0,0,0,0,0,12,15,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/filter/messages.po,1,1,1,2,3,219,814,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/filter/source/config/fragments/filters.po,0,0,0,0,0,220,732,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/filter/source/config/fragments/types.po,0,0,0,0,0,38,121,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/forms/messages.po,0,0,0,0,0,58,330,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/formula/messages.po,2,2,2,1,1,435,511,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/fpicker/messages.po,3,4,4,6,8,52,151,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/framework/messages.po,1,1,1,0,0,28,209,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/librelogo/source/pythonpath.po,0,0,0,3,7,135,166,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/nlpsolver/src/locale.po,1,1,2,0,0,40,104,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/officecfg/registry/data/org/openoffice/office.po,1,1,1,7,7,1300,1833,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/readlicense_oo/docs.po,0,0,0,0,0,103,2403,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/reportdesign/messages.po,11,14,17,13,17,234,586,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/sc/messages.po,110,115,125,271,296,4305,19849,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/scaddins/messages.po,5,5,5,28,30,868,3153,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/scp2/source/activex.po,0,0,0,0,0,2,16,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/scp2/source/base.po,0,0,0,0,0,10,44,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/scp2/source/calc.po,0,0,0,1,1,21,93,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/scp2/source/draw.po,0,0,0,1,1,40,148,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/scp2/source/extensions.po,0,0,0,0,0,16,65,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/scp2/source/graphicfilter.po,0,0,0,0,0,30,101,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/scp2/source/impress.po,0,0,0,1,1,20,80,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/scp2/source/math.po,0,0,0,1,1,9,41,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/scp2/source/quickstart.po,0,0,0,0,0,2,15,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/scp2/source/winexplorerext.po,0,0,0,0,0,2,18,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/scp2/source/writer.po,0,0,0,1,1,26,113,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/sd/messages.po,40,47,59,40,48,1239,2856,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/sfx2/messages.po,14,15,16,16,17,551,2194,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/starmath/messages.po,5,5,6,11,11,489,952,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/svl/messages.po,0,0,0,0,0,1,1,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/svtools/messages.po,4,4,4,16,30,894,2577,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/svx/messages.po,41,45,49,61,68,2744,7111,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/sw/messages.po,106,110,120,134,149,3201,7481,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/swext/mediawiki/help.po,2,2,3,0,0,87,1402,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,0,0,0,0,0,32,181,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/sysui/desktop/share.po,0,0,0,0,0,66,277,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/uui/messages.po,2,2,3,3,5,152,1547,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/vcl/messages.po,5,5,7,22,23,329,709,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/wizards/messages.po,0,0,0,3,3,262,1039,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/wizards/source/resources.po,2,2,2,5,10,547,2274,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/writerperfect/messages.po,0,0,0,0,0,30,65,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/xmlsecurity/messages.po,1,1,1,0,0,90,423,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/accessibility/messages.po,5,9,9,0,0,6,18,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/avmedia/messages.po,9,9,9,4,4,9,32,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/basctl/messages.po,66,223,240,35,55,54,333,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/basic/messages.po,8,14,13,8,28,119,507,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/chart2/messages.po,118,167,171,160,281,342,920,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/connectivity/messages.po,0,0,0,7,48,99,999,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/connectivity/registry/calc/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/cui/messages.po,505,968,1021,694,1078,1144,3512,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dbaccess/messages.po,209,1151,1244,151,415,452,2944,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/desktop/messages.po,30,141,143,18,86,114,998,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/en/dialog.po,1,1,2,2,3,34,172,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/hu_hu/dialog.po,2,2,2,2,2,28,67,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/pt_br/dialog.po,0,0,0,1,2,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/ru_ru/dialog.po,2,2,3,0,0,12,24,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/editeng/messages.po,196,465,500,51,143,18,48,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/extensions/messages.po,279,581,624,158,433,226,1085,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/extras/source/autocorr/emoji.po,41,37,37,150,140,1384,1640,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/extras/source/gallery/share.po,6,8,8,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/filter/messages.po,40,159,168,28,56,154,603,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/filter/source/config/fragments/filters.po,16,46,43,9,23,195,663,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/filter/source/config/fragments/types.po,1,4,4,0,0,37,117,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/forms/messages.po,25,101,101,4,7,29,222,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/formula/messages.po,158,159,163,78,101,199,251,435,511,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/fpicker/messages.po,20,30,38,17,43,24,90,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/framework/messages.po,7,12,13,2,3,20,195,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/librelogo/source/pythonpath.po,14,14,14,42,42,82,117,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/nlpsolver/src/locale.po,6,6,7,7,8,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/officecfg/registry/data/org/openoffice/office.po,197,268,266,188,194,923,1379,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/readlicense_oo/docs.po,8,40,42,0,0,95,2363,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/reportdesign/messages.po,63,77,80,70,121,125,419,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/sc/messages.po,1298,6958,6752,1316,3621,2072,9681,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/scaddins/messages.po,264,1349,1247,171,411,465,1427,900,3187,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/scp2/source/activex.po,1,2,5,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/scp2/source/base.po,2,4,4,3,11,5,29,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/scp2/source/calc.po,8,22,21,4,10,10,62,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/scp2/source/draw.po,5,12,12,3,10,33,127,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/scp2/source/graphicfilter.po,24,77,74,2,6,4,18,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/scp2/source/impress.po,10,26,24,3,9,8,46,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/scp2/source/math.po,4,11,11,2,5,4,26,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/scp2/source/quickstart.po,0,0,0,0,0,2,15,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/scp2/source/winexplorerext.po,0,0,0,0,0,2,18,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/scp2/source/writer.po,10,27,27,3,8,14,79,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/sd/messages.po,309,787,863,303,497,707,1667,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/sfx2/messages.po,142,287,358,118,298,321,1641,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/starmath/messages.po,261,461,600,109,155,133,350,503,966,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/svtools/messages.po,367,797,873,96,208,451,1606,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/svx/messages.po,1074,2167,2192,556,1064,1216,3993,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/sw/messages.po,938,1459,1483,1098,1781,1403,4498,3439,7738,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/swext/mediawiki/help.po,6,6,6,4,6,79,1392,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,5,5,6,8,8,19,168,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/sysui/desktop/share.po,14,37,37,8,23,44,217,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/uui/messages.po,11,61,68,16,45,130,1448,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/vcl/messages.po,105,142,139,63,101,188,494,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/wizards/messages.po,39,86,102,38,51,188,905,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/wizards/source/resources.po,257,907,1078,72,141,225,1238,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/writerperfect/messages.po,1,1,1,5,10,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/xmlsecurity/messages.po,11,13,12,2,3,78,408,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/accessibility/messages.po,11,27,27,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/avmedia/messages.po,22,45,39,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/basctl/messages.po,155,611,512,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/basic/messages.po,135,549,496,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/chart2/messages.po,620,1368,1388,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/connectivity/messages.po,106,1047,694,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,3,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/cui/messages.po,2342,5557,5301,0,0,1,1,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dbaccess/messages.po,812,4510,3468,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/desktop/messages.po,162,1225,1002,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/en/dialog.po,37,176,186,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/hu_hu/dialog.po,32,71,81,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/ru_ru/dialog.po,14,26,27,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,6,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/editeng/messages.po,265,656,704,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/extensions/messages.po,663,2099,1837,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/extras/source/autocorr/emoji.po,1575,1817,1894,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/extras/source/gallery/share.po,12,15,15,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/filter/messages.po,222,818,783,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/filter/source/config/fragments/filters.po,220,732,761,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/filter/source/config/fragments/internalgraphicfilters.po,38,139,144,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/filter/source/config/fragments/types.po,38,121,134,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/forms/messages.po,58,330,249,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/formula/messages.po,430,505,504,0,0,1,1,431,506,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/fpicker/messages.po,61,163,144,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/framework/messages.po,29,210,164,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/auxiliary.po,104,299,307,0,0,1,3,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/sbasic/guide.po,103,1345,1085,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/sbasic/shared.po,4474,35040,28312,0,0,31,391,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/scalc.po,187,986,814,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/scalc/guide.po,1421,20874,16334,0,0,48,719,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/schart.po,96,931,726,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/sdraw.po,123,732,617,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/sdraw/guide.po,275,3072,2400,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/shared.po,241,2147,1727,0,0,9,161,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/shared/autokorr.po,48,420,327,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/shared/autopi.po,887,8394,6499,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/shared/explorer/database.po,1519,15579,11908,0,0,122,3278,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/shared/guide.po,2488,35817,28135,0,0,28,626,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/shared/help.po,11,34,29,0,0,67,83,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/shared/menu.po,16,120,102,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/shared/optionen.po,1880,22150,17349,0,0,54,1201,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/simpress.po,199,1395,1165,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/simpress/guide.po,766,10274,7985,0,0,1,8,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/smath.po,59,722,550,0,0,1,17,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/smath/guide.po,104,1193,924,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/swriter.po,305,2642,2132,0,0,31,304,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/swriter/guide.po,2138,27875,21351,0,0,6,62,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/swriter/librelogo.po,326,3019,2771,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/helpcontent2/source/text/swriter/menu.po,17,96,85,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/librelogo/source/pythonpath.po,138,173,188,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,24,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/nlpsolver/src/locale.po,41,105,106,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/officecfg/registry/data/org/openoffice.po,9,28,28,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/officecfg/registry/data/org/openoffice/office.po,1308,1841,1788,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/readlicense_oo/docs.po,103,2403,1872,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,15,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/reportdesign/messages.po,258,617,588,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/sc/messages.po,4680,20230,15583,2,4,4,26,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/scaddins/messages.po,901,3188,2500,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/sccomp/messages.po,14,65,62,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/scp2/source/activex.po,2,16,16,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/scp2/source/base.po,10,44,38,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/scp2/source/calc.po,22,94,96,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/scp2/source/draw.po,41,149,145,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/scp2/source/extensions.po,16,65,68,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/scp2/source/gnome.po,2,11,10,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/scp2/source/graphicfilter.po,30,101,130,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/scp2/source/impress.po,21,81,79,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/scp2/source/math.po,10,42,39,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/scp2/source/onlineupdate.po,2,13,12,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/scp2/source/quickstart.po,2,15,13,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/scp2/source/writer.po,27,114,112,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/sd/messages.po,1317,2949,2798,0,0,2,2,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/sfx2/messages.po,581,2226,1911,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/starmath/messages.po,505,968,1000,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/svtools/messages.po,914,2611,2458,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/svx/messages.po,2840,7216,6942,0,0,6,8,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/sw/messages.po,3440,7737,7500,0,0,1,3,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/swext/mediawiki/help.po,89,1404,1104,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,2,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,135,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/sysui/desktop/share.po,66,277,277,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/uui/messages.po,157,1554,1197,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/vcl/messages.po,308,615,618,0,0,48,122,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/wizards/messages.po,265,1042,866,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/wizards/source/resources.po,554,2286,1838,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/writerperfect/messages.po,30,65,75,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/xmlsecurity/messages.po,91,424,335,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/accessibility/messages.po,5,9,10,0,0,6,18,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/avmedia/messages.po,17,27,25,0,0,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/basctl/messages.po,74,242,294,34,50,47,319,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/basic/messages.po,8,14,13,9,31,118,504,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/chart2/messages.po,103,154,222,204,343,313,871,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/connectivity/messages.po,0,0,0,8,56,98,991,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/connectivity/registry/calc/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/connectivity/registry/flat/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/cui/messages.po,432,890,1137,795,1264,1116,3404,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dbaccess/messages.po,303,1608,1801,217,644,292,2258,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/desktop/messages.po,42,166,204,14,29,106,1030,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/en/dialog.po,1,1,1,2,3,34,172,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/hu_hu/dialog.po,1,1,1,5,6,26,64,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/pt_br/dialog.po,0,0,0,1,2,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/ru_ru/dialog.po,2,2,2,0,0,12,24,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/editeng/messages.po,198,459,638,49,141,18,56,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/extensions/messages.po,320,659,942,186,480,157,960,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/extras/source/autocorr/emoji.po,41,37,81,165,156,1369,1624,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/extras/source/gallery/share.po,5,7,7,2,2,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/filter/messages.po,42,161,189,30,60,150,597,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/filter/source/config/fragments/filters.po,19,55,63,11,28,190,649,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/filter/source/config/fragments/types.po,2,8,8,5,18,31,95,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/forms/messages.po,50,278,345,1,2,7,50,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/formula/messages.po,283,286,298,71,96,84,132,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/fpicker/messages.po,25,39,48,18,52,18,72,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/framework/messages.po,8,14,17,7,15,14,181,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/librelogo/source/pythonpath.po,12,12,13,43,43,83,118,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/nlpsolver/src/locale.po,7,7,9,6,7,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/officecfg/registry/data/org/openoffice/office.po,470,559,1541,356,350,482,932,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/readlicense_oo/docs.po,7,41,58,1,1,95,2361,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/reportdesign/messages.po,62,81,111,73,121,123,415,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/sc/messages.po,1220,6929,7870,1454,3661,2012,9670,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/scaddins/messages.po,255,1340,1634,196,438,449,1409,900,3187,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/scp2/source/base.po,8,40,50,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/scp2/source/calc.po,13,41,52,4,33,5,20,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/scp2/source/draw.po,11,45,57,1,5,29,99,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/scp2/source/graphicfilter.po,24,77,180,2,6,4,18,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/scp2/source/impress.po,15,59,75,2,8,4,14,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/scp2/source/math.po,9,39,51,0,0,1,3,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/scp2/source/quickstart.po,2,15,17,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/scp2/source/winexplorerext.po,2,18,21,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/scp2/source/writer.po,14,37,49,2,7,11,70,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/sd/messages.po,311,780,999,360,610,648,1561,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/sfx2/messages.po,152,293,373,130,265,299,1668,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/starmath/messages.po,202,402,593,119,165,131,348,452,915,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/svtools/messages.po,394,857,1127,101,205,419,1549,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/svx/messages.po,1117,2381,3409,626,1152,1103,3691,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/sw/messages.po,866,1567,2428,1333,2140,1242,4033,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/swext/mediawiki/help.po,4,4,6,6,8,79,1392,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,5,5,6,7,7,20,169,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/sysui/desktop/share.po,31,119,159,13,64,22,94,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/uui/messages.po,11,86,105,27,88,119,1380,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/vcl/messages.po,86,104,123,77,120,193,513,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/wizards/messages.po,137,718,795,47,80,81,244,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/wizards/source/resources.po,387,1726,1959,87,202,80,358,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/writerperfect/messages.po,0,0,0,6,11,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/xmlsecurity/messages.po,16,24,44,15,52,60,348,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/accessibility/messages.po,5,5,5,0,0,6,22,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/avmedia/messages.po,16,26,20,0,0,6,19,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/basctl/messages.po,93,302,254,29,36,33,273,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/basic/messages.po,18,52,41,117,497,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/chart2/messages.po,77,91,99,84,113,459,1164,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/connectivity/messages.po,48,343,266,2,13,56,691,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/cui/messages.po,562,865,881,525,775,1256,3918,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dbaccess/messages.po,55,104,101,68,123,689,4283,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/desktop/messages.po,41,108,81,18,75,103,1042,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/en/dialog.po,37,176,158,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/en/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/hu_hu/dialog.po,32,71,75,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/pt_br/dialog.po,1,2,2,0,0,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/ru_ru/dialog.po,13,25,21,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,1,2,2,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/editeng/messages.po,130,239,278,27,65,108,352,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/extensions/messages.po,156,243,245,100,185,407,1671,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/extras/source/autocorr/emoji.po,4,3,3,95,80,1476,1734,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/extras/source/gallery/share.po,2,2,2,0,0,10,13,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/filter/messages.po,21,23,23,24,29,177,766,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/filter/source/config/fragments/filters.po,15,39,44,12,47,193,646,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/filter/source/config/fragments/types.po,2,8,10,2,10,34,103,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/forms/messages.po,7,7,7,5,7,46,316,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/formula/messages.po,297,298,299,60,82,81,134,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/fpicker/messages.po,27,44,47,9,20,25,99,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/framework/messages.po,7,13,12,3,6,19,191,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/librelogo/source/pythonpath.po,11,13,12,30,32,97,128,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/nlpsolver/src/locale.po,4,6,5,1,1,36,98,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/officecfg/registry/data/org/openoffice/office.po,195,218,218,122,135,991,1488,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/readlicense_oo/docs.po,0,0,0,1,1,102,2402,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/reportdesign/messages.po,61,73,88,42,71,155,473,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/sc/messages.po,702,789,826,539,875,3445,18596,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/scaddins/messages.po,78,78,82,53,63,770,3047,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/scp2/source/activex.po,0,0,0,0,0,2,16,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/scp2/source/base.po,0,0,0,0,0,10,44,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/scp2/source/calc.po,2,2,3,1,2,19,90,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/scp2/source/draw.po,2,2,2,2,6,37,141,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/scp2/source/extensions.po,0,0,0,1,1,15,64,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/scp2/source/graphicfilter.po,0,0,0,0,0,30,101,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/scp2/source/impress.po,3,3,3,1,2,17,76,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/scp2/source/math.po,1,1,1,1,2,8,39,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/scp2/source/quickstart.po,0,0,0,0,0,2,15,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/scp2/source/winexplorerext.po,0,0,0,0,0,2,18,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/scp2/source/writer.po,3,5,5,2,7,22,102,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/sd/messages.po,177,203,221,239,333,903,2415,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/sfx2/messages.po,152,229,222,60,136,369,1861,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/starmath/messages.po,49,55,58,88,109,368,804,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/svl/messages.po,0,0,0,0,0,1,1,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/svtools/messages.po,177,288,283,78,168,659,2155,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/svx/messages.po,612,967,1028,407,699,1827,5558,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/sw/messages.po,610,677,729,658,894,2173,6169,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/swext/mediawiki/help.po,4,4,5,5,7,80,1393,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,8,8,9,1,1,23,172,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/sysui/desktop/share.po,4,5,6,3,6,59,266,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/uui/messages.po,5,32,31,10,29,142,1493,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/vcl/messages.po,73,92,97,41,46,242,599,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/wizards/messages.po,36,37,41,28,31,201,974,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/wizards/source/resources.po,62,71,69,39,78,453,2137,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/writerperfect/messages.po,0,0,0,2,3,28,62,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/xmlsecurity/messages.po,21,41,35,18,61,52,322,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/accessibility/messages.po,11,27,26,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/avmedia/messages.po,22,45,42,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/basctl/messages.po,155,611,482,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/basic/messages.po,135,549,538,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/chart2/messages.po,366,767,833,126,229,128,372,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/connectivity/messages.po,105,1033,708,0,0,1,14,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/cui/messages.po,2080,4908,4699,101,196,162,454,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dbaccess/messages.po,481,2886,2218,227,1214,104,410,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/desktop/messages.po,160,1172,894,0,0,2,53,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/en/dialog.po,37,176,183,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/hu_hu/dialog.po,32,71,89,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/ru_ru/dialog.po,13,25,25,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/editeng/messages.po,265,656,707,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/extensions/messages.po,433,1106,1060,194,775,36,218,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/extras/source/autocorr/emoji.po,55,49,51,241,238,1279,1530,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/extras/source/gallery/share.po,11,14,15,0,0,1,1,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/filter/messages.po,83,284,233,36,78,103,456,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/filter/source/config/fragments/filters.po,100,357,390,24,87,96,288,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/filter/source/config/fragments/internalgraphicfilters.po,35,127,146,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/filter/source/config/fragments/types.po,21,66,69,3,13,14,42,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/forms/messages.po,58,330,287,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/formula/messages.po,437,513,513,0,0,1,1,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/fpicker/messages.po,57,155,134,1,4,3,4,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/framework/messages.po,29,210,182,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/auxiliary.po,20,23,30,0,0,85,279,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/sbasic/guide.po,83,1116,954,0,0,20,229,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/sbasic/shared.po,759,1487,1444,0,0,3746,33944,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/scalc.po,173,877,823,0,0,14,109,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/scalc/guide.po,87,582,497,0,0,1382,21011,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/schart.po,64,425,371,0,0,32,506,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/sdraw.po,120,718,650,0,0,3,14,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/sdraw/guide.po,18,33,31,0,0,257,3039,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/shared.po,215,1847,1568,0,0,35,461,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/shared/autokorr.po,47,403,315,0,0,1,17,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/shared/autopi.po,184,376,382,0,0,703,8018,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/shared/explorer/database.po,331,692,708,0,0,1310,18165,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/shared/guide.po,62,328,248,0,0,2454,36115,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/shared/optionen.po,423,908,847,0,0,1511,22443,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/simpress.po,185,1314,1175,0,0,14,81,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/simpress/guide.po,39,297,303,0,0,728,9985,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/smath.po,56,609,497,0,0,4,130,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/smath/guide.po,93,964,812,0,0,11,229,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/swriter.po,216,1378,1230,0,0,120,1568,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/swriter/guide.po,184,939,782,0,0,1960,26998,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/swriter/librelogo.po,25,26,26,0,0,301,2993,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/librelogo/source/pythonpath.po,138,173,184,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,19,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/nlpsolver/src/locale.po,41,105,106,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/officecfg/registry/data/org/openoffice.po,8,25,27,0,0,1,3,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/officecfg/registry/data/org/openoffice/office.po,1300,1827,2899,1,4,7,10,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/readlicense_oo/docs.po,89,1845,1493,0,0,14,558,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,19,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/reportdesign/messages.po,237,552,538,21,65,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/sc/messages.po,2806,13277,10667,1035,3118,845,3865,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/scaddins/messages.po,835,2579,2454,14,18,52,591,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/sccomp/messages.po,12,51,54,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/scp2/source/activex.po,2,16,16,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/scp2/source/base.po,10,44,44,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/scp2/source/calc.po,22,94,106,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/scp2/source/draw.po,41,149,164,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/scp2/source/extensions.po,16,65,62,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/scp2/source/graphicfilter.po,30,101,100,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/scp2/source/impress.po,21,81,84,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/scp2/source/math.po,10,42,38,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/scp2/source/onlineupdate.po,2,13,8,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/scp2/source/python.po,2,7,9,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/scp2/source/quickstart.po,2,15,12,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/scp2/source/winexplorerext.po,2,18,19,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/scp2/source/writer.po,27,114,109,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/scp2/source/xsltfilter.po,2,6,8,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/sd/messages.po,545,1362,1277,337,606,437,983,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/sfx2/messages.po,300,865,746,140,505,141,856,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/starmath/messages.po,342,611,637,86,154,73,199,501,964,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/svtools/messages.po,823,2279,2162,17,82,74,250,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/svx/messages.po,1843,4155,4383,500,1219,503,1850,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/sw/messages.po,1808,3322,3611,847,1752,785,2665,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/swext/mediawiki/help.po,47,353,270,26,817,16,234,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,4,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,122,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/sysui/desktop/share.po,66,277,288,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/uui/messages.po,148,1322,1022,0,0,9,232,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/vcl/messages.po,268,519,496,1,2,87,216,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/wizards/messages.po,265,1042,896,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/wizards/source/resources.po,520,2056,1697,26,169,8,61,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/writerperfect/messages.po,3,4,4,3,7,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/xmlsecurity/messages.po,78,362,303,3,12,10,50,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/accessibility/messages.po,11,27,30,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/avmedia/messages.po,22,45,41,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/basctl/messages.po,155,611,524,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/basic/messages.po,135,549,514,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/chart2/messages.po,620,1368,1385,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/connectivity/messages.po,106,1047,737,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,9,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,5,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,3,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/cui/messages.po,2343,5558,5228,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dbaccess/messages.po,812,4510,3729,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/desktop/messages.po,162,1225,985,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/en/dialog.po,37,176,167,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/hu_hu/dialog.po,32,71,70,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/pt_br/dialog.po,2,5,5,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/ru_ru/dialog.po,14,26,24,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,5,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/editeng/messages.po,265,656,652,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/extensions/messages.po,663,2099,1827,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/extras/source/autocorr/emoji.po,1572,1813,1896,0,0,3,4,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/extras/source/gallery/share.po,12,15,15,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/filter/messages.po,222,818,749,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/filter/source/config/fragments/filters.po,220,732,754,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/filter/source/config/fragments/internalgraphicfilters.po,38,139,138,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/filter/source/config/fragments/types.po,38,121,129,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/forms/messages.po,58,330,264,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/formula/messages.po,438,514,515,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/fpicker/messages.po,61,163,140,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/framework/messages.po,29,210,162,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/auxiliary.po,105,302,311,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/sbasic/guide.po,103,1345,1232,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/sbasic/shared.po,4505,35431,30416,0,0,0,0,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/scalc.po,187,986,902,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/scalc/guide.po,1468,21546,17956,0,0,1,47,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/schart.po,96,931,800,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/sdraw.po,123,732,653,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/sdraw/guide.po,275,3072,2552,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/shared.po,246,2199,1852,0,0,4,109,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/shared/autokorr.po,48,420,310,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/shared/autopi.po,887,8394,6645,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/shared/explorer/database.po,1641,18857,16152,0,0,0,0,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/shared/guide.po,1004,12169,10723,0,0,1512,24274,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/shared/help.po,78,117,119,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/shared/menu.po,16,120,102,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/shared/optionen.po,1035,11126,9412,0,0,899,12225,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/simpress.po,199,1395,1206,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/simpress/guide.po,767,10282,8648,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/smath.po,60,739,703,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/smath/guide.po,104,1193,1156,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/swriter.po,331,2836,2451,0,0,5,110,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/swriter/guide.po,2144,27937,23275,0,0,0,0,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/swriter/librelogo.po,326,3019,2841,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/helpcontent2/source/text/swriter/menu.po,17,96,90,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/librelogo/source/pythonpath.po,138,173,169,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,17,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/nlpsolver/src/locale.po,41,105,99,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/officecfg/registry/data/org/openoffice.po,9,28,27,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/officecfg/registry/data/org/openoffice/office.po,1308,1841,1790,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/readlicense_oo/docs.po,103,2403,2022,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,14,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/reportdesign/messages.po,258,617,589,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/sc/messages.po,4686,20260,16202,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/scaddins/messages.po,901,3188,2927,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/sccomp/messages.po,14,65,64,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/scp2/source/activex.po,2,16,17,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/scp2/source/base.po,10,44,45,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/scp2/source/calc.po,22,94,99,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/scp2/source/draw.po,41,149,173,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/scp2/source/extensions.po,16,65,67,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/scp2/source/gnome.po,2,11,11,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/scp2/source/graphicfilter.po,30,101,124,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/scp2/source/impress.po,21,81,78,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/scp2/source/math.po,10,42,39,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/scp2/source/onlineupdate.po,2,13,7,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/scp2/source/quickstart.po,2,15,15,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/scp2/source/winexplorerext.po,2,18,15,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/scp2/source/writer.po,27,114,116,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/sd/messages.po,1317,2949,2829,0,0,2,2,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/sfx2/messages.po,581,2226,1911,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/starmath/messages.po,505,968,950,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/svtools/messages.po,913,2610,2413,0,0,1,1,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/svx/messages.po,2840,7208,6808,0,0,6,16,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/sw/messages.po,3439,7738,7497,0,0,0,0,3439,7738,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/swext/mediawiki/help.po,89,1404,1108,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,127,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/sysui/desktop/share.po,66,277,276,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/uui/messages.po,157,1554,1230,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/vcl/messages.po,340,691,665,0,0,16,46,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/wizards/messages.po,265,1042,874,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/wizards/source/resources.po,554,2286,1827,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/writerperfect/messages.po,30,65,67,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/xmlsecurity/messages.po,91,424,351,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/accessibility/messages.po,9,23,30,0,0,2,4,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/avmedia/messages.po,17,34,39,1,4,4,7,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/basctl/messages.po,26,104,129,7,16,122,491,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/basic/messages.po,8,11,15,12,37,115,501,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/chart2/messages.po,21,21,24,13,13,586,1334,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/connectivity/messages.po,0,0,0,0,0,106,1047,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/connectivity/registry/calc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/connectivity/registry/flat/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/cui/messages.po,119,131,141,81,124,2143,5303,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dbaccess/messages.po,20,21,22,29,45,763,4444,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/desktop/messages.po,3,4,6,2,3,157,1218,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/en/dialog.po,0,0,0,0,0,37,176,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/hu_hu/dialog.po,0,0,0,0,0,32,71,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/pt_br/dialog.po,0,0,0,0,0,2,5,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/ru_ru/dialog.po,0,0,0,0,0,14,26,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,0,0,2,5,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/editeng/messages.po,7,7,9,1,2,257,647,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/extensions/messages.po,29,45,60,16,21,618,2033,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/extras/source/autocorr/emoji.po,0,0,0,37,18,1538,1799,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/extras/source/gallery/share.po,0,0,0,0,0,12,15,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/filter/messages.po,4,4,5,7,8,211,806,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/filter/source/config/fragments/filters.po,1,2,2,4,10,215,720,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/filter/source/config/fragments/types.po,1,2,3,1,3,36,116,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/forms/messages.po,0,0,0,0,0,58,330,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/formula/messages.po,5,5,10,3,3,430,506,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/fpicker/messages.po,29,85,106,12,31,20,47,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/framework/messages.po,1,2,2,1,1,27,207,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/librelogo/source/pythonpath.po,6,10,12,1,1,131,162,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/nlpsolver/src/locale.po,1,1,1,0,0,40,104,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/officecfg/registry/data/org/openoffice/office.po,58,78,80,4,6,1246,1757,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/readlicense_oo/docs.po,0,0,0,0,0,103,2403,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/reportdesign/messages.po,22,34,40,7,17,229,566,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/sc/messages.po,179,185,198,91,136,4416,19939,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/scaddins/messages.po,8,8,8,0,0,893,3180,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/sccomp/messages.po,11,47,58,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/scp2/source/activex.po,0,0,0,0,0,2,16,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/scp2/source/base.po,3,7,8,0,0,7,37,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/scp2/source/calc.po,2,5,5,0,0,20,89,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/scp2/source/draw.po,2,5,5,0,0,39,144,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/scp2/source/extensions.po,0,0,0,0,0,16,65,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/scp2/source/graphicfilter.po,0,0,0,0,0,30,101,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/scp2/source/impress.po,2,5,4,0,0,19,76,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/scp2/source/math.po,2,5,5,0,0,8,37,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/scp2/source/quickstart.po,0,0,0,0,0,2,15,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/scp2/source/winexplorerext.po,0,0,0,0,0,2,18,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/scp2/source/writer.po,4,9,8,0,0,23,105,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/sd/messages.po,41,48,54,48,65,1230,2838,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/sfx2/messages.po,24,29,33,26,38,531,2159,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/starmath/messages.po,11,13,13,3,4,491,951,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/svtools/messages.po,36,51,51,10,26,868,2534,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/svx/messages.po,61,66,71,34,44,2751,7114,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/sw/messages.po,214,258,287,173,284,3054,7198,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/swext/mediawiki/help.po,3,3,3,1,2,85,1399,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,4,4,4,0,0,28,177,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/sysui/desktop/share.po,2,4,5,0,0,64,273,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/uui/messages.po,2,2,3,1,3,154,1549,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/vcl/messages.po,29,42,50,9,22,318,673,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/wizards/messages.po,9,9,9,2,2,254,1031,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/wizards/source/resources.po,20,25,27,8,13,526,2248,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/writerperfect/messages.po,0,0,0,2,3,28,62,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/xmlsecurity/messages.po,6,6,6,0,0,85,418,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/accessibility/messages.po,11,27,24,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/avmedia/messages.po,21,44,42,1,1,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/basctl/messages.po,155,611,528,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/basic/messages.po,135,549,495,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/chart2/messages.po,536,1167,1166,39,55,45,146,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/connectivity/messages.po,80,732,519,2,24,24,291,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,2,3,3,0,0,1,2,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,1,5,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/cui/messages.po,588,1173,1099,726,1139,1029,3246,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dbaccess/messages.po,345,1782,1394,232,975,235,1753,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/desktop/messages.po,104,466,361,28,284,30,475,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/en/dialog.po,26,97,119,2,10,9,69,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/hu_hu/dialog.po,10,16,21,4,5,18,50,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/pt_br/dialog.po,0,0,0,1,2,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/ru_ru/dialog.po,4,5,5,1,2,9,19,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/editeng/messages.po,70,115,121,70,115,125,426,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/extensions/messages.po,371,792,773,174,421,118,886,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/extensions/source/update/check/org/openoffice/office.po,1,3,3,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/extras/source/autocorr/emoji.po,41,38,38,169,157,1365,1622,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/extras/source/gallery/share.po,6,8,9,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/filter/messages.po,50,184,153,29,59,143,575,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/filter/source/config/fragments/filters.po,80,276,281,11,29,129,427,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/filter/source/config/fragments/internalgraphicfilters.po,35,127,127,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/filter/source/config/fragments/types.po,15,41,43,3,12,20,68,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/forms/messages.po,53,283,238,1,2,4,45,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/formula/messages.po,304,307,308,63,89,71,118,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/fpicker/messages.po,30,77,68,15,44,16,42,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/framework/messages.po,17,163,114,6,14,6,33,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/librelogo/source/pythonpath.po,18,20,19,47,49,73,104,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/nlpsolver/src/locale.po,9,9,10,4,5,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/officecfg/registry/data/org/openoffice/office.po,711,798,971,72,75,525,968,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/readlicense_oo/docs.po,10,38,38,0,0,93,2365,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/reportdesign/messages.po,148,308,330,75,149,35,160,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/sc/messages.po,1419,4111,2983,887,1795,2380,14354,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/scaddins/messages.po,268,513,429,43,85,590,2590,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/sccomp/messages.po,12,51,50,0,0,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/scp2/source/base.po,8,40,41,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/scp2/source/calc.po,17,56,64,3,29,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/scp2/source/draw.po,13,52,49,1,5,27,92,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/scp2/source/gnome.po,1,2,2,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/scp2/source/graphicfilter.po,28,91,91,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/scp2/source/impress.po,19,74,69,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/scp2/source/math.po,10,42,39,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/scp2/source/onlineupdate.po,2,13,7,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/scp2/source/quickstart.po,2,15,15,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/scp2/source/winexplorerext.po,2,18,16,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/scp2/source/writer.po,22,69,71,0,0,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/sd/messages.po,348,797,741,344,625,627,1529,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/sfx2/messages.po,165,323,316,125,252,291,1651,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/starmath/messages.po,217,350,319,99,131,187,485,503,966,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/svl/messages.po,0,0,0,1,1,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/svtools/messages.po,511,1159,1094,68,125,335,1327,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/svx/messages.po,1215,2554,2564,546,1030,1085,3640,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/sw/messages.po,1149,1927,2037,1103,1931,1189,3882,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/swext/mediawiki/help.po,39,224,181,10,196,40,984,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,2,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,31,161,117,0,0,1,20,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/sysui/desktop/share.po,42,151,141,11,54,13,72,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/uui/messages.po,84,630,508,20,56,53,868,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/vcl/messages.po,133,194,190,52,101,171,442,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/wizards/messages.po,130,369,325,23,39,112,634,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/wizards/source/resources.po,337,1073,878,43,106,174,1107,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/writerperfect/messages.po,1,1,1,5,10,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/xmlsecurity/messages.po,21,58,50,17,84,53,282,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/accessibility/messages.po,5,9,11,0,0,6,18,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/avmedia/messages.po,17,27,28,0,0,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/basctl/messages.po,74,242,321,34,50,47,319,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/basic/messages.po,8,14,18,9,31,118,504,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/chart2/messages.po,107,157,214,199,336,314,875,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/connectivity/messages.po,0,0,0,8,56,98,991,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/connectivity/registry/calc/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/connectivity/registry/flat/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/cui/messages.po,443,896,1153,782,1249,1118,3413,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dbaccess/messages.po,301,1604,1896,219,648,292,2258,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/desktop/messages.po,41,165,223,15,30,106,1030,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/en/dialog.po,1,1,1,2,3,34,172,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/hu_hu/dialog.po,1,1,1,5,6,26,64,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/pt_br/dialog.po,0,0,0,1,2,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/ru_ru/dialog.po,2,2,2,0,0,12,24,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/editeng/messages.po,198,459,677,49,141,18,56,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/extensions/messages.po,323,659,953,183,477,157,963,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/extras/source/autocorr/emoji.po,42,38,41,164,155,1369,1624,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/extras/source/gallery/share.po,6,8,8,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/filter/messages.po,41,160,233,32,61,149,597,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/filter/source/config/fragments/filters.po,21,62,70,9,21,190,649,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/filter/source/config/fragments/types.po,3,10,11,4,16,31,95,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/forms/messages.po,50,278,373,1,2,7,50,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/formula/messages.po,283,286,291,70,95,85,133,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/fpicker/messages.po,25,39,48,18,52,18,72,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/framework/messages.po,8,14,17,7,15,14,181,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/librelogo/source/pythonpath.po,13,13,16,41,41,84,119,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/nlpsolver/src/locale.po,7,7,9,6,7,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/officecfg/registry/data/org/openoffice/office.po,477,566,610,353,347,478,928,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/readlicense_oo/docs.po,7,41,58,1,1,95,2361,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/reportdesign/messages.po,64,82,99,71,120,123,415,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/sc/messages.po,1293,6992,7401,1404,3641,1989,9627,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/scaddins/messages.po,261,1346,1574,191,433,449,1409,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/scp2/source/base.po,8,40,47,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/scp2/source/calc.po,13,41,60,4,33,5,20,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/scp2/source/draw.po,11,45,62,1,5,29,99,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/scp2/source/graphicfilter.po,24,77,131,2,6,4,18,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/scp2/source/impress.po,15,59,84,2,8,4,14,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/scp2/source/math.po,9,39,52,0,0,1,3,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/scp2/source/quickstart.po,2,15,17,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/scp2/source/winexplorerext.po,2,18,22,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/scp2/source/writer.po,14,37,51,2,7,11,70,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/sd/messages.po,320,790,1008,355,604,644,1557,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/sfx2/messages.po,148,289,358,134,268,299,1669,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/starmath/messages.po,259,459,596,115,161,131,348,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/svl/messages.po,0,0,0,1,1,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/svtools/messages.po,393,855,1099,100,204,421,1552,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/svx/messages.po,1121,2400,3378,639,1165,1086,3659,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/sw/messages.po,890,1597,2065,1311,2114,1240,4029,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/swext/mediawiki/help.po,5,5,5,5,7,79,1392,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,7,8,9,6,6,19,167,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/sysui/desktop/share.po,31,119,163,13,64,22,94,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/uui/messages.po,12,87,120,25,81,120,1386,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/vcl/messages.po,91,118,124,79,121,186,498,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/wizards/messages.po,139,720,942,45,78,81,244,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/wizards/source/resources.po,398,1736,2161,77,193,79,357,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/writerperfect/messages.po,0,0,0,6,11,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/xmlsecurity/messages.po,17,25,44,14,51,60,348,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/accessibility/messages.po,11,27,32,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/avmedia/messages.po,22,45,50,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/basctl/messages.po,155,611,730,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/basic/messages.po,135,549,673,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/chart2/messages.po,618,1364,1622,0,0,2,4,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/connectivity/messages.po,106,1047,1187,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,3,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,3,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/cui/messages.po,2309,5475,6305,0,0,34,83,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dbaccess/messages.po,812,4510,5147,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/desktop/messages.po,162,1225,1456,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/en/dialog.po,37,176,219,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,9,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/hu_hu/dialog.po,32,71,92,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,9,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/pt_br/dialog.po,2,5,7,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/ru_ru/dialog.po,13,25,31,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,7,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/editeng/messages.po,265,656,768,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/extensions/messages.po,663,2099,2352,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/extensions/source/update/check/org/openoffice/office.po,1,3,2,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/extras/source/autocorr/emoji.po,1575,1817,1960,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/extras/source/gallery/share.po,12,15,16,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/filter/messages.po,222,818,942,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/filter/source/config/fragments/filters.po,220,732,804,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/filter/source/config/fragments/internalgraphicfilters.po,38,139,138,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/filter/source/config/fragments/types.po,38,121,141,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/forms/messages.po,58,330,402,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/formula/messages.po,429,501,670,0,0,1,1,430,502,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/fpicker/messages.po,61,163,172,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/framework/messages.po,29,210,244,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/librelogo/source/pythonpath.po,138,173,183,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,27,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/nlpsolver/src/locale.po,41,105,137,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/officecfg/registry/data/org/openoffice.po,9,28,30,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/officecfg/registry/data/org/openoffice/office.po,1304,1835,1972,0,0,4,6,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/readlicense_oo/docs.po,102,2343,2588,0,0,1,60,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,25,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/reportdesign/messages.po,258,617,762,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/sc/messages.po,4479,19775,21094,0,0,207,485,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/scaddins/messages.po,901,3188,3853,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/sccomp/messages.po,14,65,84,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/scp2/source/activex.po,2,16,21,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/scp2/source/base.po,10,44,48,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/scp2/source/calc.po,22,94,128,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/scp2/source/draw.po,41,149,155,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/scp2/source/extensions.po,16,65,77,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/scp2/source/gnome.po,2,11,12,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/scp2/source/graphicfilter.po,30,101,115,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/scp2/source/impress.po,21,81,85,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/scp2/source/math.po,10,42,44,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/scp2/source/onlineupdate.po,2,13,13,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/scp2/source/python.po,2,7,8,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/scp2/source/quickstart.po,2,15,19,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/scp2/source/winexplorerext.po,2,18,26,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/scp2/source/writer.po,27,114,130,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/sd/messages.po,1188,2801,3130,0,0,131,150,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/sfx2/messages.po,555,1948,2176,0,0,26,278,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/starmath/messages.po,505,968,1026,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/svtools/messages.po,870,2483,2769,0,0,44,128,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/svx/messages.po,2801,7122,8009,0,0,45,102,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/sw/messages.po,3238,7422,8643,0,0,202,317,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/swext/mediawiki/help.po,75,1191,1419,0,0,14,213,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,182,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/sysui/desktop/share.po,66,277,338,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/uui/messages.po,149,1344,1651,0,0,8,210,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/vcl/messages.po,273,534,598,0,0,83,203,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/wizards/messages.po,265,1042,1283,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/wizards/source/resources.po,554,2286,2654,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/writerperfect/messages.po,30,65,70,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/xmlsecurity/messages.po,91,424,541,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/accessibility/messages.po,11,27,38,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/avmedia/messages.po,20,40,57,0,0,2,5,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/basctl/messages.po,129,528,713,18,31,8,52,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/basic/messages.po,17,49,62,118,500,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/chart2/messages.po,261,555,759,162,278,197,535,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/connectivity/messages.po,102,990,1125,0,0,4,57,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,8,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,6,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/cui/messages.po,1019,2296,3258,642,1179,682,2083,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dbaccess/messages.po,453,2751,3541,236,1247,123,512,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/desktop/messages.po,101,520,734,28,168,33,537,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/en/dialog.po,37,176,227,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,9,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/hu_hu/dialog.po,32,71,114,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,9,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/pt_br/dialog.po,1,2,4,0,0,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,1,2,4,0,0,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/ru_ru/dialog.po,13,25,37,0,0,1,1,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,10,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/editeng/messages.po,248,608,811,5,8,12,40,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/extensions/messages.po,418,1082,1543,205,791,40,226,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/extensions/source/update/check/org/openoffice/office.po,0,0,0,1,3,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/extras/source/autocorr/emoji.po,43,43,70,202,191,1330,1583,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/extras/source/gallery/share.po,6,8,11,2,2,4,5,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/filter/messages.po,73,266,315,31,68,118,484,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/filter/source/config/fragments/filters.po,87,303,432,16,50,117,379,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/filter/source/config/fragments/internalgraphicfilters.po,35,127,197,0,0,3,12,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/filter/source/config/fragments/types.po,21,66,76,3,13,14,42,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/forms/messages.po,54,314,383,1,2,3,14,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/formula/messages.po,312,315,325,56,82,64,111,432,508,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/fpicker/messages.po,31,88,124,17,40,13,35,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/framework/messages.po,18,167,238,6,14,5,29,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/auxiliary.po,22,30,59,0,0,83,272,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/sbasic/guide.po,83,1116,1491,0,0,20,229,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/sbasic/shared.po,3486,28994,37082,0,0,1019,6437,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/scalc.po,172,861,1189,0,0,15,125,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/scalc/guide.po,1310,18357,23414,0,0,159,3236,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/schart.po,84,705,964,0,0,12,226,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/sdraw.po,117,702,960,0,0,6,30,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/sdraw/guide.po,258,2764,3663,0,0,17,308,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/shared.po,206,1766,2220,0,0,44,542,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/shared/autokorr.po,47,403,643,0,0,1,17,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/shared/autopi.po,742,6477,8629,0,0,145,1917,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/shared/explorer/database.po,1442,14082,19187,0,0,199,4775,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/shared/guide.po,170,1048,1285,0,0,2346,35395,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/shared/optionen.po,1226,10919,14979,0,0,708,12432,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/simpress.po,181,1264,1660,0,0,18,131,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/simpress/guide.po,590,7567,9813,0,0,177,2715,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/smath.po,56,609,776,0,0,4,130,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/smath/guide.po,94,1001,1291,0,0,10,192,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/swriter.po,214,1268,1737,0,0,122,1678,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/swriter/guide.po,1869,22817,28625,0,0,275,5120,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/swriter/librelogo.po,39,40,56,1,1,286,2978,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/helpcontent2/source/text/swriter/menu.po,0,0,0,0,0,17,96,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/librelogo/source/pythonpath.po,56,60,85,5,5,77,108,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,23,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/nlpsolver/src/locale.po,41,105,143,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/officecfg/registry/data/org/openoffice/office.po,1195,1283,2472,3,6,110,552,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/readlicense_oo/docs.po,63,1197,1333,1,85,39,1121,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/reportdesign/messages.po,186,445,578,58,134,14,38,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/sc/messages.po,2617,12183,14719,848,2659,1221,5418,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/scaddins/messages.po,778,2520,3032,12,16,108,649,898,3185,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/sccomp/messages.po,11,47,65,1,4,2,14,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/scp2/source/base.po,10,44,64,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/scp2/source/calc.po,19,81,104,1,4,2,9,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/scp2/source/draw.po,15,60,74,1,5,25,84,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/scp2/source/extensions.po,15,51,84,0,0,1,14,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/scp2/source/gnome.po,1,2,3,0,0,1,9,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/scp2/source/graphicfilter.po,28,91,134,0,0,2,10,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/scp2/source/impress.po,19,74,93,1,4,1,3,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/scp2/source/math.po,10,42,53,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/scp2/source/onlineupdate.po,2,13,18,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/scp2/source/quickstart.po,2,15,23,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/scp2/source/winexplorerext.po,2,18,28,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/scp2/source/writer.po,22,69,90,0,0,5,45,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/scp2/source/xsltfilter.po,2,6,8,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/sd/messages.po,492,1216,1708,331,579,496,1156,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/sfx2/messages.po,235,681,958,143,438,203,1107,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/starmath/messages.po,270,492,673,91,131,111,312,472,935,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/svl/messages.po,1,1,3,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/svtools/messages.po,658,1679,2243,51,168,205,764,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/svx/messages.po,1612,3680,5322,507,1195,727,2349,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/sw/messages.po,1662,2997,4514,868,1721,911,3022,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/swext/mediawiki/help.po,47,353,443,24,724,18,327,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,208,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/sysui/desktop/share.po,54,210,295,2,20,10,47,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/uui/messages.po,96,934,1164,22,166,39,454,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/vcl/messages.po,191,321,431,24,66,141,350,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/wizards/messages.po,235,992,1268,6,6,24,44,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/wizards/source/resources.po,468,1890,2345,38,234,48,162,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/writerperfect/messages.po,2,3,4,4,8,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/xmlsecurity/messages.po,21,40,56,23,128,47,256,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/accessibility/messages.po,5,9,9,0,0,6,18,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/avmedia/messages.po,17,27,23,0,0,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/basctl/messages.po,75,243,220,33,49,47,319,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/basic/messages.po,8,14,14,9,31,118,504,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/chart2/messages.po,110,158,181,198,337,312,873,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/connectivity/messages.po,0,0,0,8,56,98,991,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/connectivity/registry/calc/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,1,1,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/cui/messages.po,462,929,947,772,1225,1109,3404,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dbaccess/messages.po,307,1613,1282,213,639,292,2258,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/desktop/messages.po,40,160,140,15,31,107,1034,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/en/dialog.po,1,1,1,2,3,34,172,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/hu_hu/dialog.po,2,2,2,4,5,26,64,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/pt_br/dialog.po,0,0,0,1,2,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/ru_ru/dialog.po,2,2,2,0,0,12,24,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/editeng/messages.po,198,459,510,49,141,18,56,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/extensions/messages.po,321,657,714,185,479,157,963,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/extras/source/autocorr/emoji.po,41,37,39,164,155,1370,1625,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/extras/source/gallery/share.po,6,8,8,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/filter/messages.po,41,160,137,33,63,148,595,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/filter/source/config/fragments/filters.po,20,58,59,10,25,190,649,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/filter/source/config/fragments/types.po,3,10,11,4,16,31,95,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/forms/messages.po,50,278,208,1,2,7,50,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/formula/messages.po,282,285,285,70,95,86,134,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/fpicker/messages.po,25,39,47,18,52,18,72,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/framework/messages.po,8,14,16,7,15,14,181,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/librelogo/source/pythonpath.po,13,13,13,42,42,83,118,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/nlpsolver/src/locale.po,7,7,7,6,7,28,91,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/officecfg/registry/data/org/openoffice/office.po,536,625,1078,294,288,478,928,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/readlicense_oo/docs.po,7,41,43,1,1,95,2361,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/reportdesign/messages.po,68,87,97,68,116,122,414,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/sc/messages.po,1289,6997,5291,1377,3589,2020,9674,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/scaddins/messages.po,260,1345,1075,192,434,449,1409,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/sccomp/messages.po,0,0,0,0,0,14,65,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/scp2/source/activex.po,1,2,2,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/scp2/source/base.po,8,40,39,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/scp2/source/calc.po,13,41,43,4,33,5,20,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/scp2/source/draw.po,11,45,41,1,5,29,99,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/scp2/source/graphicfilter.po,24,77,106,2,6,4,18,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/scp2/source/impress.po,15,59,55,2,8,4,14,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/scp2/source/math.po,9,39,36,0,0,1,3,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/scp2/source/quickstart.po,2,15,12,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/scp2/source/winexplorerext.po,2,18,17,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/scp2/source/writer.po,14,37,36,2,7,11,70,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/scp2/source/xsltfilter.po,0,0,0,0,0,2,6,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/sd/messages.po,323,792,784,353,603,643,1556,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/sfx2/messages.po,154,295,289,128,263,299,1668,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/starmath/messages.po,260,460,577,109,155,131,348,500,963,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/svtools/messages.po,392,854,899,99,203,423,1554,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/svx/messages.po,1161,2440,2726,600,1128,1085,3656,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/sw/messages.po,941,1630,1941,1255,2064,1245,4046,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/swext/mediawiki/help.po,7,7,8,3,5,79,1392,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,9,10,11,5,5,18,166,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/sysui/desktop/share.po,31,119,125,13,64,22,94,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/uui/messages.po,12,87,67,26,87,119,1380,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/vcl/messages.po,102,131,123,70,112,184,494,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/wizards/messages.po,136,717,596,48,81,81,244,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/wizards/source/resources.po,395,1736,1471,80,193,79,357,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/writerperfect/messages.po,1,1,1,5,10,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/xmlsecurity/messages.po,18,26,28,13,50,60,348,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/accessibility/messages.po,11,27,15,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/avmedia/messages.po,22,45,22,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/basctl/messages.po,155,611,195,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/basic/messages.po,135,549,185,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/chart2/messages.po,620,1368,749,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/connectivity/messages.po,106,1047,212,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,3,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/cui/messages.po,2343,5558,2713,0,0,0,0,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dbaccess/messages.po,812,4510,1253,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/desktop/messages.po,162,1225,281,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/en/dialog.po,37,176,60,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,2,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/hu_hu/dialog.po,32,71,32,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,2,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/pt_br/dialog.po,2,5,3,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/ru_ru/dialog.po,14,26,15,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/editeng/messages.po,265,656,320,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/extensions/messages.po,663,2099,803,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/extensions/source/update/check/org/openoffice/office.po,1,3,1,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/extras/source/autocorr/emoji.po,1575,1817,1821,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/extras/source/gallery/share.po,12,15,12,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/filter/messages.po,222,818,378,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/filter/source/config/fragments/filters.po,220,732,630,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/filter/source/config/fragments/internalgraphicfilters.po,38,139,109,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/filter/source/config/fragments/types.po,38,121,115,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/forms/messages.po,58,330,74,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/formula/messages.po,438,514,510,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/fpicker/messages.po,61,163,74,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/framework/messages.po,29,210,39,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/auxiliary.po,105,302,129,0,0,0,0,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/sbasic/guide.po,103,1345,250,0,0,0,0,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/sbasic/shared.po,4505,35431,11158,0,0,0,0,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/scalc.po,187,986,239,0,0,0,0,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/scalc/guide.po,1469,21593,3430,0,0,0,0,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/schart.po,96,931,145,0,0,0,0,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/sdraw.po,123,732,184,0,0,0,0,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/sdraw/guide.po,275,3072,427,0,0,0,0,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/shared.po,250,2308,405,0,0,0,0,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/shared/autokorr.po,48,420,55,0,0,0,0,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/shared/autopi.po,887,8394,1526,0,0,0,0,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/shared/explorer/database.po,1641,18857,3199,0,0,0,0,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/shared/guide.po,2516,36443,6557,0,0,0,0,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/shared/help.po,78,117,90,0,0,0,0,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/shared/menu.po,16,120,18,0,0,0,0,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/shared/optionen.po,1934,23351,4428,0,0,0,0,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/simpress.po,199,1395,257,0,0,0,0,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/simpress/guide.po,767,10282,1488,0,0,0,0,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/smath.po,60,739,126,0,0,0,0,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/smath/guide.po,104,1193,297,0,0,0,0,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/swriter.po,336,2946,520,0,0,0,0,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/swriter/guide.po,2144,27937,3960,0,0,0,0,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/swriter/librelogo.po,326,3019,1817,0,0,0,0,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/helpcontent2/source/text/swriter/menu.po,17,96,17,0,0,0,0,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/librelogo/source/pythonpath.po,138,173,149,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,4,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/nlpsolver/src/locale.po,41,105,60,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/officecfg/registry/data/org/openoffice.po,9,28,18,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/officecfg/registry/data/org/openoffice/office.po,1308,1841,1605,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/readlicense_oo/docs.po,103,2403,548,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,6,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/reportdesign/messages.po,258,617,282,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/sc/messages.po,4686,20260,6195,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/scaddins/messages.po,901,3188,1151,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/sccomp/messages.po,14,65,24,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/scp2/source/activex.po,2,16,9,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/scp2/source/base.po,10,44,26,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/scp2/source/calc.po,22,94,63,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/scp2/source/draw.po,41,149,127,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/scp2/source/extensions.po,16,65,27,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/scp2/source/gnome.po,2,11,8,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/scp2/source/graphicfilter.po,30,101,73,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/scp2/source/impress.po,21,81,58,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/scp2/source/math.po,10,42,26,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/scp2/source/onlineupdate.po,2,13,4,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/scp2/source/python.po,2,7,7,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/scp2/source/quickstart.po,2,15,5,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/scp2/source/winexplorerext.po,2,18,8,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/scp2/source/writer.po,27,114,71,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/scp2/source/xsltfilter.po,2,6,4,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/sd/messages.po,1319,2951,1455,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/sfx2/messages.po,581,2226,777,0,0,0,0,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/starmath/messages.po,505,968,592,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/svtools/messages.po,914,2611,1728,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/svx/messages.po,2846,7224,3731,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/sw/messages.po,3441,7740,4106,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/swext/mediawiki/help.po,89,1404,259,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,65,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/sysui/desktop/share.po,66,277,176,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/uui/messages.po,157,1554,349,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/vcl/messages.po,356,737,433,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/wizards/messages.po,265,1042,291,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/wizards/source/resources.po,554,2286,685,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/writerperfect/messages.po,30,65,56,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/xmlsecurity/messages.po,91,424,128,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/accessibility/messages.po,11,27,15,0,0,0,0,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/avmedia/messages.po,22,45,22,0,0,0,0,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/basctl/messages.po,155,611,192,0,0,0,0,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/basic/messages.po,135,549,199,0,0,0,0,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/chart2/messages.po,620,1368,771,0,0,0,0,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/connectivity/messages.po,106,1047,155,0,0,0,0,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/connectivity/registry/ado/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,3,5,5,0,0,0,0,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,2,4,4,0,0,0,0,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,2,3,3,0,0,0,0,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/connectivity/registry/macab/org/openoffice/office/dataaccess.po,1,5,4,0,0,0,0,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/connectivity/registry/mork/org/openoffice/office/dataaccess.po,1,3,2,0,0,0,0,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,3,6,6,0,0,0,0,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/connectivity/registry/writer/org/openoffice/office/dataaccess.po,1,2,2,0,0,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/cui/messages.po,2342,5554,2656,0,0,1,4,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dbaccess/messages.po,812,4510,1189,0,0,0,0,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/desktop/messages.po,162,1225,292,0,0,0,0,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/en/dialog.po,37,176,59,0,0,0,0,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/en/dialog/registry/data/org/openoffice/office.po,2,5,2,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/hu_hu/dialog.po,32,71,32,0,0,0,0,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,2,5,2,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/pt_br/dialog.po,2,5,3,0,0,0,0,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/ru_ru/dialog.po,14,26,15,0,0,0,0,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,2,5,3,0,0,0,0,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/editeng/messages.po,265,656,313,0,0,0,0,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/extensions/messages.po,663,2099,793,0,0,0,0,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/extensions/source/update/check/org/openoffice/office.po,1,3,1,0,0,0,0,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/extras/source/autocorr/emoji.po,1575,1817,1558,0,0,0,0,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/extras/source/gallery/share.po,12,15,12,0,0,0,0,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/filter/messages.po,222,818,349,0,0,0,0,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/filter/source/config/fragments/filters.po,220,732,607,0,0,0,0,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/filter/source/config/fragments/internalgraphicfilters.po,38,139,103,0,0,0,0,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/filter/source/config/fragments/types.po,38,121,114,0,0,0,0,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/forms/messages.po,58,330,75,0,0,0,0,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/formula/messages.po,438,514,508,0,0,0,0,438,514,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/fpicker/messages.po,61,163,71,0,0,0,0,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/framework/messages.po,29,210,39,0,0,0,0,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/auxiliary.po,93,268,103,0,0,12,34,105,302,auxiliary.po,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/sbasic/guide.po,90,1191,255,0,0,13,154,103,1345,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/sbasic/shared.po,3531,29394,9244,1,2,973,6035,4505,35431,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/scalc.po,181,956,259,0,0,6,30,187,986,scalc.po,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/scalc/guide.po,1305,18082,3673,0,0,164,3511,1469,21593,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/schart.po,88,796,141,0,0,8,135,96,931,schart.po,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/sdraw.po,120,718,179,0,0,3,14,123,732,sdraw.po,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/sdraw/guide.po,261,2793,533,0,0,14,279,275,3072,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared.po,219,1966,386,0,0,31,342,250,2308,shared.po,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/autokorr.po,47,403,81,0,0,1,17,48,420,autokorr.po,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/autopi.po,741,6458,1403,0,0,146,1936,887,8394,autopi.po,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/explorer/database.po,1445,14199,3038,0,0,196,4658,1641,18857,database.po,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/guide.po,2045,28172,5724,0,0,471,8271,2516,36443,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/help.po,0,0,0,0,0,78,117,78,117,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/menu.po,0,0,0,0,0,16,120,16,120,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/optionen.po,1232,11226,2639,0,0,702,12125,1934,23351,optionen.po,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/simpress.po,187,1324,272,0,0,12,71,199,1395,simpress.po,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/simpress/guide.po,604,7948,1491,0,0,163,2334,767,10282,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/smath.po,57,613,121,0,0,3,126,60,739,smath.po,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/smath/guide.po,95,1030,308,0,0,9,163,104,1193,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter.po,222,1453,323,0,0,114,1493,336,2946,swriter.po,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/guide.po,1889,23164,4698,0,0,255,4773,2144,27937,guide.po,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/librelogo.po,139,880,402,1,1,186,2138,326,3019,librelogo.po,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/menu.po,6,13,6,0,0,11,83,17,96,menu.po,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/librelogo/source/pythonpath.po,138,173,148,0,0,0,0,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,2,21,4,0,0,0,0,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/nlpsolver/src/locale.po,41,105,54,0,0,0,0,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/officecfg/registry/data/org/openoffice.po,9,28,9,0,0,0,0,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/officecfg/registry/data/org/openoffice/office.po,1308,1841,1451,0,0,0,0,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/readlicense_oo/docs.po,103,2403,530,0,0,0,0,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/reportbuilder/java/org/libreoffice/report/function/metadata.po,6,20,6,0,0,0,0,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/reportdesign/messages.po,258,617,280,0,0,0,0,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/sc/messages.po,4686,20260,6279,0,0,0,0,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/scaddins/messages.po,901,3188,1116,0,0,0,0,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/sccomp/messages.po,14,65,26,0,0,0,0,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/scp2/source/activex.po,2,16,9,0,0,0,0,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/scp2/source/base.po,10,44,26,0,0,0,0,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/scp2/source/calc.po,22,94,62,0,0,0,0,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/scp2/source/draw.po,41,149,90,0,0,0,0,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/scp2/source/extensions.po,16,65,26,0,0,0,0,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/scp2/source/gnome.po,2,11,7,0,0,0,0,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/scp2/source/graphicfilter.po,30,101,69,0,0,0,0,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/scp2/source/impress.po,21,81,55,0,0,0,0,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/scp2/source/math.po,10,42,26,0,0,0,0,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/scp2/source/onlineupdate.po,2,13,4,0,0,0,0,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/scp2/source/python.po,2,7,6,0,0,0,0,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/scp2/source/quickstart.po,2,15,5,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/scp2/source/winexplorerext.po,2,18,7,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/scp2/source/writer.po,27,114,72,0,0,0,0,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/scp2/source/xsltfilter.po,2,6,4,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/sd/messages.po,1319,2951,1459,0,0,0,0,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/sfx2/messages.po,580,2116,735,0,0,1,110,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/starmath/messages.po,505,968,545,0,0,0,0,505,968,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/svl/messages.po,1,1,1,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/svtools/messages.po,914,2611,1519,0,0,0,0,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/svx/messages.po,2846,7224,3597,0,0,0,0,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/sw/messages.po,3441,7740,4011,0,0,0,0,3441,7740,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/swext/mediawiki/help.po,89,1404,320,0,0,0,0,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/swext/mediawiki/src/registry/data/org/openoffice/office.po,2,3,3,0,0,0,0,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,32,181,56,0,0,0,0,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/sysui/desktop/share.po,66,277,172,0,0,0,0,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/uui/messages.po,157,1554,330,0,0,0,0,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/vcl/messages.po,356,737,430,0,0,0,0,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/wizards/messages.po,265,1042,279,0,0,0,0,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/wizards/source/resources.po,554,2286,638,0,0,0,0,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/writerperfect/messages.po,30,65,56,0,0,0,0,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/xmlsecurity/messages.po,91,424,129,0,0,0,0,91,424,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/accessibility/messages.po,6,11,11,1,2,4,14,11,27,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/avmedia/messages.po,15,24,20,2,3,5,18,22,45,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/basctl/messages.po,96,338,271,32,44,27,229,155,611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/basic/messages.po,8,14,11,9,31,118,504,135,549,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/chart2/messages.po,152,233,244,181,317,287,818,620,1368,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/connectivity/messages.po,0,0,0,8,56,98,991,106,1047,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/connectivity/registry/ado/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/connectivity/registry/calc/org/openoffice/office/dataaccess.po,1,1,2,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/connectivity/registry/dbase/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/connectivity/registry/evoab2/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,5,3,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/connectivity/registry/firebird/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,4,2,4,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/connectivity/registry/flat/org/openoffice/office/dataaccess.po,1,1,1,0,0,0,0,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/connectivity/registry/hsqldb/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/connectivity/registry/jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,2,3,2,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/connectivity/registry/macab/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,5,1,5,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/connectivity/registry/mork/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,3,1,3,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/connectivity/registry/mysql_jdbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,3,6,3,6,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/connectivity/registry/mysqlc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,2,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/connectivity/registry/odbc/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/connectivity/registry/postgresql/org/openoffice/office/dataaccess.po,0,0,0,0,0,1,1,1,1,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/cui/messages.po,537,1052,1033,724,1187,1082,3319,2343,5558,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dbaccess/messages.po,317,1831,1313,217,656,278,2023,812,4510,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/desktop/messages.po,42,166,140,15,30,105,1029,162,1225,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/en/dialog.po,1,1,1,2,3,34,172,37,176,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/en/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/hu_hu/dialog.po,1,1,1,5,6,26,64,32,71,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/hu_hu/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/pt_br/dialog.po,0,0,0,1,2,1,3,2,5,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/pt_br/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/ru_ru/dialog.po,3,3,3,0,0,11,23,14,26,dialog.po,,dialog, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/ru_ru/dialog/registry/data/org/openoffice/office.po,0,0,0,1,2,1,3,2,5,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/editeng/messages.po,201,471,451,50,143,14,42,265,656,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/extensions/messages.po,333,705,710,180,486,150,908,663,2099,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/extensions/source/update/check/org/openoffice/office.po,0,0,0,0,0,1,3,1,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/extras/source/autocorr/emoji.po,42,38,38,170,161,1363,1618,1575,1817,emoji.po,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/extras/source/gallery/share.po,6,8,8,1,1,5,6,12,15,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/filter/messages.po,43,163,128,33,67,146,588,222,818,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/filter/source/config/fragments/filters.po,20,58,55,9,24,191,650,220,732,filters.po,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/filter/source/config/fragments/types.po,2,8,8,5,18,31,95,38,121,types.po,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/forms/messages.po,50,278,201,1,2,7,50,58,330,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/formula/messages.po,275,278,281,88,113,74,122,437,513,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/fpicker/messages.po,23,36,39,20,55,18,72,61,163,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/framework/messages.po,11,27,26,7,15,11,168,29,210,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/librelogo/source/pythonpath.po,13,13,13,44,44,81,116,138,173,pythonpath.po,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/nlpsolver/src/locale.po,8,8,8,7,8,26,89,41,105,locale.po,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/officecfg/registry/data/org/openoffice/office.po,728,817,1456,206,200,374,824,1308,1841,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/readlicense_oo/docs.po,7,41,40,1,1,95,2361,103,2403,docs.po,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/reportdesign/messages.po,77,98,110,62,110,119,409,258,617,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/sc/messages.po,1391,7256,4981,1376,3766,1919,9238,4686,20260,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scaddins/messages.po,265,1350,1076,187,429,449,1409,901,3188,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/sccomp/messages.po,1,3,3,1,4,12,58,14,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/base.po,8,40,44,0,0,2,4,10,44,base.po,,base, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/calc.po,13,41,44,4,33,5,20,22,94,calc.po,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/draw.po,11,45,45,1,5,29,99,41,149,draw.po,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/graphicfilter.po,24,77,105,2,6,4,18,30,101,graphicfilter.po,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/impress.po,15,59,62,2,8,4,14,21,81,impress.po,,impress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/math.po,9,39,41,0,0,1,3,10,42,math.po,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/quickstart.po,2,15,13,0,0,0,0,2,15,quickstart.po,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/winexplorerext.po,2,18,18,0,0,0,0,2,18,winexplorerext.po,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/writer.po,14,37,39,2,7,11,70,27,114,writer.po,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/sd/messages.po,424,1135,987,338,584,557,1232,1319,2951,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/sfx2/messages.po,186,545,460,146,445,249,1236,581,2226,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/starmath/messages.po,262,463,487,110,156,130,346,502,965,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/svl/messages.po,1,1,2,0,0,0,0,1,1,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/svtools/messages.po,557,1127,1114,74,181,283,1303,914,2611,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/svx/messages.po,1282,2787,2778,595,1200,969,3237,2846,7224,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/sw/messages.po,1142,1948,2121,1172,2185,1126,3606,3440,7739,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/swext/mediawiki/help.po,7,7,8,3,5,79,1392,89,1404,help.po,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,10,11,13,4,4,18,166,32,181,custom.po,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/sysui/desktop/share.po,33,121,120,12,64,21,92,66,277,share.po,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/uui/messages.po,13,91,63,31,107,113,1356,157,1554,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/vcl/messages.po,158,263,261,52,103,146,371,356,737,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/wizards/messages.po,144,725,565,41,74,80,243,265,1042,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/wizards/source/resources.po,420,1798,1407,56,132,78,356,554,2286,resources.po,,resources, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/writerperfect/messages.po,1,1,1,5,10,24,54,30,65,messages.po,,messages, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/xmlsecurity/messages.po,18,26,29,14,52,59,346,91,424,messages.po,,messages, +lvm2-2.02.183-3.fc30.src.rpm.stats.csv,po/lvm2.po,0,0,0,0,0,1556,9826,1556,9826,lvm2.po,,lvm2, +nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/ja/lc_messages/zenmap.mo,474,3393,1203,0,0,0,0,474,3393,zenmap.mo,,zenmap, +nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/ru/lc_messages/zenmap.mo,365,1860,1602,0,0,0,0,365,1860,zenmap.mo,,zenmap, +nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/it/lc_messages/zenmap.mo,481,3518,3743,0,0,0,0,481,3518,zenmap.mo,,zenmap, +nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/de/lc_messages/zenmap.mo,481,3518,3425,0,0,0,0,481,3518,zenmap.mo,,zenmap, +nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/pl/lc_messages/zenmap.mo,480,3521,3249,0,0,0,0,480,3521,zenmap.mo,,zenmap, +nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/hr/lc_messages/zenmap.mo,269,1053,1006,0,0,0,0,269,1053,zenmap.mo,,zenmap, +nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/fr/lc_messages/zenmap.mo,481,3518,4019,0,0,0,0,481,3518,zenmap.mo,,zenmap, +nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/zh/lc_messages/zenmap.mo,481,3523,642,0,0,0,0,481,3523,zenmap.mo,,zenmap, +nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/es/lc_messages/zenmap.mo,481,3518,3880,0,0,0,0,481,3518,zenmap.mo,,zenmap, +nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/hi/lc_messages/zenmap.mo,481,3518,3386,0,0,0,0,481,3518,zenmap.mo,,zenmap, +nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/pt_br/lc_messages/zenmap.mo,85,165,194,0,0,0,0,85,165,zenmap.mo,,zenmap, +python-humanize-0.5.1-16.fc30.src.rpm.stats.csv,humanize/locale/ru_ru/lc_messages/humanize.po,52,97,110,0,0,0,0,52,97,humanize.po,,humanize, +python-humanize-0.5.1-16.fc30.src.rpm.stats.csv,humanize/locale/ru_ru/lc_messages/humanize.mo,52,97,110,0,0,0,0,52,97,humanize.mo,,humanize, +python-humanize-0.5.1-16.fc30.src.rpm.stats.csv,humanize/locale/ko_kr/lc_messages/humanize.po,33,78,54,19,19,0,0,52,97,humanize.po,,humanize, +python-humanize-0.5.1-16.fc30.src.rpm.stats.csv,humanize/locale/ko_kr/lc_messages/humanize.mo,33,78,54,0,0,0,0,33,78,humanize.mo,,humanize, +python-humanize-0.5.1-16.fc30.src.rpm.stats.csv,humanize/locale/fr_fr/lc_messages/humanize.po,32,77,83,20,20,0,0,52,97,humanize.po,,humanize, +python-humanize-0.5.1-16.fc30.src.rpm.stats.csv,humanize/locale/fr_fr/lc_messages/humanize.mo,32,77,83,0,0,0,0,32,77,humanize.mo,,humanize, +qemu-3.1.0-6.fc30.src.rpm.stats.csv,po/messages.po,0,0,0,0,0,19,35,19,35,messages.po,,messages, +qt-4.8.7-47.fc30.src.rpm.stats.csv,demos/declarative/photoviewer/qml/photoviewer/i18n/base.ts,0,0,0,0,0,4,4,4,4,base.ts,,base, +qt-4.8.7-47.fc30.src.rpm.stats.csv,examples/declarative/i18n/qml/i18n/base.ts,0,0,0,0,0,1,1,1,1,base.ts,,base, +qt-4.8.7-47.fc30.src.rpm.stats.csv,examples/declarative/i18n/qml/i18n/qml_en_au.ts,1,1,1,0,0,0,0,1,1,qml_en_au.ts,,qml_en,au +qt5-qtdeclarative-5.12.1-1.fc30.src.rpm.stats.csv,examples/qml/qml-i18n/i18n/qml_en_au.ts,1,1,1,0,0,0,0,1,1,qml_en_au.ts,,qml_en,au +qt5-qtdeclarative-5.12.1-1.fc30.src.rpm.stats.csv,examples/qml/qml-i18n/i18n/base.ts,0,0,0,0,0,1,1,1,1,base.ts,,base, +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/lc_messages/options.mo,55,323,265,0,0,0,0,55,323,options.mo,,options, +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/lc_messages/options.mo,69,415,547,0,0,0,0,69,415,options.mo,,options, +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/lc_messages/options.mo,69,415,537,0,0,0,0,69,415,options.mo,,options, +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/lc_messages/options.mo,47,244,276,0,0,0,0,47,244,options.mo,,options, +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/lc_messages/options.mo,47,244,252,0,0,0,0,47,244,options.mo,,options, +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/lc_messages/options.mo,47,244,196,0,0,0,0,47,244,options.mo,,options, +xen-4.11.1-4.fc30.src.rpm.stats.csv,tools/qemu-xen/po/messages.po,0,0,0,0,0,18,33,18,33,messages.po,,messages, diff --git a/results/f30/0.error.len(region)>2.csv b/results/f30/0.error.len(region)>2.csv new file mode 100644 index 0000000..b7e9df9 --- /dev/null +++ b/results/f30/0.error.len(region)>2.csv @@ -0,0 +1,127 @@ +src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,script,language,region +iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/zh_hant.po,115,258,115,0,0,0,0,115,258,zh_hant.po,,zh,hant +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/instsetoo_native/inc_openoffice/windows/msi_languages.po,196,432,408,3,11,358,3911,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/instsetoo_native/inc_openoffice/windows/msi_languages.po,528,3988,4028,7,96,22,270,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4033,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/instsetoo_native/inc_openoffice/windows/msi_languages.po,30,30,30,5,5,522,4319,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/instsetoo_native/inc_openoffice/windows/msi_languages.po,550,4294,3698,0,0,7,60,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,4542,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,4196,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/instsetoo_native/inc_openoffice/windows/msi_languages.po,7,23,25,35,41,515,4290,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po,550,4294,3888,0,0,7,60,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4461,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/instsetoo_native/inc_openoffice/windows/msi_languages.po,544,4201,4369,4,62,9,91,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/instsetoo_native/inc_openoffice/windows/msi_languages.po,531,4040,4191,8,98,18,216,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/instsetoo_native/inc_openoffice/windows/msi_languages.po,16,30,30,96,114,445,4210,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/instsetoo_native/inc_openoffice/windows/msi_languages.po,544,4201,4785,5,78,8,75,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/instsetoo_native/inc_openoffice/windows/msi_languages.po,529,4026,3991,7,96,21,232,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,3911,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,4745,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,5015,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3784,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4528,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3946,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4451,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/instsetoo_native/inc_openoffice/windows/msi_languages.po,529,4034,5195,8,98,18,216,555,4348,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4363,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/instsetoo_native/inc_openoffice/windows/msi_languages.po,521,4009,1599,14,120,20,219,555,4348,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4571,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4352,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/instsetoo_native/inc_openoffice/windows/msi_languages.po,531,4040,4040,8,98,18,216,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4284,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4930,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3400,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3496,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/instsetoo_native/inc_openoffice/windows/msi_languages.po,103,326,397,74,155,380,3873,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/instsetoo_native/inc_openoffice/windows/msi_languages.po,555,4334,3293,0,0,2,20,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4767,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4839,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4909,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,5715,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4767,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,4722,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,4105,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po,547,4227,3704,3,67,7,60,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,5110,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po,556,4339,3926,0,0,1,15,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4333,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4069,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4078,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4513,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4917,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,1232,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/instsetoo_native/inc_openoffice/windows/msi_languages.po,31,31,31,5,5,521,4318,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/instsetoo_native/inc_openoffice/windows/msi_languages.po,96,110,114,8,14,451,4224,555,4348,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/instsetoo_native/inc_openoffice/windows/msi_languages.po,556,4351,4364,0,0,0,0,556,4351,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3609,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/instsetoo_native/inc_openoffice/windows/msi_languages.po,8,8,8,27,31,522,4315,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,2186,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/instsetoo_native/inc_openoffice/windows/msi_languages.po,526,4025,4712,10,105,19,218,555,4348,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,3572,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3535,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/instsetoo_native/inc_openoffice/windows/msi_languages.po,528,4023,3933,8,98,20,230,556,4351,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/instsetoo_native/inc_openoffice/windows/msi_languages.po,522,3954,4824,7,96,24,292,553,4342,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/instsetoo_native/inc_openoffice/windows/msi_languages.po,2,2,2,0,0,555,4352,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/instsetoo_native/inc_openoffice/windows/msi_languages.po,44,58,58,58,66,455,4230,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/instsetoo_native/inc_openoffice/windows/msi_languages.po,555,4334,1399,0,0,2,20,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/instsetoo_native/inc_openoffice/windows/msi_languages.po,556,4339,3550,0,0,1,15,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3664,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/instsetoo_native/inc_openoffice/windows/msi_languages.po,527,4018,4442,9,104,21,232,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/instsetoo_native/inc_openoffice/windows/msi_languages.po,531,4040,4218,7,96,19,218,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/instsetoo_native/inc_openoffice/windows/msi_languages.po,536,4136,3255,5,78,12,128,553,4342,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/instsetoo_native/inc_openoffice/windows/msi_languages.po,529,4036,3733,9,100,19,218,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/instsetoo_native/inc_openoffice/windows/msi_languages.po,529,4034,3849,8,98,18,216,555,4348,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/instsetoo_native/inc_openoffice/windows/msi_languages.po,539,4145,4388,5,78,12,128,556,4351,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/instsetoo_native/inc_openoffice/windows/msi_languages.po,532,4057,2345,5,78,20,219,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4003,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/instsetoo_native/inc_openoffice/windows/msi_languages.po,532,4018,4030,5,78,20,258,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4560,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4001,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/instsetoo_native/inc_openoffice/windows/msi_languages.po,374,3385,2573,90,232,93,737,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/instsetoo_native/inc_openoffice/windows/msi_languages.po,528,3988,5330,7,96,22,270,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/instsetoo_native/inc_openoffice/windows/msi_languages.po,548,4214,4637,4,74,5,66,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/instsetoo_native/inc_openoffice/windows/msi_languages.po,538,4102,3637,6,104,13,148,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,3743,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/instsetoo_native/inc_openoffice/windows/msi_languages.po,541,4153,4688,5,78,11,123,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3934,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4780,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4650,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/instsetoo_native/inc_openoffice/windows/msi_languages.po,544,4201,4257,5,78,8,75,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3616,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/instsetoo_native/inc_openoffice/windows/msi_languages.po,530,4038,3570,7,96,20,220,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/instsetoo_native/inc_openoffice/windows/msi_languages.po,531,4040,3043,8,98,18,216,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/instsetoo_native/inc_openoffice/windows/msi_languages.po,0,0,0,0,0,557,4354,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/instsetoo_native/inc_openoffice/windows/msi_languages.po,531,4040,9141,8,98,18,216,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/instsetoo_native/inc_openoffice/windows/msi_languages.po,529,4034,4565,8,98,18,216,555,4348,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/instsetoo_native/inc_openoffice/windows/msi_languages.po,533,4058,4051,5,78,19,218,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,3138,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4027,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4067,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/instsetoo_native/inc_openoffice/windows/msi_languages.po,520,3956,4475,7,119,29,276,556,4351,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/instsetoo_native/inc_openoffice/windows/msi_languages.po,434,3859,3452,117,398,6,81,557,4338,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/instsetoo_native/inc_openoffice/windows/msi_languages.po,434,3859,3452,117,398,6,81,557,4338,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/instsetoo_native/inc_openoffice/windows/msi_languages.po,368,3379,2605,96,238,93,737,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/instsetoo_native/inc_openoffice/windows/msi_languages.po,374,3385,4517,90,232,93,737,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4136,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/instsetoo_native/inc_openoffice/windows/msi_languages.po,529,4019,3989,7,96,21,239,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/instsetoo_native/inc_openoffice/windows/msi_languages.po,0,0,0,0,0,557,4354,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/instsetoo_native/inc_openoffice/windows/msi_languages.po,541,4153,3281,5,78,11,123,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,3316,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/instsetoo_native/inc_openoffice/windows/msi_languages.po,530,4038,4019,7,96,20,220,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,1272,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/instsetoo_native/inc_openoffice/windows/msi_languages.po,1,1,1,1,1,555,4352,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/instsetoo_native/inc_openoffice/windows/msi_languages.po,45,59,68,57,68,455,4227,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3672,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/instsetoo_native/inc_openoffice/windows/msi_languages.po,374,3385,4248,90,232,93,737,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/instsetoo_native/inc_openoffice/windows/msi_languages.po,38,39,39,50,55,469,4260,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/instsetoo_native/inc_openoffice/windows/msi_languages.po,541,4153,3466,5,78,11,123,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3629,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/instsetoo_native/inc_openoffice/windows/msi_languages.po,10,23,29,0,0,547,4331,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/instsetoo_native/inc_openoffice/windows/msi_languages.po,433,2531,2102,4,43,120,1780,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/instsetoo_native/inc_openoffice/windows/msi_languages.po,374,3385,4465,90,232,93,737,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/instsetoo_native/inc_openoffice/windows/msi_languages.po,556,4339,5242,0,0,1,15,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/instsetoo_native/inc_openoffice/windows/msi_languages.po,538,4102,5731,5,78,14,174,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/instsetoo_native/inc_openoffice/windows/msi_languages.po,374,3385,2852,90,232,93,737,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,1161,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,1087,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/instsetoo_native/inc_openoffice/windows/msi_languages.po,376,3387,2951,90,232,91,735,557,4354,msi_languages.po,,msi,languages diff --git a/results/f30/1.debug.lang.csv b/results/f30/1.debug.lang.csv new file mode 100644 index 0000000..4628dfd --- /dev/null +++ b/results/f30/1.debug.lang.csv @@ -0,0 +1,330 @@ +src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,full_lang,lang,script,language,region +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,en_nz,,en,nz +boost-1.69.0-6.fc30.src.rpm.stats.csv,tools/build/example/gettext/russian.po,1,1,2,0,0,0,0,1,1,russian.po,russian,russian,,russian, +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,ts,,ts, +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,,nhn, +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,szl,,szl, +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,az_ir,,az,ir +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,guc,,guc, +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,,son, +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,pi,,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,pap,,pap, +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,nv,,nv, +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,,nah, +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,na,,na, +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,,mo, +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,kv,,kv, +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,kl,,kl, +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,ki,,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,kab,,kab, +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,jam,,jam, +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,iu,,iu, +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,gn,,gn, +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,ff,,ff, +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,ee,,ee, +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,dv,,dv, +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,cv,,cv, +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,ckb,,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,chr,,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,ch,,ch, +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,bi,,bi, +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,bar,,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,ba,,ba, +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,ay,,ay, +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,ak,,ak, +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,ace,,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,ab,,ab, +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,wal,,wal, +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,sw,,sw, +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,so,,so, +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,haw,,haw, +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,ve,,ve, +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,tt,,tt, +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,tig,,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,ti,,ti, +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,mt,,mt, +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,kok,,kok, +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,gez,,gez, +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,byn,,byn, +iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/zh_hant.po,115,258,115,0,0,0,0,115,258,zh_hant.po,zh_hant,zh_hant,,zh,hant +iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/sc.po,115,258,269,0,0,0,0,115,258,sc.po,sc,sc,,sc, +kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/gr.po,162,1063,1170,72,714,41,653,275,2430,gr.po,gr,gr,,gr, +kdump-anaconda-addon-005-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,ta_in,,ta,in +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,en_au,,en,au +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,es_ve,,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,es_uy,,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,es_sv,,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,es_pr,,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,es_pe,,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,es_pa,,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,es_ni,,es,ni +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,es_hn,,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,es_gt,,es,gt +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,es_ec,,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,es_do,,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,es_cr,,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,es_co,,es,co +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/auxiliary.po,93,268,103,0,0,12,34,105,302,auxiliary.po,auxiliary,auxiliary,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,03,03,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/scalc.po,181,956,259,0,0,6,30,187,986,scalc.po,scalc,scalc,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/schart.po,88,796,141,0,0,8,135,96,931,schart.po,schart,schart,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/sdraw.po,120,718,179,0,0,3,14,123,732,sdraw.po,sdraw,sdraw,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared.po,219,1966,386,0,0,31,342,250,2308,shared.po,shared,shared,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/05.po,107,1112,174,0,0,89,1228,196,2340,05.po,05,05,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/07.po,4,29,9,0,0,3,53,7,82,07.po,07,07,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/autokorr.po,47,403,81,0,0,1,17,48,420,autokorr.po,autokorr,autokorr,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/autopi.po,741,6458,1403,0,0,146,1936,887,8394,autopi.po,autopi,autopi,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/explorer/database.po,1445,14199,3038,0,0,196,4658,1641,18857,database.po,database,database,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/optionen.po,1232,11226,2639,0,0,702,12125,1934,23351,optionen.po,optionen,optionen,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/simpress.po,187,1324,272,0,0,12,71,199,1395,simpress.po,simpress,simpress,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/smath.po,57,613,121,0,0,3,126,60,739,smath.po,smath,smath,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,06,06,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter.po,222,1453,323,0,0,114,1493,336,2946,swriter.po,swriter,swriter,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/00.po,214,1080,558,0,0,96,738,310,1818,00.po,00,00,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/01.po,2669,24832,4110,0,0,677,8961,3346,33793,01.po,01,01,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/02.po,370,2480,616,0,0,56,570,426,3050,02.po,02,02,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/04.po,247,1206,323,0,0,7,70,254,1276,04.po,04,04,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/guide.po,1889,23164,4698,0,0,255,4773,2144,27937,guide.po,guide,guide,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/librelogo.po,139,880,402,1,1,186,2138,326,3019,librelogo.po,librelogo,librelogo,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/menu.po,6,13,6,0,0,11,83,17,96,menu.po,menu,menu,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,dataaccess,dataaccess,,dataaccess, +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,af_za,,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,an_es,,an,es +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,be_by,,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,bg_bg,,bg,bg +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,br_fr,,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,bs_ba,,bs,ba +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,cs_cz,,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,da_dk,,da,dk +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,el_gr,,el,gr +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,gd_gb,,gd,gb +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,gu_in,,gu,in +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/gug.po,0,0,0,0,0,1,5,1,5,gug.po,gug,gug,,gug, +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,he_il,,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,hi_in,,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,hr_hr,,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,hu_hu,,hu,hu +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,it_it,,it,it +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/kmr_latn.po,0,0,0,0,0,1,4,1,4,kmr_latn.po,kmr@latn,kmr,latn,kmr, +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,lo_la,,lo,la +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,ne_np,,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,nl_nl,,nl,nl +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,oc_fr,,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,pl_pl,,pl,pl +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,pt_pt,,pt,pt +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/ru_ru/dialog.po,3,3,3,0,0,11,23,14,26,dialog.po,dialog,dialog,,dialog, +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,sk_sk,,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,sl_si,,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,sq_al,,sq,al +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,sv_se,,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,sw_tz,,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,te_in,,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,th_th,,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,tr_tr,,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,uk_ua,,uk,ua +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,zu_za,,zu,za +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/extras/source/autocorr/emoji.po,42,38,38,170,161,1363,1618,1575,1817,emoji.po,emoji,emoji,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/filter/source/config/fragments/filters.po,20,58,55,9,24,191,650,220,732,filters.po,filters,filters,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,internalgraphicfilters,internalgraphicfilters,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/filter/source/config/fragments/types.po,2,8,8,5,18,31,95,38,121,types.po,types,types,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/instsetoo_native/inc_openoffice/windows/msi_languages.po,376,3387,2951,90,232,91,735,557,4354,msi_languages.po,msi_languages,msi_languages,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/librelogo/source/pythonpath.po,13,13,13,44,44,81,116,138,173,pythonpath.po,pythonpath,pythonpath,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,nlpsolver,nlpsolver,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/nlpsolver/src/locale.po,8,8,8,7,8,26,89,41,105,locale.po,locale,locale,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,openoffice,openoffice,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/officecfg/registry/data/org/openoffice/office/ui.po,1526,3214,3216,970,1665,1181,2843,3677,7722,ui.po,ui,ui,,ui, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/readlicense_oo/docs.po,7,41,40,1,1,95,2361,103,2403,docs.po,docs,docs,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,metadata,metadata,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,activex,activex,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/calc.po,13,41,44,4,33,5,20,22,94,calc.po,calc,calc,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/draw.po,11,45,45,1,5,29,99,41,149,draw.po,draw,draw,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,extensions,extensions,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,gnome,gnome,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/graphicfilter.po,24,77,105,2,6,4,18,30,101,graphicfilter.po,graphicfilter,graphicfilter,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/impress.po,15,59,62,2,8,4,14,21,81,impress.po,impress,impress,,impress, +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,kde,,kde, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/math.po,9,39,41,0,0,1,3,10,42,math.po,math,math,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,onlineupdate,onlineupdate,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/ooo.po,203,261,263,126,683,253,1080,582,2024,ooo.po,ooo,ooo,,ooo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,python,python,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/quickstart.po,2,15,13,0,0,0,0,2,15,quickstart.po,quickstart,quickstart,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/winexplorerext.po,2,18,18,0,0,0,0,2,18,winexplorerext.po,winexplorerext,winexplorerext,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/writer.po,14,37,39,2,7,11,70,27,114,writer.po,writer,writer,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,xsltfilter,xsltfilter,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/setup_native/source/mac.po,11,44,31,0,0,12,87,23,131,mac.po,mac,mac,,mac, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/shell/source/win32/shlxthandler/res.po,37,45,47,0,0,0,0,37,45,res.po,res,res,,res, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/swext/mediawiki/help.po,7,7,8,3,5,79,1392,89,1404,help.po,help,help,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/swext/mediawiki/src.po,0,0,0,0,0,2,39,2,39,src.po,src,src,,src, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,office,office,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,10,11,13,4,4,18,166,32,181,custom.po,custom,custom,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/sysui/desktop/share.po,33,121,120,12,64,21,92,66,277,share.po,share,share,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/wizards/source/resources.po,420,1798,1407,56,132,78,356,554,2286,resources.po,resources,resources,,resources, +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,es_es,,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,es_ar,,es,ar +lvm2-2.02.183-3.fc30.src.rpm.stats.csv,po/lvm2.po,0,0,0,0,0,1556,9826,1556,9826,lvm2.po,lvm2,lvm2,,lvm2, +lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/tt_ru.po,12,29,28,4,9,150,717,166,755,tt_ru.po,tt_ru,tt_ru,,tt,ru +lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/lg.po,111,295,376,0,0,55,460,166,755,lg.po,lg,lg,,lg, +lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ur_pk.po,12,29,33,4,9,150,717,166,755,ur_pk.po,ur_pk,ur_pk,,ur,pk +lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/frp.po,10,16,16,5,15,151,724,166,755,frp.po,frp,frp,,frp, +mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ht.po,30,114,117,0,0,0,0,30,114,ht.po,ht,ht,,ht, +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,yi,,yi, +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,tk,,tk, +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,io,,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,ig,,ig, +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,ha,,ha, +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,fy,,fy, +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,ln,,ln, +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,et_ee,,et,ee +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,zh,,zh, +nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/pt_br/lc_messages/zenmap.mo,85,165,194,0,0,0,0,85,165,zenmap.mo,zenmap,zenmap,,zenmap, +policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/fil.po,6,6,8,0,0,692,4491,698,4497,fil.po,fil,fil,,fil, +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,vi_vn,,vi,vn +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,si_lk,,si,lk +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,lv_lv,,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,lt_lt,,lt,lt +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,es_mx,,es,mx +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,bn_bd,,bn,bd +python-humanize-0.5.1-16.fc30.src.rpm.stats.csv,humanize/locale/fr_fr/lc_messages/humanize.mo,32,77,83,0,0,0,0,32,77,humanize.mo,humanize,humanize,,humanize, +python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ach.po,0,0,0,0,0,23,109,23,109,ach.po,ach,ach,,ach, +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,wo,,wo, +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,ru_ru,,ru,ru +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,en_us,,en,us +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,aln,,aln, +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,bal,,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,kw_gb,,kw,gb +python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/wba.po,0,0,0,0,0,16,42,16,42,wba.po,wba,wba,,wba, +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,yo,,yo, +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,tw,,tw, +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,brx,,brx, +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,anp,,anp, +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,kw@kkcor,kw,kkcor,kw, +qt5-qtdeclarative-5.12.1-1.fc30.src.rpm.stats.csv,examples/qml/qml-i18n/i18n/qml_fr.ts,1,1,1,0,0,0,0,1,1,qml_fr.ts,qml_fr,qml_fr,,qml,fr +qt5-qtdeclarative-5.12.1-1.fc30.src.rpm.stats.csv,examples/qml/qml-i18n/i18n/qml_en_au.ts,1,1,1,0,0,0,0,1,1,qml_en_au.ts,qml_en_au,qml_en_au,,qml_en,au +qt5-qtdeclarative-5.12.1-1.fc30.src.rpm.stats.csv,examples/qml/qml-i18n/i18n/base.ts,0,0,0,0,0,1,1,1,1,base.ts,base,base,,base, +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,es_cl,,es,cl +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,,cmn, +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,tl,,tl, +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,shn,,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,se,,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,sd,,sd, +simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/mhr.po,29,34,41,0,0,116,555,145,589,mhr.po,mhr,mhr,,mhr, +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,ce,,ce, +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,bo,,bo, +sos-3.7-1.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,30,122,30,122,ur.po,ur,ur,,ur, +sos-3.7-1.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,30,122,30,122,lo.po,lo,lo,,lo, +sos-3.7-1.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,30,122,30,122,ilo.po,ilo,ilo,,ilo, +sos-3.7-1.fc30.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,30,122,30,122,hy.po,hy,hy,,hy, +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,my,,my, +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,gv,,gv, +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,fo,,fo, +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,no,,no, +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/lc_messages/options.mo,47,244,196,0,0,0,0,47,244,options.mo,options,options,,options, +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,de_ch,,de,ch +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,ang,,ang, +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,ia,,ia, +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,csb,,csb, +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,kg,,kg, +xen-4.11.1-4.fc30.src.rpm.stats.csv,tools/qemu-xen/po/messages.po,0,0,0,0,0,18,33,18,33,messages.po,messages,messages,,messages, +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,fr_fr,,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,de_de,,de,de +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,li,,li, +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,nso,,nso, +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,la,,la, +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,br,,br, +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,ks,,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,crh,,crh, +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,an,,an, +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,zu,,zu, +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,nds,,nds, +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,km,,km, +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,uz@cyrillic,uz,cyrillic,uz, +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,gd,,gd, +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,wa,,wa, +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,ky,,ky, +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,cy,,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,ru,,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,mn,,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,nb,,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,bn,,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,zh_cn,,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,af,,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,az,,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,en_ca,,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,pl,,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,ps,,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,nn,,nn, +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,gl,,gl, +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,cs,,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,he,,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,kk,,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,it,,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,lt,,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,hu,,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,vi,,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,as,,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,nl,,nl, +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,bn_in,,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,be@latin,be,latin,be, +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,ar,,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,ug,,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,eu,,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,sr,,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,uk,,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,xh,,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,fi,,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,es,,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,ga,,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,sv,,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,mi,,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,tg,,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,rw,,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,hi,,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,oc,,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,bs,,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,eo,,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,am,,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,ka,,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,mr,,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,id,,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,el,,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,en_gb,,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,pt,,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,mg,,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,sk,,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,ko,,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,si,,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,bg,,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,de,,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,fur,,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,ast,,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,lv,,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,dz,,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,mai,,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,or,,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,ta,,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,hr,,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,mk,,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,fa,,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,ne,,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,tr,,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,zh_tw,,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,ro,,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,zh_hk,,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,is,,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,sq,,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,fr,,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,sl,,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,ku,,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,gu,,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,pa,,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,ja,,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,ml,,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,te,,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,kn,,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,et,,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,en@shaw,en,shaw,en, +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,da,,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,th,,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,ca,,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,ms,,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,pt_br,,pt,br diff --git a/results/f30/1.debug.language.csv b/results/f30/1.debug.language.csv new file mode 100644 index 0000000..ae19407 --- /dev/null +++ b/results/f30/1.debug.language.csv @@ -0,0 +1,255 @@ +src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,full_lang,lang,script,language,region +boost-1.69.0-6.fc30.src.rpm.stats.csv,tools/build/example/gettext/russian.po,1,1,2,0,0,0,0,1,1,russian.po,russian,russian,,russian, +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,ts,,ts, +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,,nhn, +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,szl,,szl, +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,guc,,guc, +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,,son, +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,pi,,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,pap,,pap, +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,nv,,nv, +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,,nah, +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,na,,na, +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,,mo, +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,kv,,kv, +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,kl,,kl, +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,ki,,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,kab,,kab, +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,jam,,jam, +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,iu,,iu, +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,gn,,gn, +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,ff,,ff, +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,ee,,ee, +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,dv,,dv, +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,cv,,cv, +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,ckb,,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,chr,,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,ch,,ch, +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,bi,,bi, +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,bar,,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,ba,,ba, +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,ay,,ay, +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,ak,,ak, +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,ace,,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,ab,,ab, +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,wal,,wal, +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,so,,so, +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,haw,,haw, +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,ve,,ve, +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,tig,,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,ti,,ti, +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,mt,,mt, +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,kok,,kok, +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,gez,,gez, +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,byn,,byn, +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,sc,,sc, +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,,gr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/auxiliary.po,93,268,103,0,0,12,34,105,302,auxiliary.po,auxiliary,auxiliary,,auxiliary, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/sbasic/shared/03.po,0,0,0,0,0,47,145,47,145,03.po,03,03,,03, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/scalc.po,181,956,259,0,0,6,30,187,986,scalc.po,scalc,scalc,,scalc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/schart.po,88,796,141,0,0,8,135,96,931,schart.po,schart,schart,,schart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/sdraw.po,120,718,179,0,0,3,14,123,732,sdraw.po,sdraw,sdraw,,sdraw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared.po,219,1966,386,0,0,31,342,250,2308,shared.po,shared,shared,,shared, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/05.po,107,1112,174,0,0,89,1228,196,2340,05.po,05,05,,05, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/07.po,4,29,9,0,0,3,53,7,82,07.po,07,07,,07, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/autokorr.po,47,403,81,0,0,1,17,48,420,autokorr.po,autokorr,autokorr,,autokorr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/autopi.po,741,6458,1403,0,0,146,1936,887,8394,autopi.po,autopi,autopi,,autopi, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/explorer/database.po,1445,14199,3038,0,0,196,4658,1641,18857,database.po,database,database,,database, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/shared/optionen.po,1232,11226,2639,0,0,702,12125,1934,23351,optionen.po,optionen,optionen,,optionen, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/simpress.po,187,1324,272,0,0,12,71,199,1395,simpress.po,simpress,simpress,,simpress, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/smath.po,57,613,121,0,0,3,126,60,739,smath.po,smath,smath,,smath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/smath/06.po,0,0,0,0,0,9,21,9,21,06.po,06,06,,06, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter.po,222,1453,323,0,0,114,1493,336,2946,swriter.po,swriter,swriter,,swriter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/00.po,214,1080,558,0,0,96,738,310,1818,00.po,00,00,,00, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/01.po,2669,24832,4110,0,0,677,8961,3346,33793,01.po,01,01,,01, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/02.po,370,2480,616,0,0,56,570,426,3050,02.po,02,02,,02, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/04.po,247,1206,323,0,0,7,70,254,1276,04.po,04,04,,04, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/guide.po,1889,23164,4698,0,0,255,4773,2144,27937,guide.po,guide,guide,,guide, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/librelogo.po,139,880,402,1,1,186,2138,326,3019,librelogo.po,librelogo,librelogo,,librelogo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/helpcontent2/source/text/swriter/menu.po,6,13,6,0,0,11,83,17,96,menu.po,menu,menu,,menu, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/connectivity/registry/writer/org/openoffice/office/dataaccess.po,0,0,0,1,2,0,0,1,2,dataaccess.po,dataaccess,dataaccess,,dataaccess, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/gug.po,0,0,0,0,0,1,5,1,5,gug.po,gug,gug,,gug, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/kmr_latn.po,0,0,0,0,0,1,4,1,4,kmr_latn.po,kmr@latn,kmr,latn,kmr, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/ru_ru/dialog.po,3,3,3,0,0,11,23,14,26,dialog.po,dialog,dialog,,dialog, +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,sw_tz,,sw,tz +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/extras/source/autocorr/emoji.po,42,38,38,170,161,1363,1618,1575,1817,emoji.po,emoji,emoji,,emoji, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/filter/source/config/fragments/filters.po,20,58,55,9,24,191,650,220,732,filters.po,filters,filters,,filters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/filter/source/config/fragments/internalgraphicfilters.po,0,0,0,0,0,38,139,38,139,internalgraphicfilters.po,internalgraphicfilters,internalgraphicfilters,,internalgraphicfilters, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/filter/source/config/fragments/types.po,2,8,8,5,18,31,95,38,121,types.po,types,types,,types, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/instsetoo_native/inc_openoffice/windows/msi_languages.po,376,3387,2951,90,232,91,735,557,4354,msi_languages.po,msi_languages,msi_languages,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/librelogo/source/pythonpath.po,13,13,13,44,44,81,116,138,173,pythonpath.po,pythonpath,pythonpath,,pythonpath, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/nlpsolver/src/com/sun/star/comp/calc/nlpsolver.po,0,0,0,0,0,2,21,2,21,nlpsolver.po,nlpsolver,nlpsolver,,nlpsolver, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/nlpsolver/src/locale.po,8,8,8,7,8,26,89,41,105,locale.po,locale,locale,,locale, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/officecfg/registry/data/org/openoffice.po,0,0,0,0,0,9,28,9,28,openoffice.po,openoffice,openoffice,,openoffice, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/officecfg/registry/data/org/openoffice/office/ui.po,1526,3214,3216,970,1665,1181,2843,3677,7722,ui.po,ui,ui,,ui, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/readlicense_oo/docs.po,7,41,40,1,1,95,2361,103,2403,docs.po,docs,docs,,docs, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/reportbuilder/java/org/libreoffice/report/function/metadata.po,0,0,0,0,0,6,20,6,20,metadata.po,metadata,metadata,,metadata, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/activex.po,1,2,3,0,0,1,14,2,16,activex.po,activex,activex,,activex, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/calc.po,13,41,44,4,33,5,20,22,94,calc.po,calc,calc,,calc, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/draw.po,11,45,45,1,5,29,99,41,149,draw.po,draw,draw,,draw, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/extensions.po,0,0,0,3,9,13,56,16,65,extensions.po,extensions,extensions,,extensions, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/gnome.po,0,0,0,0,0,2,11,2,11,gnome.po,gnome,gnome,,gnome, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/graphicfilter.po,24,77,105,2,6,4,18,30,101,graphicfilter.po,graphicfilter,graphicfilter,,graphicfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/impress.po,15,59,62,2,8,4,14,21,81,impress.po,impress,impress,,impress, +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,kde,,kde, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/math.po,9,39,41,0,0,1,3,10,42,math.po,math,math,,math, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/onlineupdate.po,0,0,0,0,0,2,13,2,13,onlineupdate.po,onlineupdate,onlineupdate,,onlineupdate, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/ooo.po,203,261,263,126,683,253,1080,582,2024,ooo.po,ooo,ooo,,ooo, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/python.po,0,0,0,0,0,2,7,2,7,python.po,python,python,,python, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/quickstart.po,2,15,13,0,0,0,0,2,15,quickstart.po,quickstart,quickstart,,quickstart, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/winexplorerext.po,2,18,18,0,0,0,0,2,18,winexplorerext.po,winexplorerext,winexplorerext,,winexplorerext, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/writer.po,14,37,39,2,7,11,70,27,114,writer.po,writer,writer,,writer, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/xsltfilter.po,2,6,6,0,0,0,0,2,6,xsltfilter.po,xsltfilter,xsltfilter,,xsltfilter, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/setup_native/source/mac.po,11,44,31,0,0,12,87,23,131,mac.po,mac,mac,,mac, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/shell/source/win32/shlxthandler/res.po,37,45,47,0,0,0,0,37,45,res.po,res,res,,res, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/swext/mediawiki/help.po,7,7,8,3,5,79,1392,89,1404,help.po,help,help,,help, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/swext/mediawiki/src.po,0,0,0,0,0,2,39,2,39,src.po,src,src,,src, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/swext/mediawiki/src/registry/data/org/openoffice/office.po,0,0,0,0,0,2,3,2,3,office.po,office,office,,office, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/swext/mediawiki/src/registry/data/org/openoffice/office/custom.po,10,11,13,4,4,18,166,32,181,custom.po,custom,custom,,custom, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/sysui/desktop/share.po,33,121,120,12,64,21,92,66,277,share.po,share,share,,share, +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/wizards/source/resources.po,420,1798,1407,56,132,78,356,554,2286,resources.po,resources,resources,,resources, +lvm2-2.02.183-3.fc30.src.rpm.stats.csv,po/lvm2.po,0,0,0,0,0,1556,9826,1556,9826,lvm2.po,lvm2,lvm2,,lvm2, +lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/tt_ru.po,12,29,28,4,9,150,717,166,755,tt_ru.po,tt_ru,tt_ru,,tt,ru +lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/lg.po,111,295,376,0,0,55,460,166,755,lg.po,lg,lg,,lg, +lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/frp.po,10,16,16,5,15,151,724,166,755,frp.po,frp,frp,,frp, +mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ht.po,30,114,117,0,0,0,0,30,114,ht.po,ht,ht,,ht, +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,yi,,yi, +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,tk,,tk, +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,io,,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,ig,,ig, +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,ha,,ha, +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,fy,,fy, +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,ln,,ln, +nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/pt_br/lc_messages/zenmap.mo,85,165,194,0,0,0,0,85,165,zenmap.mo,zenmap,zenmap,,zenmap, +policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/fil.po,6,6,8,0,0,692,4491,698,4497,fil.po,fil,fil,,fil, +python-humanize-0.5.1-16.fc30.src.rpm.stats.csv,humanize/locale/fr_fr/lc_messages/humanize.mo,32,77,83,0,0,0,0,32,77,humanize.mo,humanize,humanize,,humanize, +python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ach.po,0,0,0,0,0,23,109,23,109,ach.po,ach,ach,,ach, +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,wo,,wo, +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,aln,,aln, +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,bal,,bal, +python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/wba.po,0,0,0,0,0,16,42,16,42,wba.po,wba,wba,,wba, +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,yo,,yo, +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,tw,,tw, +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,brx,,brx, +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,anp,,anp, +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,kw@kkcor,kw,kkcor,kw, +qt5-qtdeclarative-5.12.1-1.fc30.src.rpm.stats.csv,examples/qml/qml-i18n/i18n/qml_fr.ts,1,1,1,0,0,0,0,1,1,qml_fr.ts,qml_fr,qml_fr,,qml,fr +qt5-qtdeclarative-5.12.1-1.fc30.src.rpm.stats.csv,examples/qml/qml-i18n/i18n/qml_en_au.ts,1,1,1,0,0,0,0,1,1,qml_en_au.ts,qml_en_au,qml_en_au,,qml_en,au +qt5-qtdeclarative-5.12.1-1.fc30.src.rpm.stats.csv,examples/qml/qml-i18n/i18n/base.ts,0,0,0,0,0,1,1,1,1,base.ts,base,base,,base, +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,,cmn, +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,tl,,tl, +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,shn,,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,se,,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,sd,,sd, +simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/mhr.po,29,34,41,0,0,116,555,145,589,mhr.po,mhr,mhr,,mhr, +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,ce,,ce, +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,bo,,bo, +sos-3.7-1.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,30,122,30,122,ur.po,ur,ur,,ur, +sos-3.7-1.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,30,122,30,122,lo.po,lo,lo,,lo, +sos-3.7-1.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,30,122,30,122,ilo.po,ilo,ilo,,ilo, +sos-3.7-1.fc30.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,30,122,30,122,hy.po,hy,hy,,hy, +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,my,,my, +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,gv,,gv, +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,fo,,fo, +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,no,,no, +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/lc_messages/options.mo,47,244,196,0,0,0,0,47,244,options.mo,options,options,,options, +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,ang,,ang, +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,ia,,ia, +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,csb,,csb, +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,kg,,kg, +xen-4.11.1-4.fc30.src.rpm.stats.csv,tools/qemu-xen/po/messages.po,0,0,0,0,0,18,33,18,33,messages.po,messages,messages,,messages, +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,li,,li, +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,nso,,nso, +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,la,,la, +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,br,,br, +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,ks,,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,crh,,crh, +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,an,,an, +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,zu,,zu, +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,nds,,nds, +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,km,,km, +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,uz@cyrillic,uz,cyrillic,uz, +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,gd,,gd, +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,wa,,wa, +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,ky,,ky, +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,cy,,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,ru,,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,mn,,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,nb,,nb, +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,af,,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,az,,az, +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,pl,,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,ps,,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,nn,,nn, +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,gl,,gl, +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,cs,,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,he,,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,kk,,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,it,,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,lt,,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,hu,,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,vi,,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,as,,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,nl,,nl, +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,bn_in,,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,be@latin,be,latin,be, +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,ar,,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,ug,,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,eu,,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,sr,,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,uk,,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,xh,,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,fi,,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,es,,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,ga,,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,sv,,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,mi,,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,tg,,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,rw,,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,hi,,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,oc,,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,bs,,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,eo,,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,am,,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,ka,,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,mr,,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,id,,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,el,,el, +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,mg,,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,sk,,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,ko,,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,si,,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,bg,,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,de,,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,fur,,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,ast,,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,lv,,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,dz,,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,mai,,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,or,,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,ta,,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,hr,,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,mk,,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,fa,,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,ne,,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,tr,,tr, +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,ro,,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,zh_hk,,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,is,,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,sq,,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,fr,,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,sl,,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,ku,,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,gu,,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,pa,,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,ja,,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,ml,,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,te,,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,kn,,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,et,,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,en@shaw,en,shaw,en, +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,da,,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,th,,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,ca,,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,ms,,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,pt_br,,pt,br diff --git a/results/f30/1.debug.region.csv b/results/f30/1.debug.region.csv new file mode 100644 index 0000000..c1d66d7 --- /dev/null +++ b/results/f30/1.debug.region.csv @@ -0,0 +1,67 @@ +src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,full_lang,lang,script,language,region +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,en_nz,,en,nz +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,az_ir,,az,ir +iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/zh_hant.po,115,258,115,0,0,0,0,115,258,zh_hant.po,zh_hant,zh_hant,,zh,hant +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,es_ve,,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,es_uy,,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,es_sv,,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,es_pr,,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,es_pe,,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,es_pa,,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,es_ni,,es,ni +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,es_hn,,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,es_gt,,es,gt +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,es_ec,,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,es_do,,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,es_cr,,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,es_co,,es,co +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,be_by,,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,bg_bg,,bg,bg +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,bs_ba,,bs,ba +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,cs_cz,,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,da_dk,,da,dk +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,el_gr,,el,gr +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,he_il,,he,il +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,hr_hr,,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,hu_hu,,hu,hu +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,it_it,,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,lo_la,,lo,la +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,ne_np,,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,nl_nl,,nl,nl +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,pl_pl,,pl,pl +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,pt_pt,,pt,pt +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,sk_sk,,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,sl_si,,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,sq_al,,sq,al +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,sv_se,,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,sw_tz,,sw,tz +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,th_th,,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,tr_tr,,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,uk_ua,,uk,ua +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,zu_za,,zu,za +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/instsetoo_native/inc_openoffice/windows/msi_languages.po,376,3387,2951,90,232,91,735,557,4354,msi_languages.po,msi_languages,msi_languages,,msi,languages +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,es_es,,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,es_ar,,es,ar +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,ur_pk,,ur,pk +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,et_ee,,et,ee +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,vi_vn,,vi,vn +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,si_lk,,si,lk +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,lv_lv,,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,lt_lt,,lt,lt +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,es_mx,,es,mx +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,bn_bd,,bn,bd +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,ru_ru,,ru,ru +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,en_us,,en,us +qt5-qtdeclarative-5.12.1-1.fc30.src.rpm.stats.csv,examples/qml/qml-i18n/i18n/qml_en_au.ts,1,1,1,0,0,0,0,1,1,qml_en_au.ts,qml_en_au,qml_en_au,,qml_en,au +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,es_cl,,es,cl +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,de_ch,,de,ch +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,fr_fr,,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,de_de,,de,de +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,zh_cn,,zh,cn +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,en_ca,,en,ca +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,bn_in,,bn,in +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,en_gb,,en,gb +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,zh_tw,,zh,tw +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,zh_hk,,zh,hk +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,ms,,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,pt_br,,pt,br diff --git a/results/f30/1.debug.script.csv b/results/f30/1.debug.script.csv new file mode 100644 index 0000000..858a91d --- /dev/null +++ b/results/f30/1.debug.script.csv @@ -0,0 +1,18 @@ +src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,full_lang,lang,script,language,region +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,fr@braille,fr,braille,fr, +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,en@arabic,en,arabic,en, +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,en@greek,en,greek,en, +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,en@hebrew,en,hebrew,en, +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,en@piglatin,en,piglatin,en, +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,tt@iqtelif,tt,iqtelif,tt, +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,sr@ije,sr,ije,sr, +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,kw@uccor,kw,uccor,kw, +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,kw@kkcor,kw,kkcor,kw, +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,en@boldquot,en,boldquot,en, +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,en@quot,en,quot,en, +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,sr@latn,sr,latn,sr, +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,uz@cyrillic,uz,cyrillic,uz, +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,ca@valencia,ca,valencia,ca, +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,be@latin,be,latin,be, +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,en@shaw,en,shaw,en, +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,pt_br,,pt,br diff --git a/results/f30/1.debug.total message = 0.csv b/results/f30/1.debug.total message = 0.csv new file mode 100644 index 0000000..93e20a1 --- /dev/null +++ b/results/f30/1.debug.total message = 0.csv @@ -0,0 +1,61 @@ +src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords +exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/._fi.po,0,0,0,0,0,0,0,0,0 +exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/._ms.po,0,0,0,0,0,0,0,0,0 +exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/._ru.po,0,0,0,0,0,0,0,0,0 +exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/._pt.po,0,0,0,0,0,0,0,0,0 +exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/._pl.po,0,0,0,0,0,0,0,0,0 +exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/._gl.po,0,0,0,0,0,0,0,0,0 +exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/._vi.po,0,0,0,0,0,0,0,0,0 +exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/._ug.po,0,0,0,0,0,0,0,0,0 +exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/._de.po,0,0,0,0,0,0,0,0,0 +exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/._ca.po,0,0,0,0,0,0,0,0,0 +exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/._es.po,0,0,0,0,0,0,0,0,0 +exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/._sk.po,0,0,0,0,0,0,0,0,0 +exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/._sv.po,0,0,0,0,0,0,0,0,0 +exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/._bs.po,0,0,0,0,0,0,0,0,0 +exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/._fr.po,0,0,0,0,0,0,0,0,0 +exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/._uk.po,0,0,0,0,0,0,0,0,0 +gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,0,0,0,0 +gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,0,0,0,0 +krb5-1.17-4.fc30.src.rpm.stats.csv,src/po/en_us.po,0,0,0,0,0,0,0,0,0 +lvm2-2.02.183-3.fc30.src.rpm.stats.csv,po/de.po,0,0,0,0,0,0,0,0,0 +mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/zu.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/zh_hk.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/yo.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/wba.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/vi.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ur.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/tw.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/tg.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sq.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/si.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ro.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/nso.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/nn.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ne.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/mn.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/lv.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ky.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kw_gb.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kw@uccor.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kw@kkcor.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kw.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/km.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kk.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ka.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ilo.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/et.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/eo.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/cy.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/brx.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/br.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bo.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/be.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bal.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/anp.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/am.mo,0,0,0,0,0,0,0,0,0 +pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/af.mo,0,0,0,0,0,0,0,0,0 +qt5-qtdeclarative-5.12.1-1.fc30.src.rpm.stats.csv,examples/qml/qml-i18n/i18n/qml_en.ts,0,0,0,0,0,0,0,0,0 +sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,0,0,0,0 +vino-3.22.0-15.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,0,0,0,0 diff --git a/results/f30/3.result.csv b/results/f30/3.result.csv new file mode 100644 index 0000000..f35c180 --- /dev/null +++ b/results/f30/3.result.csv @@ -0,0 +1,23088 @@ +src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,script,language,region,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 From 836bd8bc663c10c286d595aacc8e6dc641b8924e Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Jun 16 2019 21:09:09 +0000 Subject: [PATCH 7/10] add CLDR ideas --- diff --git a/README.md b/README.md index 29b96e1..387f0a9 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,22 @@ Transtats: https://transtats.fedoraproject.org/releases/ http://distrib-coffee.ipsl.jussieu.fr/pub/linux/fedora/linux/development/30/Everything/x86_64/os/Packages/l/ -# Sources - -Data in BCP47-raw folder comes from https://github.com/unicode-org/cldr/blob/master/common/main/en.xml +# CLDR + +Data in CLDR-raw folder comes from https://github.com/unicode-org/cldr/blob/master/common/main/en.xml + +## Ideas + +1. CLDR supplementalData.xml: https://github.com/unicode-org/cldr/blob/master/common/supplemental/supplementalData.xml + 1. use territoryContainment to build geographic groups + 2. use languageData to detect default script + 3. use languageData to have basic stats about territories + 4. use territoryInfo to have advanced stats about territories +2. CLDR supplementalMetadata.xml: https://github.com/unicode-org/cldr/blob/master/common/supplemental/supplementalMetadata.xml + 1. use the replacement values harmonize content +3. CLDR likelySubtags.xml: https://github.com/unicode-org/cldr/blob/master/common/supplemental/likelySubtags.xml + 1. use the replacement advanced harmonization? +4. CLDR languageInfo.xml: https://github.com/unicode-org/cldr/blob/master/common/supplemental/languageInfo.xml + 1. can we say if language is >= 90% close to another one, we can consider we propagate translation statistics? +5. CLDR languageGroup.xml: https://github.com/unicode-org/cldr/blob/master/common/supplemental/languageGroup.xml + 1. what is it? From b9e3912f9d197b003ce1d6dfa00de49e6e0bb9c0 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Jun 17 2019 19:37:08 +0000 Subject: [PATCH 8/10] improve documentation --- diff --git a/README.md b/README.md index 387f0a9..7ca5aa5 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,10 @@ Global statistics on translation levels of fedora products -This takes the list of DNF packages from Koji: https://koji.fedoraproject.org/koji/buildinfo?buildID=1252912 - # Requirements `dnf install translate-toolkit podman` -# Use these scripts - ## Create needed folders ``` @@ -18,16 +14,20 @@ virtualenv venv source venv/bin/activate pip install -r requirements.txt ``` - -## Get the rpm sources -Downloading the file is done inside a container so we can produce stats even if -using Fedora 29. +# Run the scripts + +## Get package list -Note, this represents about 7 GB for Fedora 30 and takes some time. +This step is for now manual, I took list of DNF packages from Koji: https://koji.fedoraproject.org/koji/buildinfo?buildID=1252912 + +## Get the rpm sources `./download-f30-srpm-in-container.sh` +Downloading the file is done inside a container so we can produce stats even if +using Fedora 29. This represents about 7 GB for Fedora 30 and takes some time. + ## Compute data `./build.py` @@ -40,29 +40,27 @@ The result will be in multiple files inside the results folder. Applies data cleanups and enhancements (cldr name). -# See also - -AppData and Zanata statistics: https://github.com/Jibec/fedora-translation-statistics -Transtats: https://transtats.fedoraproject.org/releases/ - -http://distrib-coffee.ipsl.jussieu.fr/pub/linux/fedora/linux/development/30/Everything/x86_64/os/Packages/l/ - -# CLDR +# Informations Data in CLDR-raw folder comes from https://github.com/unicode-org/cldr/blob/master/common/main/en.xml ## Ideas -1. CLDR supplementalData.xml: https://github.com/unicode-org/cldr/blob/master/common/supplemental/supplementalData.xml - 1. use territoryContainment to build geographic groups - 2. use languageData to detect default script - 3. use languageData to have basic stats about territories - 4. use territoryInfo to have advanced stats about territories +1. CLDR supplementalData.xml: https:/ /github.com/unicode-org/cldr/blob/master/common/supplemental/supplementalData.xml + 1. use territoryContainment to build geographic groups + 2. use languageData to detect default script + 3. use languageData to have basic stats about territories + 4. use territoryInfo to have advanced stats about territories 2. CLDR supplementalMetadata.xml: https://github.com/unicode-org/cldr/blob/master/common/supplemental/supplementalMetadata.xml - 1. use the replacement values harmonize content + 1. use the replacement values harmonize content 3. CLDR likelySubtags.xml: https://github.com/unicode-org/cldr/blob/master/common/supplemental/likelySubtags.xml - 1. use the replacement advanced harmonization? + 1. use the replacement advanced harmonization? 4. CLDR languageInfo.xml: https://github.com/unicode-org/cldr/blob/master/common/supplemental/languageInfo.xml - 1. can we say if language is >= 90% close to another one, we can consider we propagate translation statistics? + 1. can we say if language is >= 90% close to another one, we can consider we propagate translation statistics? 5. CLDR languageGroup.xml: https://github.com/unicode-org/cldr/blob/master/common/supplemental/languageGroup.xml - 1. what is it? + 1. what is it? + +## See also + +AppData and Zanata statistics: https://github.com/Jibec/fedora-translation-statistics +Transtats: https://transtats.fedoraproject.org/releases/ diff --git a/build.py b/build.py index e3ad1af..69e14bb 100755 --- a/build.py +++ b/build.py @@ -1,5 +1,8 @@ #!/usr/bin/env python3 -"""Calls `./get_package.sh for every fedora 30 packages""" +""" For each packages in src.rpms folder :""" +""" extract srpm """ +""" run the translation_finder """ +""" Then, concat csv files """ import argparse import glob diff --git a/concat_csv.sh b/concat_csv.sh index 000ba7e..c98fca1 100755 --- a/concat_csv.sh +++ b/concat_csv.sh @@ -1,4 +1,5 @@ #!/bin/bash +# concat every csv file in one single one folder=$1 output="$folder/_concat.csv" diff --git a/download-f30-srpm-in-container.sh b/download-f30-srpm-in-container.sh index 045ec93..2a8aae7 100755 --- a/download-f30-srpm-in-container.sh +++ b/download-f30-srpm-in-container.sh @@ -1,6 +1,8 @@ #!/bin/bash +# call get_f30_srpm.sh using a container (usecase: run statistics from another +# OS than fedora-30) podman run --rm --tty -i --name=localization \ -v $(pwd):/scripts:z -w /scripts \ registry.fedoraproject.org/fedora:30 \ - /scripts/get_f30_srpm.sh \ No newline at end of file + /scripts/get_f30_srpm.sh diff --git a/extract_srpm.sh b/extract_srpm.sh index b7a787d..e7910f9 100755 --- a/extract_srpm.sh +++ b/extract_srpm.sh @@ -1,4 +1,6 @@ #!/bin/bash +# extract srpm using rpm2cpio, then +# extract every existing archives (that most probably are source code) folder=$1 package=$(pwd)/$2 @@ -44,4 +46,4 @@ done popd > /dev/null -rm -rf "$tmp" \ No newline at end of file +rm -rf "$tmp" diff --git a/get_f30_srpm.sh b/get_f30_srpm.sh index 78d160b..41f5bf4 100755 --- a/get_f30_srpm.sh +++ b/get_f30_srpm.sh @@ -4,4 +4,4 @@ dnf install -y 'dnf-command(download)' while read package; do time dnf download --source "$package" --destdir $(pwd)/src.rpms/f30/ -done Date: Jun 17 2019 20:44:49 +0000 Subject: [PATCH 9/10] add territory-language consistency check using population data --- diff --git a/CLDR-raw/country_language_population_raw.txt b/CLDR-raw/country_language_population_raw.txt new file mode 100644 index 0000000..0a8f599 --- /dev/null +++ b/CLDR-raw/country_language_population_raw.txt @@ -0,0 +1,1410 @@ +* CName CCode CPopulation CLiteracy CGdp OfficialStatus Language LCode LPopulation WritingPop References Notes +Afghanistan AF "34,940,837" 28% "69,450,000,000" official_regional Baluchi bal "233,000" +Afghanistan AF "34,940,837" 28% "69,450,000,000" Hazaragi haz 5.9% +Afghanistan AF "34,940,837" 28% "69,450,000,000" Kazakh (Arabic) kk_Arab "2,000" "http://en.wikipedia.org/wiki/Kazakh_language - the script is an assumption, needs a reference" +Afghanistan AF "34,940,837" 28% "69,450,000,000" Parsi-Dari prd "409,000" +Afghanistan AF "34,940,837" 28% "69,450,000,000" official Pashto ps 43% http://en.wikipedia.org/wiki/Pashto_language 42.6% of population +Afghanistan AF "34,940,837" 28% "69,450,000,000" official Persian fa 50% +Afghanistan AF "34,940,837" 28% "69,450,000,000" official_regional Turkmen tk "583,000" +Afghanistan AF "34,940,837" 28% "69,450,000,000" Uyghur ug "3,000" http://en.wikipedia.org/wiki/Uyghur_language - primarily written using an Arabic-derived alphabet +Afghanistan AF "34,940,837" 28% "69,450,000,000" official_regional Uzbek (Arabic) uz_Arab 4.7% +Afghanistan AF "34,940,837" 28% "69,450,000,000" Western Balochi bgn "219,000" 5% http://www.ethnologue.com/language/bgn low literacy +Åland Islands AX "26,200" 100% "929,800,000" official Swedish sv 99% +Albania AL "3,057,220" 97% "36,010,000,000" official Albanian sq 100% +Albania AL "3,057,220" 97% "36,010,000,000" Greek el "57,500" +Albania AL "3,057,220" 97% "36,010,000,000" Macedonian mk "14,300" +Algeria DZ "41,657,488" 73% "630,000,000,000" Algerian Arabic arq 83% +Algeria DZ "41,657,488" 73% "630,000,000,000" official Arabic ar 74% +Algeria DZ "41,657,488" 73% "630,000,000,000" English en 7% +Algeria DZ "41,657,488" 73% "630,000,000,000" official French fr 20% http://en.wikipedia.org/wiki/Algerian_language estimate 20% of Algerians can use French +Algeria DZ "41,657,488" 73% "630,000,000,000" Kabyle kab 7.8% 10% http://www.ethnologue.com/show_language.asp?code=kab French mostly used in commerce +American Samoa AS "50,826" 97% "658,000,000" de_facto_official English en 97% +American Samoa AS "50,826" 97% "658,000,000" official Samoan sm 99% +Andorra AD "85,708" 100% "3,327,000,000" official Catalan ca 51% +Andorra AD "85,708" 100% "3,327,000,000" French fr "5,780" +Andorra AD "85,708" 100% "3,327,000,000" Spanish es 43% +Angola AO "30,355,880" 70% "193,600,000,000" Kimbundu kmb 25% 10% http://www.ethnologue.com/14/show_iso639.asp?code=kmb 25% of pop +Angola AO "30,355,880" 70% "193,600,000,000" Lingala ln "204,000" http://www.joshuaproject.net/people-profile.php?peo3=13068&rog3=AO +Angola AO "30,355,880" 70% "193,600,000,000" official Portuguese pt 67% +Angola AO "30,355,880" 70% "193,600,000,000" Umbundu umb 29% +Anguilla AI "17,422" 95% "175,400,000" official English en 95% +Antarctica AQ 300 99% "17,760,000" Unknown language und 300 http://www.nsf.gov/od/opp/support/southp.jsp http://astro.uchicago.edu/cara/vtour/mcmurdo/ http://www.usap.gov/videoclipsandmaps/mcmwebcam.cfm Winter population is listed. +Antigua & Barbuda AG "95,882" 99% "2,398,000,000" official English en 86% +Antigua & Barbuda AG "95,882" 99% "2,398,000,000" Portuguese pt "1,600" +Argentina AR "44,694,198" 98% "922,100,000,000" English en 7% +Argentina AR "44,694,198" 98% "922,100,000,000" Guarani gn "21,200" +Argentina AR "44,694,198" 98% "922,100,000,000" official Spanish es 100% +Argentina AR "44,694,198" 98% "922,100,000,000" Welsh cy "29,300" +Armenia AM "3,038,217" 100% "28,340,000,000" official Armenian hy 98% +Armenia AM "3,038,217" 100% "28,340,000,000" Azerbaijani az 1 http://en.wikipedia.org/wiki/Census_in_Armenia - near-zero Azeri population in last census http://en.wikipedia.org/wiki/Azerbaijanis_in_Armenia#Current_situation +Armenia AM "3,038,217" 100% "28,340,000,000" Kurdish ku 3.3% +Aruba AW "116,576" 97% "4,158,000,000" official Dutch nl 97% https://www.cia.gov/cia/publications/factbook/geos/aa.html Dutch official +Aruba AW "116,576" 97% "4,158,000,000" English en "3,000" +Aruba AW "116,576" 97% "4,158,000,000" official Papiamento pap 61% +Ascension Island AC 940 99% "42,230,000" English en 931 http://en.wikipedia.org/wiki/Ascension_Island +Australia AU "23,470,145" 99% "1,248,000,000,000" Chinese (Traditional) zh_Hant "497,000" +Australia AU "23,470,145" 99% "1,248,000,000,000" de_facto_official English en 96% http://www.migrationinformation.org/Feature/display.cfm?ID=72 At most 6% are not fluent in English +Australia AU "23,470,145" 99% "1,248,000,000,000" Italian it "450,000" +Australia AU "23,470,145" 99% "1,248,000,000,000" Warlpiri wbp "2,500" +Austria AT "8,793,370" 98% "441,000,000,000" Bavarian bar 95% +Austria AT "8,793,370" 98% "441,000,000,000" official_regional Croatian hr "109,000" +Austria AT "8,793,370" 98% "441,000,000,000" English en 73% +Austria AT "8,793,370" 98% "441,000,000,000" French fr 11% +Austria AT "8,793,370" 98% "441,000,000,000" official German de 97% +Austria AT "8,793,370" 98% "441,000,000,000" official_regional Hungarian hu "23,300" +Austria AT "8,793,370" 98% "441,000,000,000" Italian it 9% +Austria AT "8,793,370" 98% "441,000,000,000" official_regional Slovenian sl "32,700" +Azerbaijan AZ "10,046,516" 100% "172,200,000,000" official Azerbaijani az 89% "http://www.nvtc.gov/lotw/months/march/Azerbaijani.html#writ Latin script official, used 98.8% of pop * 10% for the usage figure" +Azerbaijan AZ "10,046,516" 100% "172,200,000,000" official Azerbaijani (Cyrillic) az_Cyrl 9.9% "http://www.nvtc.gov/lotw/months/march/Azerbaijani.html#writ Latin script official, used 98.8% of pop * 90% for the usage figure" +Azerbaijan AZ "10,046,516" 100% "172,200,000,000" Kurdish ku "24,400" +Azerbaijan AZ "10,046,516" 100% "172,200,000,000" Muslim Tat ttt "22,100" +Azerbaijan AZ "10,046,516" 100% "172,200,000,000" Talysh tly 9.8% +Azerbaijan AZ "10,046,516" 100% "172,200,000,000" Tsakhur tkr "15,900" +Bahamas BS "332,634" 96% "12,060,000,000" official English en 100% +Bahrain BH "1,442,659" 95% "71,170,000,000" official Arabic ar 87% "http://www.ethnologue.com/show_country.asp?name=Bahrain Arabic official, the figure is derived from literacy * lang pop" +Bahrain BH "1,442,659" 95% "71,170,000,000" Malayalam ml 3.3% http://www.ethnologue.com/show_country.asp?name=Bahrain +Bangladesh BD "159,453,001" 58% "690,300,000,000" official Bangla bn 98% +Bangladesh BD "159,453,001" 58% "690,300,000,000" Burmese my "341,000" +Bangladesh BD "159,453,001" 58% "690,300,000,000" Chakma ccp "355,000" +Bangladesh BD "159,453,001" 58% "690,300,000,000" English en 18% +Bangladesh BD "159,453,001" 58% "690,300,000,000" Garo grt "116,000" +Bangladesh BD "159,453,001" 58% "690,300,000,000" Manipuri mni "17,200" +Bangladesh BD "159,453,001" 58% "690,300,000,000" Mru mro "28,800" https://www.ethnologue.com/language/mro and https://en.wikipedia.org/wiki/Mru_language +Bangladesh BD "159,453,001" 58% "690,300,000,000" Rangpuri rkt 6.5% 20% http://www.ethnologue.com/show_language.asp?code=rkt +Bangladesh BD "159,453,001" 58% "690,300,000,000" Sylheti syl 5% 35% +Barbados BB "293,131" 100% "5,218,000,000" official English en 100% +Belarus BY "9,527,543" 100% "179,400,000,000" official Belarusian be 100% +Belarus BY "9,527,543" 100% "179,400,000,000" official Russian ru 12% +Belgium BE "11,570,762" 99% "529,200,000,000" official Dutch nl 55% http://www.ethnologue.com/show_country.asp?name=NL The figure includes 'Vlaams' population from Ethnologue +Belgium BE "11,570,762" 99% "529,200,000,000" English en 59% http://en.wikipedia.org/wiki/List_of_countries_by_English-speaking_population The figure is from Wikipedia article on English-speaking populations +Belgium BE "11,570,762" 99% "529,200,000,000" official French fr 38% +Belgium BE "11,570,762" 99% "529,200,000,000" official German de 22% +Belgium BE "11,570,762" 99% "529,200,000,000" Walloon wa 5.8% 5% "http://www.orbilat.com/Languages/Walloon/Walloon.htm It is estimated that Walloon is used actively by 10-20% of the total population of Wallonia or between 300,000 and 600,000 people. For languages not customarily written, the writing population is artificially set to 5% in the absence of better information." +Belgium BE "11,570,762" 99% "529,200,000,000" West Flemish vls 10% +Belize BZ "385,854" 77% "3,218,000,000" official English en 100% +Belize BZ "385,854" 77% "3,218,000,000" Spanish es 28% +Benin BJ "11,340,504" 42% "25,390,000,000" Fon fon 25% +Benin BJ "11,340,504" 42% "25,390,000,000" official French fr 35% +Benin BJ "11,340,504" 42% "25,390,000,000" Yoruba yo 6.7% +Bermuda BM "71,176" 98% "6,127,000,000" official English en 92% +Bhutan BT "766,397" 53% "7,205,000,000" official Dzongkha dz 47% +Bhutan BT "766,397" 53% "7,205,000,000" English en 11% +Bhutan BT "766,397" 53% "7,205,000,000" Lepcha lep 3.9% +Bhutan BT "766,397" 53% "7,205,000,000" Nepali ne 17% +Bhutan BT "766,397" 53% "7,205,000,000" Tshangla tsj 15% +Bolivia BO "11,306,341" 91% "83,720,000,000" Araona aro 110 +Bolivia BO "11,306,341" 91% "83,720,000,000" official Aymara ay 20% +Bolivia BO "11,306,341" 91% "83,720,000,000" Guarani gn "51,300" +Bolivia BO "11,306,341" 91% "83,720,000,000" official Quechua qu 32% "http://lanic.utexas.edu/project/tilan/reports/rtf359/bolivia1.html Spanish is the official language, only about 60-70% of the population speaks it at all ;" +Bolivia BO "11,306,341" 91% "83,720,000,000" official Spanish es 61% "https://www.cia.gov/library/publications/the-world-factbook/geos/bl.html http://lanic.utexas.edu/project/tilan/reports/rtf359/bolivia1.html Spanish is the official language, only about 60-70% of the population speaks it at all ;" +Bosnia & Herzegovina BA "3,849,891" 98% "44,830,000,000" official Bosnian bs 99% +Bosnia & Herzegovina BA "3,849,891" 98% "44,830,000,000" official Bosnian (Cyrillic) bs_Cyrl 99% 5% http://www.bhas.ba/index.php?option=com_content&view=article&id=52&itemid=80&lang=en&Itemid= also: http://en.wikipedia.org/wiki/Bosnian_language +Bosnia & Herzegovina BA "3,849,891" 98% "44,830,000,000" official Croatian hr 12% +Bosnia & Herzegovina BA "3,849,891" 98% "44,830,000,000" English en 45% +Bosnia & Herzegovina BA "3,849,891" 98% "44,830,000,000" official Serbian sr 10% +Bosnia & Herzegovina BA "3,849,891" 98% "44,830,000,000" official Serbian (Latin) sr_Latn 10% 5% "While Cyrillic is customary, the vast majority of the population can read both.For languages not customarily written, the writing populiation is artificially set to 5% in the absence of better information." +Botswana BW "2,249,104" 85% "39,010,000,000" Afrikaans af "6,000" +Botswana BW "2,249,104" 85% "39,010,000,000" official English en 81% "https://www.cia.gov/cia/publications/factbook/geos/bc.html English official, 81% literacy; the figure is derived from literacy * lang pop" +Botswana BW "2,249,104" 85% "39,010,000,000" official Tswana tn 62% +Bouvet Island BV 1 99% "44,930" Unknown language und 1 +Brazil BR "208,846,892" 90% "3,248,000,000,000" English en 8% +Brazil BR "208,846,892" 90% "3,248,000,000,000" German de "1,750,000" +Brazil BR "208,846,892" 90% "3,248,000,000,000" Guajajára gub "17,500" +Brazil BR "208,846,892" 90% "3,248,000,000,000" Italian it "583,000" +Brazil BR "208,846,892" 90% "3,248,000,000,000" Japanese ja "443,000" +Brazil BR "208,846,892" 90% "3,248,000,000,000" Kaingang kgp "20,900" +Brazil BR "208,846,892" 90% "3,248,000,000,000" Korean ko "43,200" +Brazil BR "208,846,892" 90% "3,248,000,000,000" Nheengatu yrl "10,900" +Brazil BR "208,846,892" 90% "3,248,000,000,000" official Portuguese pt 91% +Brazil BR "208,846,892" 90% "3,248,000,000,000" Spanish es "76,200" https://en.wikipedia.org/wiki/Languages_of_Brazil +Brazil BR "208,846,892" 90% "3,248,000,000,000" Xavánte xav "10,000" +British Indian Ocean Territory IO "3,500" 99% "157,200,000" official English en "3,500" 100% https://www.cia.gov/cia/publications/factbook/geos/io.html No indigenous inhabitants. http://en.wikipedia.org/wiki/British_Indian_Ocean_Territory +British Virgin Islands VG "35,802" 98% "500,000,000" official English en 98% +Brunei BN "450,565" 95% "33,870,000,000" Chinese (Traditional) zh_Hant 11% +Brunei BN "450,565" 95% "33,870,000,000" English en "8,000" +Brunei BN "450,565" 95% "33,870,000,000" official Malay ms 93% +Brunei BN "450,565" 95% "33,870,000,000" official Malay (Arabic) ms_Arab 5% "http://en.wikipedia.org/wiki/Languages_of_Brunei Modern use of Arabic (Jawi) seems to be minimal, but is co-official with ms; set to 5% for now." +Bulgaria BG "7,057,504" 98% "153,500,000,000" official Bulgarian bg 100% +Bulgaria BG "7,057,504" 98% "153,500,000,000" English en 25% +Bulgaria BG "7,057,504" 98% "153,500,000,000" German de 8% +Bulgaria BG "7,057,504" 98% "153,500,000,000" Russian ru 23% +Bulgaria BG "7,057,504" 98% "153,500,000,000" Turkish tr 11% +Burkina Faso BF "19,742,715" 29% "35,850,000,000" Dyula dyu 32% http://www.ethnologue.com/show_language.asp?code=dyu +Burkina Faso BF "19,742,715" 29% "35,850,000,000" official French fr 22% +Burkina Faso BF "19,742,715" 29% "35,850,000,000" Fulah ff 1 No estimate available. +Burkina Faso BF "19,742,715" 29% "35,850,000,000" Fulah (Adlam) ff_Adlm 1 No estimate available. +Burkina Faso BF "19,742,715" 29% "35,850,000,000" Mossi mos 40% http://www.ethnologue.com/show_language.asp?code=mos Also called Moré +Burundi BI "11,844,520" 67% "8,007,000,000" official English en "6,240" "http://www.iwacu-burundi.org/blogs/english/english-is-now-official-language-of-burundi/ Newly designated official, not so widely used" +Burundi BI "11,844,520" 67% "8,007,000,000" official French fr 59% +Burundi BI "11,844,520" 67% "8,007,000,000" official Rundi rn 63% +Burundi BI "11,844,520" 67% "8,007,000,000" Swahili sw "6,360" +Cambodia KH "16,449,519" 74% "64,210,000,000" official Khmer km 89% +Cambodia KH "16,449,519" 74% "64,210,000,000" Kuy kdt "18,200" +Cambodia KH "16,449,519" 74% "64,210,000,000" Western Cham cja "259,000" +Cameroon CM "25,640,965" 71% "89,540,000,000" Aghem agq "37,000" 20% +Cameroon CM "25,640,965" 71% "89,540,000,000" Akoose bss "138,000" 30% http://www.ethnologue.com/language/bss 2nd lang literacy 30% +Cameroon CM "25,640,965" 71% "89,540,000,000" Arabic ar "99,400" +Cameroon CM "25,640,965" 71% "89,540,000,000" Bafia ksf "83,300" +Cameroon CM "25,640,965" 71% "89,540,000,000" Bafut bfd "147,000" 30% http://www.ethnologue.com/language/bfd 30% literacy +Cameroon CM "25,640,965" 71% "89,540,000,000" Bamun bax "299,000" +Cameroon CM "25,640,965" 71% "89,540,000,000" Basaa bas "319,000" 25% http://www.ethnologue.com/language/bas 25-50% literacy +Cameroon CM "25,640,965" 71% "89,540,000,000" Bulu bum 4.6% +Cameroon CM "25,640,965" 71% "89,540,000,000" Duala dua "122,000" 25% http://www.ethnologue.com/language/dua 2nd lang literacy 25-50% +Cameroon CM "25,640,965" 71% "89,540,000,000" official English en 38% "http://en.wikipedia.org/wiki/Cameroon English 1/5 of pop, used 1/5 of pop * literacy rate" +Cameroon CM "25,640,965" 71% "89,540,000,000" Ewondo ewo 3.1% 15% http://www.ethnologue.com/language/ewo 2nd lang literacy 15-25% +Cameroon CM "25,640,965" 71% "89,540,000,000" official French fr 68% +Cameroon CM "25,640,965" 71% "89,540,000,000" Fulah ff 3.6% "This is base pop for """"""""""""""""""""""""""""""""fub"""""""""""""""""""""""""""""""" lang code; ff shows as a macrolanguage" +Cameroon CM "25,640,965" 71% "89,540,000,000" Fulah (Adlam) ff_Adlm 1 No estimate available. +Cameroon CM "25,640,965" 71% "89,540,000,000" Ghomala bbj "361,000" 25% "http://www.ethnologue.com/language/bbj 2nd lang literacy 25-50%, taught formally" +Cameroon CM "25,640,965" 71% "89,540,000,000" Hausa (Arabic) ha_Arab "36,800" +Cameroon CM "25,640,965" 71% "89,540,000,000" Kako kkj "138,000" +Cameroon CM "25,640,965" 71% "89,540,000,000" Kom bkm "324,000" 5% http://www.ethnologue.com/language/bkm +Cameroon CM "25,640,965" 71% "89,540,000,000" Kwasio nmg "9,000" 10% http://www.ethnologue.com/language/nmg +Cameroon CM "25,640,965" 71% "89,540,000,000" Mafa maf "189,000" +Cameroon CM "25,640,965" 71% "89,540,000,000" Medumba byv "291,000" 15% http://www.ethnologue.com/language/byv literacy 15-25% +Cameroon CM "25,640,965" 71% "89,540,000,000" Metaʼ mgo "121,000" 5% http://www.ethnologue.com/language/mgh low litreracy ~5% +Cameroon CM "25,640,965" 71% "89,540,000,000" Mundang mua "265,000" +Cameroon CM "25,640,965" 71% "89,540,000,000" Ngiemboon nnh "347,000" 8% http://www.ethnologue.com/language/nnh 1st lang literacy 8% +Cameroon CM "25,640,965" 71% "89,540,000,000" Ngomba jgo "87,500" 30% http://www.ethnologue.com/language/jgo 2nd lang literacy 30% +Cameroon CM "25,640,965" 71% "89,540,000,000" Yangben yav "2,300" +Cameroon CM "25,640,965" 71% "89,540,000,000" Yemba ybb "416,000" 2% http://www.ethnologue.com/language/ybb +Canada CA "35,881,659" 99% "1,774,000,000,000" recognized Atikamekw atj "5,650" "Canadian census shows 97,230 total population for all Cree languages" +Canada CA "35,881,659" 99% "1,774,000,000,000" recognized Chipewyan chp 770 "Canadian census shows 97,230 total population for all Cree languages" +Canada CA "35,881,659" 99% "1,774,000,000,000" recognized Cree cr "39,400" "Canadian census shows 97,230 total population for all Cree languages" +Canada CA "35,881,659" 99% "1,774,000,000,000" recognized Dogrib dgr "2,640" http://en.wikipedia.org/wiki/Tlicho_Yatii_language also called Dogrib +Canada CA "35,881,659" 99% "1,774,000,000,000" official English en 86% http://en.wikipedia.org/wiki/Languages_of_Canada +Canada CA "35,881,659" 99% "1,774,000,000,000" official French fr 22% +Canada CA "35,881,659" 99% "1,774,000,000,000" German de "673,000" +Canada CA "35,881,659" 99% "1,774,000,000,000" recognized Gwichʼin gwi 570 http://en.wikipedia.org/wiki/Gwichin_language 300 speakers out of 1100 pop; 1998 census shows 770 +Canada CA "35,881,659" 99% "1,774,000,000,000" official_regional Inuinnaqtun ikt "4,000" 30% "http://www12.statcan.ca/census-recensement/2006/dp-pd/tbt/Rp-eng.cfm?LANG=E&APATH=3&DETAIL=0&DIM=0&FL=A&FREE=0&GC=0&GID=837928&GK=0&GRP=1&PID=89189&PRID=0&PTYPE=88971,97154&S=0&SHOWALL=0&SUB=0&Temporal=2006&THEME=70&VID=0&VNAMEE=&VNAMEF=" +Canada CA "35,881,659" 99% "1,774,000,000,000" official_regional Inuktitut iu "15,100" 30% "http://www12.statcan.ca/census-recensement/2006/dp-pd/tbt/Rp-eng.cfm?LANG=E&APATH=3&DETAIL=0&DIM=0&FL=A&FREE=0&GC=0&GID=837928&GK=0&GRP=1&PID=89189&PRID=0&PTYPE=88971,97154&S=0&SHOWALL=0&SUB=0&Temporal=2006&THEME=70&VID=0&VNAMEE=&VNAMEF=" +Canada CA "35,881,659" 99% "1,774,000,000,000" official_regional Inuktitut (Latin) iu_Latn "15,100" 30% "http://www12.statcan.ca/census-recensement/2006/dp-pd/tbt/Rp-eng.cfm?LANG=E&APATH=3&DETAIL=0&DIM=0&FL=A&FREE=0&GC=0&GID=837928&GK=0&GRP=1&PID=89189&PRID=0&PTYPE=88971,97154&S=0&SHOWALL=0&SUB=0&Temporal=2006&THEME=70&VID=0&VNAMEE=&VNAMEF=" +Canada CA "35,881,659" 99% "1,774,000,000,000" Italian it "714,000" "http://www12.statcan.ca/census-recensement/2006/dp-pd/tbt/Rp-eng.cfm?LANG=E&APATH=3&DETAIL=0&DIM=0&FL=A&FREE=0&GC=0&GID=837928&GK=0&GRP=1&PID=89189&PRID=0&PTYPE=88971,97154&S=0&SHOWALL=0&SUB=0&Temporal=2006&THEME=70&VID=0&VNAMEE=&VNAMEF=" +Canada CA "35,881,659" 99% "1,774,000,000,000" Mohawk moh "3,500" http://en.wikipedia.org/wiki/Mohawk_language +Canada CA "35,881,659" 99% "1,774,000,000,000" recognized Montagnais moe "11,900" "Canadian census shows 97,230 total population for all Cree languages" +Canada CA "35,881,659" 99% "1,774,000,000,000" recognized Moose Cree crm "4,500" "Canadian census shows 97,230 total population for all Cree languages" +Canada CA "35,881,659" 99% "1,774,000,000,000" recognized Naskapi nsk "1,180" "Canadian census shows 97,230 total population for all Cree languages" +Canada CA "35,881,659" 99% "1,774,000,000,000" recognized North Slavey scs "1,240" http://en.wikipedia.org/wiki/North_Slavey +Canada CA "35,881,659" 99% "1,774,000,000,000" recognized Northern East Cree crl "5,310" "Canadian census shows 97,230 total population for all Cree languages" +Canada CA "35,881,659" 99% "1,774,000,000,000" recognized Plains Cree crk "38,200" "Canadian census shows 97,230 total population for all Cree languages" +Canada CA "35,881,659" 99% "1,774,000,000,000" Plautdietsch pdt "86,400" +Canada CA "35,881,659" 99% "1,774,000,000,000" recognized Slave den "2,310" +Canada CA "35,881,659" 99% "1,774,000,000,000" recognized Southern East Cree crj "7,310" "Canadian census shows 97,230 total population for all Cree languages" +Canada CA "35,881,659" 99% "1,774,000,000,000" recognized Swampy Cree csw "5,000" "Canadian census shows 97,230 total population for all Cree languages" +Canada CA "35,881,659" 99% "1,774,000,000,000" Yiddish yi "16,200" http://en.wikipedia.org/wiki/Languages_of_Canada#Languages_by_mother_tongue +Canary Islands IC "2,098,593" 98% "75,640,000,000" official Spanish es 98% http://en.wikipedia.org/wiki/Canary_islands +Cape Verde CV "568,373" 85% "3,777,000,000" recognized Kabuverdianu kea 91% "http://www.ethnologue.com/show_country.asp?name=CV Official language, 37-77% literacy" +Cape Verde CV "568,373" 85% "3,777,000,000" official Portuguese pt 76% +Caribbean Netherlands BQ "20,000" 96% "416,400,000" official Dutch nl "1,600" +Caribbean Netherlands BQ "20,000" 96% "416,400,000" recognized Papiamento pap 81% +Cayman Islands KY "59,613" 99% "2,507,000,000" official English en 98% +Central African Republic CF "5,745,062" 57% "3,390,000,000" official French fr 49% +Central African Republic CF "5,745,062" 57% "3,390,000,000" Lingala ln "13,800" +Central African Republic CF "5,745,062" 57% "3,390,000,000" official Sango sg 49% http://www.ethnologue.com/show_language.asp?code=sag Ethnologue: 350k in CAF + 1.6 million 2nd lang speakers +Ceuta & Melilla EA "150,000" 98% "5,406,000,000" official Spanish es 98% http://en.wikipedia.org/wiki/Ceuta +Chad TD "15,833,116" 35% "28,620,000,000" official Arabic ar 17% https://www.cia.gov/library/publications/the-world-factbook/geos/cd.html low literacy and >120 langs in country +Chad TD "15,833,116" 35% "28,620,000,000" official French fr 26% https://www.cia.gov/library/publications/the-world-factbook/geos/cd.html low literacy and >120 langs in country +Chile CL "17,925,262" 99% "452,100,000,000" English en 9.5% +Chile CL "17,925,262" 99% "452,100,000,000" Mapuche arn "272,000" http://en.wikipedia.org/wiki/Mapuche_language +Chile CL "17,925,262" 99% "452,100,000,000" official Spanish es 98% "http://en.wikipedia.org/wiki/Demographics_of_Chile#Languages Spanish ""universal"", set to 98%" +China CN "1,384,688,986" 95% "23,210,000,000,000" Cantonese (Simplified) yue_Hans 5.2% 5% "Mainly in Guangdong Prov, ~70-80 million" +China CN "1,384,688,986" 95% "23,210,000,000,000" official Chinese zh 90% +China CN "1,384,688,986" 95% "23,210,000,000,000" English en "62,900" +China CN "1,384,688,986" 95% "23,210,000,000,000" Gan Chinese gan "22,900,000" +China CN "1,384,688,986" 95% "23,210,000,000,000" Hakka Chinese hak "31,200,000" +China CN "1,384,688,986" 95% "23,210,000,000,000" Kazakh (Arabic) kk_Arab "1,180,000" http://en.wikipedia.org/wiki/Kazakh_language +China CN "1,384,688,986" 95% "23,210,000,000,000" official_regional Korean ko "2,040,000" +China CN "1,384,688,986" 95% "23,210,000,000,000" Kyrgyz (Arabic) ky_Arab "466,000" +China CN "1,384,688,986" 95% "23,210,000,000,000" Lisu lis "617,000" +China CN "1,384,688,986" 95% "23,210,000,000,000" Literary Chinese lzh 1 No estimate available. +China CN "1,384,688,986" 95% "23,210,000,000,000" Lü khb "267,000" "http://www.ethnologue.com/show_language.asp?code=khb (= Tai Lu, Xishuangbanna Dai; New Tai Lue script)" +China CN "1,384,688,986" 95% "23,210,000,000,000" Min Nan Chinese nan "26,800,000" +China CN "1,384,688,986" 95% "23,210,000,000,000" official_regional Mongolian (Mongolian) mn_Mong "3,600,000" +China CN "1,384,688,986" 95% "23,210,000,000,000" Naxi nxq "329,000" +China CN "1,384,688,986" 95% "23,210,000,000,000" Russian ru "14,400" +China CN "1,384,688,986" 95% "23,210,000,000,000" Sichuan Yi ii "8,260,000" 60% +China CN "1,384,688,986" 95% "23,210,000,000,000" Tai Nüa tdd "267,000" +China CN "1,384,688,986" 95% "23,210,000,000,000" official_regional Tibetan bo "2,720,000" +China CN "1,384,688,986" 95% "23,210,000,000,000" official_regional Uyghur ug "7,680,000" +China CN "1,384,688,986" 95% "23,210,000,000,000" Uzbek (Cyrillic) uz_Cyrl "5,000" +China CN "1,384,688,986" 95% "23,210,000,000,000" Vietnamese vi "7,200" +China CN "1,384,688,986" 95% "23,210,000,000,000" Western Lawa lcp "79,900" +China CN "1,384,688,986" 95% "23,210,000,000,000" Wu Chinese wuu 6% +China CN "1,384,688,986" 95% "23,210,000,000,000" Xiang Chinese hsn "39,600,000" +China CN "1,384,688,986" 95% "23,210,000,000,000" official_regional Zhuang za "4,260,000" +Christmas Island CX "2,205" 99% "117,200,000" official English en "1,400" +Clipperton Island CP 1 99% "42,400" Unknown language und 1 http://en.wikipedia.org/wiki/Clipperton_Island +Cocos (Keeling) Islands CC 596 99% "31,690,000" de_facto_official English en 100 +Cocos (Keeling) Islands CC 596 99% "31,690,000" Malay (Arabic) ms_Arab 496 +Colombia CO "48,168,996" 94% "711,600,000,000" official Spanish es 93% https://www.cia.gov/cia/publications/factbook/geos/co.html Spanish official +Colombia CO "48,168,996" 94% "711,600,000,000" Wayuu guc "130,000" +Comoros KM "821,164" 76% "1,319,000,000" official Arabic ar 66% +Comoros KM "821,164" 76% "1,319,000,000" official French fr 56% +Comoros KM "821,164" 76% "1,319,000,000" official Ndzwani Comorian wni 34% https://www.ethnologue.com/language/wni +Comoros KM "821,164" 76% "1,319,000,000" official Ngazidja Comorian zdj 37% http://www.ethnologue.com/show_language.asp?code=zdj +Congo - Brazzaville CG "5,062,021" 84% "29,390,000,000" official French fr 84% +Congo - Brazzaville CG "5,062,021" 84% "29,390,000,000" recognized Lingala ln "121,000" +Congo - Kinshasa CD "85,281,024" 67% "68,600,000,000" official French fr 3.8% "https://www.cia.gov/cia/publications/factbook/geos/cg.html French official, the figure is derived from literacy * population" +Congo - Kinshasa CD "85,281,024" 67% "68,600,000,000" Kinyarwanda rw "325,000" +Congo - Kinshasa CD "85,281,024" 67% "68,600,000,000" official_regional Kongo kg "1,300,000" +Congo - Kinshasa CD "85,281,024" 67% "68,600,000,000" official_regional Lingala ln 3.1% +Congo - Kinshasa CD "85,281,024" 67% "68,600,000,000" Luba-Katanga lu "1,950,000" http://www.ethnologue.com/show_language.asp?code=lub +Congo - Kinshasa CD "85,281,024" 67% "68,600,000,000" official_regional Luba-Lulua lua 9.6% http://www.ethnologue.com/show_language.asp?code=lua +Congo - Kinshasa CD "85,281,024" 67% "68,600,000,000" Mongo lol "519,000" +Congo - Kinshasa CD "85,281,024" 67% "68,600,000,000" official_regional Swahili sw 50% http://en.wikipedia.org/wiki/Swahili_language - five eastern provinces of the DRC are Swahili speaking. Nearly half the 66 million Congolese speak it. +Cook Islands CK "9,038" 95% "299,900,000" official English en "8,830" +Costa Rica CR "4,987,142" 96% "83,940,000,000" official Spanish es 95% http://en.wikipedia.org/wiki/Costa_Rica https://www.cia.gov/library/publications/the-world-factbook/geos/cs.html +Côte d’Ivoire CI "26,260,582" 57% "97,160,000,000" Baoulé bci 11% 10% +Côte d’Ivoire CI "26,260,582" 57% "97,160,000,000" Cebaara Senoufo sef 4.3% 5% +Côte d’Ivoire CI "26,260,582" 57% "97,160,000,000" Dan dnj 4% 1% +Côte d’Ivoire CI "26,260,582" 57% "97,160,000,000" official French fr 49% +Côte d’Ivoire CI "26,260,582" 57% "97,160,000,000" Koro kfo "61,300" +Côte d’Ivoire CI "26,260,582" 57% "97,160,000,000" Koro Wachi bqv "45,500" 10% +Croatia HR "4,270,480" 99% "102,100,000,000" official Croatian hr 99% +Croatia HR "4,270,480" 99% "102,100,000,000" English en 49% +Croatia HR "4,270,480" 99% "102,100,000,000" official_regional Italian it "66,300" +Cuba CU "11,116,396" 100% "137,000,000,000" official Spanish es 100% +Curaçao CW "150,241" 96% "3,128,000,000" official Dutch nl 8% https://www.cia.gov/library/publications/the-world-factbook/geos/cc.html +Curaçao CW "150,241" 96% "3,128,000,000" de_facto_official Papiamento pap 81% https://www.cia.gov/library/publications/the-world-factbook/geos/cc.html +Curaçao CW "150,241" 96% "3,128,000,000" Spanish es "5,690" https://www.cia.gov/library/publications/the-world-factbook/geos/cc.html +Cyprus CY "1,237,088" 99% "31,780,000,000" Arabic ar "1,300" +Cyprus CY "1,237,088" 99% "31,780,000,000" Armenian hy "2,740" +Cyprus CY "1,237,088" 99% "31,780,000,000" English en 73% +Cyprus CY "1,237,088" 99% "31,780,000,000" French fr 7% +Cyprus CY "1,237,088" 99% "31,780,000,000" official Greek el 95% +Cyprus CY "1,237,088" 99% "31,780,000,000" official Turkish tr 23% +Czechia CZ "10,686,269" 99% "375,900,000,000" official Czech cs 98% +Czechia CZ "10,686,269" 99% "375,900,000,000" English en 27% +Czechia CZ "10,686,269" 99% "375,900,000,000" German de 15% +Czechia CZ "10,686,269" 99% "375,900,000,000" Polish pl "52,400" +Czechia CZ "10,686,269" 99% "375,900,000,000" Slovak sk 16% +Denmark DK "5,809,502" 99% "287,800,000,000" official Danish da 93% +Denmark DK "5,809,502" 99% "287,800,000,000" English en 86% +Denmark DK "5,809,502" 99% "287,800,000,000" Faroese fo "21,900" https://en.wikipedia.org/wiki/Faroese_language +Denmark DK "5,809,502" 99% "287,800,000,000" official_regional German de 47% "protected minority, southern Jutland" +Denmark DK "5,809,502" 99% "287,800,000,000" Jutish jut 1 No estimate available. +Denmark DK "5,809,502" 99% "287,800,000,000" official_regional Kalaallisut kl "7,000" +Denmark DK "5,809,502" 99% "287,800,000,000" Swedish sv 13% No estimate available. +Diego Garcia DG 500 99% "22,460,000" de_facto_official English en 495 http://en.wikipedia.org/wiki/Diego_Garcia +Djibouti DJ "884,017" 68% "3,640,000,000" Afar aa 42% +Djibouti DJ "884,017" 68% "3,640,000,000" official Arabic ar 7.3% +Djibouti DJ "884,017" 68% "3,640,000,000" official French fr "19,000" +Djibouti DJ "884,017" 68% "3,640,000,000" Somali so 41% +Dominica DM "74,027" 94% "783,000,000" official English en 94% +Dominican Republic DO "10,298,756" 90% "173,000,000,000" English en "8,000" +Dominican Republic DO "10,298,756" 90% "173,000,000,000" official Spanish es 78% +Ecuador EC "16,498,502" 92% "193,000,000,000" Chimborazo Highland Quichua qug 5.7% +Ecuador EC "16,498,502" 92% "193,000,000,000" official Quechua qu 17% http://en.wikipedia.org/wiki/Quechua_language +Ecuador EC "16,498,502" 92% "193,000,000,000" official Spanish es 96% "percentage calculated from http://www.spanishcourses.info/Mains/SpanishSpoken_EN.htm , see also http://www.spanishseo.org/resources/worldwide-spanish-speaking-population" +Egypt EG "99,413,317" 74% "1,204,000,000,000" official Arabic ar 94% +Egypt EG "99,413,317" 74% "1,204,000,000,000" Egyptian Arabic arz 64% +Egypt EG "99,413,317" 74% "1,204,000,000,000" English en 35% +Egypt EG "99,413,317" 74% "1,204,000,000,000" Greek el "60,900" +El Salvador SV "6,187,271" 85% "51,170,000,000" official Spanish es 89% +Equatorial Guinea GQ "797,457" 94% "31,520,000,000" Bube bvb 7.9% +Equatorial Guinea GQ "797,457" 94% "31,520,000,000" Fang fan 51% +Equatorial Guinea GQ "797,457" 94% "31,520,000,000" official French fr 8.8% http://www.nationsonline.org/oneworld/equatorial_guinea.htm French is a minority official language. Crude estimate of usage based on import partner data. +Equatorial Guinea GQ "797,457" 94% "31,520,000,000" official Portuguese pt 1 No estimate available. +Equatorial Guinea GQ "797,457" 94% "31,520,000,000" official Spanish es 87% "http://en.wikipedia.org/wiki/Equatorial_guinea#Official_languages The great majority of Equatorial Guineans speak Spanish, especially those living in the capital, Malabo. Spanish has been an official language since 1844." +Eritrea ER "5,970,646" 69% "9,402,000,000" Afar aa 3.6% +Eritrea ER "5,970,646" 69% "9,402,000,000" official Arabic ar 4.9% 5% "http://www.ethnologue.com/show_country.asp?name=ER Official language, used in some schools." +Eritrea ER "5,970,646" 69% "9,402,000,000" Blin byn "76,000" http://en.wikipedia.org/wiki/Blin_language +Eritrea ER "5,970,646" 69% "9,402,000,000" official English en 59% etimate only based on literacy; no population data currently available +Eritrea ER "5,970,646" 69% "9,402,000,000" Saho ssy 3.6% http://en.wikipedia.org/wiki/Saho_language +Eritrea ER "5,970,646" 69% "9,402,000,000" Tigre tig 18% +Eritrea ER "5,970,646" 69% "9,402,000,000" de_facto_official Tigrinya ti 60% http://en.wikipedia.org/wiki/Eritrea#Languages Tigrinya ethnic pop is about 60% +Estonia EE "1,244,288" 100% "41,650,000,000" English en 50% +Estonia EE "1,244,288" 100% "41,650,000,000" official Estonian et 71% +Estonia EE "1,244,288" 100% "41,650,000,000" Finnish fi 21% +Estonia EE "1,244,288" 100% "41,650,000,000" Russian ru 56% +Estonia EE "1,244,288" 100% "41,650,000,000" Võro vro 5.7% +Eswatini SZ "1,087,200" 88% "11,600,000,000" official English en 80% https://www.cia.gov/cia/publications/factbook/geos/wz.html +Eswatini SZ "1,087,200" 88% "11,600,000,000" official Swati ss 58% +Eswatini SZ "1,087,200" 88% "11,600,000,000" Tsonga ts "18,500" +Eswatini SZ "1,087,200" 88% "11,600,000,000" Zulu zu 6.8% +Ethiopia ET "108,386,391" 39% "200,600,000,000" Afar aa "1,510,000" +Ethiopia ET "108,386,391" 39% "200,600,000,000" official Amharic am 33% +Ethiopia ET "108,386,391" 39% "200,600,000,000" English en 43% +Ethiopia ET "108,386,391" 39% "200,600,000,000" Oromo om 32% +Ethiopia ET "108,386,391" 39% "200,600,000,000" Sidamo sid 3.5% +Ethiopia ET "108,386,391" 39% "200,600,000,000" Somali so 6% +Ethiopia ET "108,386,391" 39% "200,600,000,000" Tigrinya ti 6% +Ethiopia ET "108,386,391" 39% "200,600,000,000" Wolaytta wal "1,900,000" +Falkland Islands FK "3,198" 99% "206,400,000" official English en "2,810" +Faroe Islands FO "51,018" 99% "2,001,000,000" official Faroese fo 95% +Fiji FJ "926,276" 94% "8,629,000,000" official English en 94% +Fiji FJ "926,276" 94% "8,629,000,000" official Fiji Hindi hif 41% http://en.wikipedia.org/wiki/Fiji_Hindi +Fiji FJ "926,276" 94% "8,629,000,000" official Fijian fj 39% +Fiji FJ "926,276" 94% "8,629,000,000" Hindi hi 44% http://www.uwplatt.edu/news/2005/02/uw-platteville-announces-study-abroad.html Estimates Indian ethnic 44% ; see also http://en.wikipedia.org/wiki/Non-resident_Indian_and_Person_of_Indian_Origin and http://www.vanuatu.usp.ac.fj/paclangunit/English_South_Pacific.htm +Fiji FJ "926,276" 94% "8,629,000,000" Rotuman rtm "2,500" +Finland FI "5,537,364" 100% "244,900,000,000" English en 70% http://www.vaestorekisterikeskus.fi/vrk/home.nsf/pages/index_eng +Finland FI "5,537,364" 100% "244,900,000,000" Estonian et "6,000" +Finland FI "5,537,364" 100% "244,900,000,000" official Finnish fi 94% +Finland FI "5,537,364" 100% "244,900,000,000" German de 18% +Finland FI "5,537,364" 100% "244,900,000,000" Inari Sami smn 600 http://www.kotus.fi/?l=en&s=207 +Finland FI "5,537,364" 100% "244,900,000,000" Kalo Finnish Romani rmf "5,000" http://www.kotus.fi/index.phtml?l=en&s=512 +Finland FI "5,537,364" 100% "244,900,000,000" Northern Sami se "2,000" +Finland FI "5,537,364" 100% "244,900,000,000" Russian ru "44,800" http://www.vaestorekisterikeskus.fi/vrk/home.nsf/pages/index_eng +Finland FI "5,537,364" 100% "244,900,000,000" Skolt Sami sms 600 http://www.kotus.fi/?l=en&s=207 +Finland FI "5,537,364" 100% "244,900,000,000" official Swedish sv 44% +France FR "67,364,357" 99% "2,856,000,000,000" Arpitan frp "63,100" +France FR "67,364,357" 99% "2,856,000,000,000" Basque eu "85,600" +France FR "67,364,357" 99% "2,856,000,000,000" Breton br "561,000" 3% http://en.wikipedia.org/wiki/Breton_language http://www.ofis-bzh.org/fr/langue_bretonne/chiffres_cles/index.php France blocks other languages in state schools; 1.4% attended Breton schools and 3% is estimated as family transmission rate +France FR "67,364,357" 99% "2,856,000,000,000" Catalan ca "112,000" +France FR "67,364,357" 99% "2,856,000,000,000" Corsican co "163,000" 5% "http://www.ethnologue.com/show_language.asp?code=cos Corsican has been recognized as a language by the French government. Speakers also use French but many are not fluent in it. For languages not customarily written, the writing population is artificially set to 5%" +France FR "67,364,357" 99% "2,856,000,000,000" Dutch nl "89,700" +France FR "67,364,357" 99% "2,856,000,000,000" English en 39% +France FR "67,364,357" 99% "2,856,000,000,000" official French fr 99% +France FR "67,364,357" 99% "2,856,000,000,000" German de 5% ​http://www.interlingua.com/statutos leading Interlingua assoc (Union Mundial pro Interlingua) registered French non-profit - real user pop figure is unknown but low +France FR "67,364,357" 99% "2,856,000,000,000" Interlingua ia 100 ​http://www.interlingua.com/statutos leading Interlingua assoc (Union Mundial pro Interlingua) registered French non-profit - real user pop figure is unknown but low +France FR "67,364,357" 99% "2,856,000,000,000" Italian it "1,120,000" +France FR "67,364,357" 99% "2,856,000,000,000" Occitan oc "2,020,000" 5% "http://www.ethnologue.com/show_language.asp?code=lnc Languedocien = Occitan 'Everyone speaks French as first or second language.' For languages not customarily written, the writing population is artificially set to 5%" +France FR "67,364,357" 99% "2,856,000,000,000" Picard pcd "736,000" +France FR "67,364,357" 99% "2,856,000,000,000" Portuguese pt "843,000" +France FR "67,364,357" 99% "2,856,000,000,000" Spanish es 13% http://en.wikipedia.org/wiki/Alsatian_language +France FR "67,364,357" 99% "2,856,000,000,000" Swiss German gsw "615,000" 5% http://en.wikipedia.org/wiki/Alsatian_language +French Guiana GF "199,509" 83% "1,551,000,000" Chinese (Traditional) zh_Hant "5,000" +French Guiana GF "199,509" 83% "1,551,000,000" official French fr 77% http://www.ethnologue.com/show_country.asp?name=GF French official; the figure is derived from literacy * lang pop +French Guiana GF "199,509" 83% "1,551,000,000" Guianese Creole French gcr 26% +French Polynesia PF "290,373" 98% "5,490,000,000" Chinese (Traditional) zh_Hant 7.8% +French Polynesia PF "290,373" 98% "5,490,000,000" official French fr 61% +French Polynesia PF "290,373" 98% "5,490,000,000" official Tahitian ty 31% +French Southern Territories TF 140 99% "5,935,000" French fr 140 100% https://www.cia.gov/cia/publications/factbook/geos/fs.html No indigenous inhabitants. http://en.wikipedia.org/wiki/French_Southern_Territories +Gabon GA "2,119,036" 89% "36,660,000,000" official French fr 63% +Gabon GA "2,119,036" 89% "36,660,000,000" Punu puu 9% +Gambia GM "2,092,731" 51% "5,556,000,000" official English en 40% +Gambia GM "2,092,731" 51% "5,556,000,000" Fulah ff 1 +Gambia GM "2,092,731" 51% "5,556,000,000" Fulah (Adlam) ff_Adlm 1 +Gambia GM "2,092,731" 51% "5,556,000,000" Mandingo man 29% +Georgia GE "4,926,087" 100% "39,850,000,000" official_regional Abkhazian ab "110,000" +Georgia GE "4,926,087" 100% "39,850,000,000" Armenian hy 7% https://www.cia.gov/cia/publications/factbook/fields/2098.html +Georgia GE "4,926,087" 100% "39,850,000,000" official Georgian ka 86% +Georgia GE "4,926,087" 100% "39,850,000,000" Kurdish ku "43,600" +Georgia GE "4,926,087" 100% "39,850,000,000" Mingrelian xmf 11% +Georgia GE "4,926,087" 100% "39,850,000,000" official_regional Ossetic os "109,000" +Georgia GE "4,926,087" 100% "39,850,000,000" Russian ru 9% https://www.cia.gov/cia/publications/factbook/fields/2098.html +Germany DE "80,457,737" 99% "4,199,000,000,000" Bavarian bar 17% 5% "https://en.wikipedia.org/wiki/Bavarian_language Widely spoken less written, and most speakers know standard German as well" +Germany DE "80,457,737" 99% "4,199,000,000,000" Colognian ksh "245,000" http://www.ethnologue.com/show_language.asp?code=ksh +Germany DE "80,457,737" 99% "4,199,000,000,000" Croatian hr "635,000" +Germany DE "80,457,737" 99% "4,199,000,000,000" Danish da "1,610,000" http://www.bevoelkerungsschutz-portal.de/SharedDocs/Downloads/DE/Broschueren/2008/Regional_und_Minderheitensprachen.pdf +Germany DE "80,457,737" 99% "4,199,000,000,000" Dutch nl 9% http://de.statista.com/statistik/daten/studie/1138/umfrage/fremdsprachenkenntnisse/ +Germany DE "80,457,737" 99% "4,199,000,000,000" Eastern Frisian frs "2,000" http://www.ethnologue.com/language/frs Moribund language +Germany DE "80,457,737" 99% "4,199,000,000,000" English en 64% +Germany DE "80,457,737" 99% "4,199,000,000,000" French fr 18% http://de.statista.com/statistik/daten/studie/1138/umfrage/fremdsprachenkenntnisse/ +Germany DE "80,457,737" 99% "4,199,000,000,000" official German de 91% +Germany DE "80,457,737" 99% "4,199,000,000,000" Greek el "305,000" +Germany DE "80,457,737" 99% "4,199,000,000,000" Italian it 7% http://de.statista.com/statistik/daten/studie/1138/umfrage/fremdsprachenkenntnisse/ +Germany DE "80,457,737" 99% "4,199,000,000,000" Kurdish ku "533,000" +Germany DE "80,457,737" 99% "4,199,000,000,000" Low German nds 12% 5% "http://www.ethnologue.com/show_language.asp?code=nds understood by 10 million, perhaps. Figure is questionable writing pop artificially set to 5% see also: http://en.wikipedia.org/wiki/Low_German (understood by 10 million people, and native to about 3 million people all around northern Germany)" +Germany DE "80,457,737" 99% "4,199,000,000,000" Lower Sorbian dsb "7,000" 5% http://www.ethnologue.com/show_language.asp?code=dsb pop 7k. Figure is questionable writing pop artificially set to 5% see also http://en.wikipedia.org/wiki/Lower_Sorbian +Germany DE "80,457,737" 99% "4,199,000,000,000" Main-Franconian vmf 6% +Germany DE "80,457,737" 99% "4,199,000,000,000" Northern Frisian frr "10,000" http://www.ethnologue.com/language/frr +Germany DE "80,457,737" 99% "4,199,000,000,000" Palatine German pfl 1 No estimate available. +Germany DE "80,457,737" 99% "4,199,000,000,000" Polish pl "235,000" +Germany DE "80,457,737" 99% "4,199,000,000,000" Russian ru 6% http://de.statista.com/statistik/daten/studie/1138/umfrage/fremdsprachenkenntnisse/ +Germany DE "80,457,737" 99% "4,199,000,000,000" Saterland Frisian stq "1,000" +Germany DE "80,457,737" 99% "4,199,000,000,000" Spanish es 6% http://de.statista.com/statistik/daten/studie/1138/umfrage/fremdsprachenkenntnisse/ +Germany DE "80,457,737" 99% "4,199,000,000,000" Swabian swg "815,000" 5% +Germany DE "80,457,737" 99% "4,199,000,000,000" Swiss German gsw "1,890,000" 5% +Germany DE "80,457,737" 99% "4,199,000,000,000" Turkish tr "2,050,000" +Germany DE "80,457,737" 99% "4,199,000,000,000" Upper Sorbian hsb "12,700" 5% http://www.ethnologue.com/show_language.asp?code=hsb pop 13k. Figure is questionable writing pop artificially set to 5% see also http://en.wikipedia.org/wiki/Upper_Sorbian +Ghana GH "28,102,471" 72% "134,000,000,000" Abron abr 5% +Ghana GH "28,102,471" 72% "134,000,000,000" Adangme ada 3% +Ghana GH "28,102,471" 72% "134,000,000,000" official_regional Akan ak 39% +Ghana GH "28,102,471" 72% "134,000,000,000" official English en 21% "https://www.cia.gov/library/publications/the-world-factbook/geos/gh.html English official in education, 36.1% 2000 census" +Ghana GH "28,102,471" 72% "134,000,000,000" official_regional Ewe ee 11% +Ghana GH "28,102,471" 72% "134,000,000,000" Frafra gur 3.5% +Ghana GH "28,102,471" 72% "134,000,000,000" Fulah ff 1 No estimate available. +Ghana GH "28,102,471" 72% "134,000,000,000" Fulah (Adlam) ff_Adlm 1 No estimate available. +Ghana GH "28,102,471" 72% "134,000,000,000" official_regional Ga gaa "800,000" +Ghana GH "28,102,471" 72% "134,000,000,000" Hausa ha "243,000" http://en.wikipedia.org/wiki/Hausa_people +Ghana GH "28,102,471" 72% "134,000,000,000" Nzima nzi "286,000" http://www.ethnologue.com/show_language.asp?code=saf no other info available for now +Ghana GH "28,102,471" 72% "134,000,000,000" Safaliba saf "4,000" http://www.ethnologue.com/show_language.asp?code=saf no other info available for now +Gibraltar GI "29,461" 80% "2,044,000,000" official English en 80% "https://www.cia.gov/cia/publications/factbook/geos/gi.html English official, the figure is derived from literacy * lang pop" +Gibraltar GI "29,461" 80% "2,044,000,000" Spanish es 50% "https://www.cia.gov/cia/publications/factbook/geos/gi.html English official, the figure is derived from literacy * lang pop" +Greece GR "10,761,523" 97% "299,300,000,000" Albanian sq "10,000" +Greece GR "10,761,523" 97% "299,300,000,000" Bulgarian bg "29,100" +Greece GR "10,761,523" 97% "299,300,000,000" English en 51% +Greece GR "10,761,523" 97% "299,300,000,000" French fr 9% +Greece GR "10,761,523" 97% "299,300,000,000" German de 5% +Greece GR "10,761,523" 97% "299,300,000,000" official Greek el 99% https://www.cia.gov/library/publications/the-world-factbook/geos/gr.html +Greece GR "10,761,523" 97% "299,300,000,000" Macedonian mk "175,000" +Greece GR "10,761,523" 97% "299,300,000,000" Pontic pnt 3.7% +Greece GR "10,761,523" 97% "299,300,000,000" Tsakonian tsd 200 +Greece GR "10,761,523" 97% "299,300,000,000" Turkish tr "125,000" +Greenland GL "57,691" 100% "2,413,000,000" Danish da "7,830" +Greenland GL "57,691" 100% "2,413,000,000" official Kalaallisut kl 84% +Grenada GD "112,207" 96% "1,634,000,000" official English en 96% https://www.cia.gov/cia/publications/factbook/geos/gj.html English official; the figure is derived from literacy * lang pop +Guadeloupe GP "452,776" 90% "3,513,000,000" official French fr 90% http://www.ethnologue.com/show_country.asp?name=GP French official; the figure is derived from literacy * lang pop +Guam GU "167,772" 99% "5,793,000,000" official Chamorro ch 22% +Guam GU "167,772" 99% "5,793,000,000" de_facto_official English en 91% +Guatemala GT "16,581,273" 76% "138,100,000,000" official_regional Kʼicheʼ quc 7% http://en.wikipedia.org/wiki/K'iche'_language +Guatemala GT "16,581,273" 76% "138,100,000,000" official Spanish es 93% http://en.wikipedia.org/wiki/Guatemala#Language https://www.cia.gov/cia/publications/factbook/geos/gt.html Spanish official +Guernsey GG "66,697" 100% "3,465,000,000" official English en 100% +Guinea GN "11,855,411" 41% "27,970,000,000" official French fr 29% No figures found for use of French. Used literacy 29.5% times population to get the writing pop; French is the only official language. +Guinea GN "11,855,411" 41% "27,970,000,000" Fulah ff 26% +Guinea GN "11,855,411" 41% "27,970,000,000" Fulah (Adlam) ff_Adlm 1 No Data Available at present. +Guinea GN "11,855,411" 41% "27,970,000,000" Kpelle kpe 3.8% +Guinea GN "11,855,411" 41% "27,970,000,000" Mandingo (N’Ko) man_Nkoo 23% +Guinea GN "11,855,411" 41% "27,970,000,000" N’Ko nqo 5% No figures available for this language. Estimating at 5%. +Guinea GN "11,855,411" 41% "27,970,000,000" Susu sus 11% +Guinea-Bissau GW "1,833,247" 55% "3,171,000,000" Fulah ff 1 No estimate available. +Guinea-Bissau GW "1,833,247" 55% "3,171,000,000" Fulah (Adlam) ff_Adlm 1 No estimate available. +Guinea-Bissau GW "1,833,247" 55% "3,171,000,000" Mankanya knf "47,900" http://www.ethnologue.com/18/language/knf/ +Guinea-Bissau GW "1,833,247" 55% "3,171,000,000" official Portuguese pt 100% https://www.cia.gov/cia/publications/factbook/geos/pu.html Many minor langs; Portuguese official +Guyana GY "740,685" 92% "6,301,000,000" official English en 100% +Haiti HT "10,788,440" 49% "19,970,000,000" official French fr 4.7% 100% http://www.ethnologue.com/show_language.asp?code=fra 400k 2nd language speakers +Haiti HT "10,788,440" 49% "19,970,000,000" official Haitian Creole ht 81% "http://www.ethnologue.com/show_language.asp?code=hat Most of the population uses Creole; see also http://www.country-studies.com/haiti/creole,-literacy,-and-education.html http://en.wikipedia.org/wiki/French_language#Haiti" +Heard & McDonald Islands HM 1 99% "53,170" Unknown language und 1 100% "https://www.cia.gov/cia/publications/factbook/geos/hm.html Uninhabited, barren, sub-Antarctic islands" +Honduras HN "9,182,766" 85% "46,300,000,000" English en "40,400" +Honduras HN "9,182,766" 85% "46,300,000,000" official Spanish es 78% +Hong Kong SAR China HK "7,213,338" 94% "455,900,000,000" Cantonese yue 90% https://www.cia.gov/library/publications/the-world-factbook/geos/hk.html and https://www.ethnologue.com/language/yue +Hong Kong SAR China HK "7,213,338" 94% "455,900,000,000" Chinese zh 5% Hans literacy is unknown; set to 5% artificially pending better or official figures. +Hong Kong SAR China HK "7,213,338" 94% "455,900,000,000" official Chinese (Traditional) zh_Hant 95% +Hong Kong SAR China HK "7,213,338" 94% "455,900,000,000" official English en 51% +Hungary HU "9,825,704" 99% "289,600,000,000" Croatian hr "31,300" +Hungary HU "9,825,704" 99% "289,600,000,000" English en 20% +Hungary HU "9,825,704" 99% "289,600,000,000" French fr 3% +Hungary HU "9,825,704" 99% "289,600,000,000" German de 18% +Hungary HU "9,825,704" 99% "289,600,000,000" official Hungarian hu 100% +Hungary HU "9,825,704" 99% "289,600,000,000" Romanian ro "97,300" +Hungary HU "9,825,704" 99% "289,600,000,000" Slovak sk "11,300" +Hungary HU "9,825,704" 99% "289,600,000,000" Slovenian sl "4,980" +Iceland IS "343,518" 99% "18,180,000,000" Danish da "2,250" +Iceland IS "343,518" 99% "18,180,000,000" official Icelandic is 100% http://en.wikipedia.org/wiki/Iceland - Icelandic official +India IN "1,296,834,042" 63% "9,474,000,000,000" Ao Naga njo "294,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Assamese as "16,900,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Awadhi awa "24,000,000" 5% +India IN "1,296,834,042" 63% "9,474,000,000,000" Badaga bfq "294,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Bagheli bfy "475,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Balti bft "80,400" +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Bangla bn 8.1% https://www.cia.gov/library/publications/the-world-factbook/geos/in.html +India IN "1,296,834,042" 63% "9,474,000,000,000" Bateri btv "33,900" +India IN "1,296,834,042" 63% "9,474,000,000,000" Bhilali bhi "1,190,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Bhili bhb "1,560,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Bhojpuri bho "29,400,000" 30% +India IN "1,296,834,042" 63% "9,474,000,000,000" Bishnupriya bpy "87,600" +India IN "1,296,834,042" 63% "9,474,000,000,000" Bodo brx "1,810,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Braj bra "52,900" +India IN "1,296,834,042" 63% "9,474,000,000,000" Chakma ccp "361,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Chhattisgarhi hne "13,900,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Deccan dcc "12,900,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Divehi dv "4,500" +India IN "1,296,834,042" 63% "9,474,000,000,000" Dogri doi "2,530,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Dzongkha dz "3,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" official English en 19% http://www.ciil.org/Main/Announcement/MBE_Programme/paper/paper2.htm http://www.censusindia.net/cendat/datatable26.html +India IN "1,296,834,042" 63% "9,474,000,000,000" Garhwali gbm "3,500,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Garo grt "690,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Goan Konkani gom "4,100,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Gondi gon "3,170,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Gujarati gu 4.5% https://www.cia.gov/library/publications/the-world-factbook/geos/in.html +India IN "1,296,834,042" 63% "9,474,000,000,000" Hadothi hoj "1,060,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Haryanvi bgc "15,600,000" 55% http://en.wikipedia.org/wiki/Haryanvi http://www.indianetzone.com/7/haryanvi.htm little literature mostly folksongs; writers use std Hindi; claim of 55% literacy +India IN "1,296,834,042" 63% "9,474,000,000,000" official Hindi hi 41% "http://www.censusindia.net/ Figure for Hindi includes 2nd language users, India Census data." +India IN "1,296,834,042" 63% "9,474,000,000,000" Ho hoc "1,290,000" https://www.cia.gov/library/publications/the-world-factbook/geos/in.html +India IN "1,296,834,042" 63% "9,474,000,000,000" Kachhi kfr "968,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Kanauji bjj "7,200,000" 60% +India IN "1,296,834,042" 63% "9,474,000,000,000" Kangri xnr "2,040,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Kannada kn 3.7% https://www.cia.gov/library/publications/the-world-factbook/geos/in.html +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Kashmiri ks "5,280,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Khamti kht "8,880" +India IN "1,296,834,042" 63% "9,474,000,000,000" Khandesi khn "1,900,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Khasi kha "1,040,000" 29% +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Konkani kok "4,810,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Kumaoni kfy "2,830,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Kurukh kru "2,470,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Lahnda lah "32,900" +India IN "1,296,834,042" 63% "9,474,000,000,000" Lambadi lmn "3,440,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Lepcha lep "45,600" +India IN "1,296,834,042" 63% "9,474,000,000,000" Limbu lif "33,700" +India IN "1,296,834,042" 63% "9,474,000,000,000" Magahi mag "15,600,000" 30% http://www.ethnologue.com/show_language.asp?code=mag +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Maithili mai "15,500,000" https://www.cia.gov/library/publications/the-world-factbook/geos/in.html +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Malayalam ml 3.2% https://www.cia.gov/library/publications/the-world-factbook/geos/in.html +India IN "1,296,834,042" 63% "9,474,000,000,000" Manipuri mni "1,490,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Marathi mr 7% https://www.cia.gov/library/publications/the-world-factbook/geos/in.html +India IN "1,296,834,042" 63% "9,474,000,000,000" Marwari mwr "15,600,000" http://www.ethnologue.com/show_language.asp?code=rwr +India IN "1,296,834,042" 63% "9,474,000,000,000" Mewari mtr "1,260,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Mewati wtm "6,000,000" 25% +India IN "1,296,834,042" 63% "9,474,000,000,000" Munda unx "623,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Mundari unr "1,220,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Nepali ne "7,200,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Nimadi noe "1,630,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Odia or 3.2% https://www.cia.gov/library/publications/the-world-factbook/geos/in.html +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Punjabi pa "36,300,000" https://www.cia.gov/library/publications/the-world-factbook/geos/in.html +India IN "1,296,834,042" 63% "9,474,000,000,000" Rajasthani raj "1,330,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Rangpuri rkt "5,640,000" 20% http://www.ethnologue.com/show_language.asp?code=rkt language also called Kamta in India +India IN "1,296,834,042" 63% "9,474,000,000,000" Riang [India] ria "167,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Sadri sck "2,360,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Sanskrit sa "16,000" http://en.wikipedia.org/wiki/Sanskrit - 14k reported as native. Taught as elective subject in grades 5-8; not widely spoken as primary communication. +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Santali sat "7,150,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Saurashtra saz "372,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Shekhawati swv "3,610,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Sindhi sd "3,380,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Sindhi (Devanagari) sd_Deva "338,000" http://www.lmp.ucla.edu/Profile.aspx?menu=004&LangID=201 - Not widely used; set to 10%. +India IN "1,296,834,042" 63% "9,474,000,000,000" Sirmauri srx "452,000" "http://www.himachalonline.com/temp/languages.htm Sirmauri (srx) Mahasui = Himachali, Pahari, Sirmouri, Sirmuri" +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Tamil ta 5.9% https://www.cia.gov/library/publications/the-world-factbook/geos/in.html +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Telugu te 7.2% https://www.cia.gov/library/publications/the-world-factbook/geos/in.html +India IN "1,296,834,042" 63% "9,474,000,000,000" Tibetan bo "149,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Tulu tcy "1,940,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" official_regional Urdu ur 5% https://www.cia.gov/library/publications/the-world-factbook/geos/in.html +India IN "1,296,834,042" 63% "9,474,000,000,000" Waddar wbq "2,320,000" +India IN "1,296,834,042" 63% "9,474,000,000,000" Wagdi wbr "1,940,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Achinese ace "3,620,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Balinese ban "4,700,000" 10% http://yamiproject.cs.pu.edu.tw/yami/conference/paper/015.pdf http://www.statemaster.com/encyclopedia/Balinese-language widely used; taught in school as a main lang +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Banjar bjn "3,870,000" 10% +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Batak Toba bbc "2,410,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Betawi bew "5,540,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Buginese bug "4,220,000" 10% "http://en.wikipedia.org/wiki/Buginese_language widely used in its cultural areas, often in Latin script" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Chinese (Traditional) zh_Hant "2,410,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Gayo gay "311,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Gorontalo gor "1,090,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" official Indonesian id 64% +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Javanese jv 34% 10% Indonesia high literacy; low written use of local languages +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Kerinci kvr "362,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Komering kge "844,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Lampung Api ljp "1,810,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Madurese mad 6.3% 40% +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Makasar mak "1,930,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Malay (Arabic) ms_Arab 4.6% +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Mandar mdr "241,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Mentawai mwv "64,100" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Minangkabau min "7,840,000" 10% +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Ngaju nij "965,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Rejang rej "1,200,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Sangir sxn "241,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Sasak sas "2,540,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Selayar sly "142,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Sundanese su 12% https://en.wikipedia.org/wiki/Sundanese_language recognized in West Java +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Tae' rob "301,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Tolaki lbw "339,000" +Indonesia ID "262,787,403" 93% "3,250,000,000,000" Uab Meto aoz "706,000" +Iran IR "83,024,745" 85% "1,640,000,000,000" Arabic ar "1,660,000" +Iran IR "83,024,745" 85% "1,640,000,000,000" Armenian hy "201,000" +Iran IR "83,024,745" 85% "1,640,000,000,000" Azerbaijani (Arabic) az_Arab 24% +Iran IR "83,024,745" 85% "1,640,000,000,000" Bakhtiari bqi "1,180,000" +Iran IR "83,024,745" 85% "1,640,000,000,000" Baluchi bal "1,660,000" +Iran IR "83,024,745" 85% "1,640,000,000,000" Central Kurdish ckb 3.9% www.amar.org.ir +Iran IR "83,024,745" 85% "1,640,000,000,000" Domari rmt "1,570,000" 1% Mainly unwritten +Iran IR "83,024,745" 85% "1,640,000,000,000" Georgian ka "58,800" +Iran IR "83,024,745" 85% "1,640,000,000,000" Gilaki glk 4.6% +Iran IR "83,024,745" 85% "1,640,000,000,000" Kazakh (Arabic) kk_Arab "3,000" "http://en.wikipedia.org/wiki/Kazakh_language - the script is an assumption, needs a reference" +Iran IR "83,024,745" 85% "1,640,000,000,000" Laki lki "631,000" www.amar.org.ir +Iran IR "83,024,745" 85% "1,640,000,000,000" Mazanderani mzn 5% +Iran IR "83,024,745" 85% "1,640,000,000,000" Northern Luri lrc "1,770,000" 10% +Iran IR "83,024,745" 85% "1,640,000,000,000" Parsi-Dari prd "412,000" +Iran IR "83,024,745" 85% "1,640,000,000,000" Pashto ps "134,000" +Iran IR "83,024,745" 85% "1,640,000,000,000" official Persian fa 75% +Iran IR "83,024,745" 85% "1,640,000,000,000" Southern Kurdish sdh 3.7% http://www.ethnologue.com/language/sdh +Iran IR "83,024,745" 85% "1,640,000,000,000" Southern Luri luz "1,020,000" +Iran IR "83,024,745" 85% "1,640,000,000,000" Turkmen tk "2,350,000" +Iran IR "83,024,745" 85% "1,640,000,000,000" Western Balochi bgn "464,000" 5% http://www.ethnologue.com/language/bgn low literacy +Iran IR "83,024,745" 85% "1,640,000,000,000" Zoroastrian Dari gbz "8,000" +Iraq IQ "40,194,216" 79% "649,300,000,000" official Arabic ar 68% +Iraq IQ "40,194,216" 79% "649,300,000,000" official_regional Azerbaijani (Arabic) az_Arab "740,000" +Iraq IQ "40,194,216" 79% "649,300,000,000" official_regional Central Kurdish ckb 20% "https://www.cia.gov/library/publications/the-world-factbook/geos/iz.html Lang pop est, CIA factbook 15-20% country pop" +Iraq IQ "40,194,216" 79% "649,300,000,000" English en 35% +Iraq IQ "40,194,216" 79% "649,300,000,000" Northern Luri lrc "247,000" http://www.ethnologue.com/language/lrc +Iraq IQ "40,194,216" 79% "649,300,000,000" Persian fa "351,000" +Iraq IQ "40,194,216" 79% "649,300,000,000" Syriac syr "200,000" http://www.ethnologue.com/show_language.asp?code=cld syr is a macrolang containing cld and aii) +Ireland IE "5,068,050" 99% "353,300,000,000" official English en 98% http://ec.europa.eu/public_opinion/archives/ebs/ebs_243_en.pdf +Ireland IE "5,068,050" 99% "353,300,000,000" French fr 17% +Ireland IE "5,068,050" 99% "353,300,000,000" official Irish ga 22% http://www.cso.ie/census/documents/Final%20Principal%20Demographic%20Results%202006.pdf +Isle of Man IM "89,407" 99% "6,792,000,000" official English en 100% +Isle of Man IM "89,407" 99% "6,792,000,000" official Manx gv "1,690" +Israel IL "8,424,904" 97% "317,100,000,000" Amharic am "49,600" +Israel IL "8,424,904" 97% "317,100,000,000" official Arabic ar 20% +Israel IL "8,424,904" 97% "317,100,000,000" English en 85% +Israel IL "8,424,904" 97% "317,100,000,000" official Hebrew he 100% +Israel IL "8,424,904" 97% "317,100,000,000" Hungarian hu "86,700" +Israel IL "8,424,904" 97% "317,100,000,000" Ladino lad "108,000" http://www.ethnologue.com/language/lad +Israel IL "8,424,904" 97% "317,100,000,000" Malayalam ml "8,000" http://www.jewish-languages.org/jewish-malayalam.html +Israel IL "8,424,904" 97% "317,100,000,000" Polish pl "124,000" +Israel IL "8,424,904" 97% "317,100,000,000" Romanian ro 3.7% +Israel IL "8,424,904" 97% "317,100,000,000" Russian ru 11% +Israel IL "8,424,904" 97% "317,100,000,000" Tigrinya ti "10,000" +Israel IL "8,424,904" 97% "317,100,000,000" Yiddish yi "253,000" +Italy IT "62,246,674" 99% "2,317,000,000,000" Catalan ca "21,600" +Italy IT "62,246,674" 99% "2,317,000,000,000" Croatian hr "3,500" +Italy IT "62,246,674" 99% "2,317,000,000,000" Emilian egl "31,100" Estimated. See http://en.wikipedia.org/wiki/Emilian_language +Italy IT "62,246,674" 99% "2,317,000,000,000" English en 34% +Italy IT "62,246,674" 99% "2,317,000,000,000" official_regional French fr 6.3% Aosta Valley +Italy IT "62,246,674" 99% "2,317,000,000,000" recognized Friulian fur "37,400" 5% 5% mainly spoken +Italy IT "62,246,674" 99% "2,317,000,000,000" recognized German de "996,000" co-official in South Tyrol +Italy IT "62,246,674" 99% "2,317,000,000,000" Greek el "21,600" +Italy IT "62,246,674" 99% "2,317,000,000,000" official Italian it 95% +Italy IT "62,246,674" 99% "2,317,000,000,000" Ligurian lij "535,000" +Italy IT "62,246,674" 99% "2,317,000,000,000" Lombard lmo "18,600" +Italy IT "62,246,674" 99% "2,317,000,000,000" Neapolitan nap "603,000" 5% 5% writing pop estimated in absence of other data; literacy rate reported at 12% +Italy IT "62,246,674" 99% "2,317,000,000,000" Piedmontese pms "6,170" +Italy IT "62,246,674" 99% "2,317,000,000,000" Romagnol rgn 1 No estimate available. +Italy IT "62,246,674" 99% "2,317,000,000,000" recognized Sardinian sc "1,060,000" +Italy IT "62,246,674" 99% "2,317,000,000,000" Sassarese Sardinian sdc "107,000" +Italy IT "62,246,674" 99% "2,317,000,000,000" Sicilian scn "511,000" 5% 5% writing pop estimated in absence of other data; literacy rate reported at ~8% +Italy IT "62,246,674" 99% "2,317,000,000,000" recognized Slovenian sl "108,000" in Trieste and Gorizia +Italy IT "62,246,674" 99% "2,317,000,000,000" Venetian vec "803,000" http://www.orbilat.com/Languages/Venetan/Venetan.html - est 50% pop of Veneto area +Jamaica JM "2,812,090" 87% "26,060,000,000" official English en 98% +Jamaica JM "2,812,090" 87% "26,060,000,000" Jamaican Creole English jam 95% +Japan JP "126,168,156" 99% "5,443,000,000,000" Central Okinawan ryu "971,000" 5% 5% writing pop estimated in absence of other data; Japanese is lingua franca here +Japan JP "126,168,156" 99% "5,443,000,000,000" official Japanese ja 95% +Japan JP "126,168,156" 99% "5,443,000,000,000" Korean ko "661,000" +Jersey JE "99,602" 99% "5,569,000,000" official English en 95% +Jordan JO "10,458,413" 96% "89,000,000,000" official Arabic ar 100% "http://memory.loc.gov/cgi-bin/query/r?frd/cstdy:@field(DOCID+jo0039) says: All Jordanians, regardless of ethnicity or religion, speak Arabic, the official language of Jordan" +Jordan JO "10,458,413" 96% "89,000,000,000" English en 45% "http://memory.loc.gov/cgi-bin/query/r?frd/cstdy:@field(DOCID+jo0039) says: All Jordanians, regardless of ethnicity or religion, speak Arabic, the official language of Jordan" +Kazakhstan KZ "18,744,548" 100% "478,600,000,000" English en 15% +Kazakhstan KZ "18,744,548" 100% "478,600,000,000" German de 6.4% +Kazakhstan KZ "18,744,548" 100% "478,600,000,000" official Kazakh kk 64% https://www.cia.gov/cia/publications/factbook/geos/kz.html CIA Factbook entry on Kazakhstan +Kazakhstan KZ "18,744,548" 100% "478,600,000,000" official Russian ru 72% https://www.cia.gov/cia/publications/factbook/geos/kz.html CIA Factbook entry on Kazakhstan http://windowoneurasia2.blogspot.com/2013/12/window-on-eurasia-de-russianization.html http://www.stoletie.ru/vzglyad/derusifikacija_nabirajet_oboroty_934.htm http://www.stoletie.ru/vzglyad/derusifikacija_nabirajet_oboroty_934.htm +Kazakhstan KZ "18,744,548" 100% "478,600,000,000" Uyghur (Cyrillic) ug_Cyrl "375,000" +Kenya KE "48,397,527" 87% "163,700,000,000" Arabic ar "22,500" +Kenya KE "48,397,527" 87% "163,700,000,000" Embu ebu "739,000" 1% +Kenya KE "48,397,527" 87% "163,700,000,000" official English en 19% +Kenya KE "48,397,527" 87% "163,700,000,000" Gujarati gu "5,000" +Kenya KE "48,397,527" 87% "163,700,000,000" Gusii guz 4.9% +Kenya KE "48,397,527" 87% "163,700,000,000" Kalenjin kln 7.6% +Kenya KE "48,397,527" 87% "163,700,000,000" Kamba kam 7.6% +Kenya KE "48,397,527" 87% "163,700,000,000" Kikuyu ki 17% +Kenya KE "48,397,527" 87% "163,700,000,000" Luo luo 9.8% +Kenya KE "48,397,527" 87% "163,700,000,000" Luyia luy 11% +Kenya KE "48,397,527" 87% "163,700,000,000" Masai mas "753,000" 50% +Kenya KE "48,397,527" 87% "163,700,000,000" Meru mer 4% +Kenya KE "48,397,527" 87% "163,700,000,000" Oromo om "227,000" +Kenya KE "48,397,527" 87% "163,700,000,000" Pökoot pko "336,000" 1% +Kenya KE "48,397,527" 87% "163,700,000,000" Punjabi pa "10,000" +Kenya KE "48,397,527" 87% "163,700,000,000" Samburu saq "222,000" 1% http://www.ethnologue.com/show_language.asp?code=saq Many also use Swahili +Kenya KE "48,397,527" 87% "163,700,000,000" Somali so "627,000" +Kenya KE "48,397,527" 87% "163,700,000,000" official Swahili sw 66% "http://en.wikipedia.org/wiki/Swahili_language - Most educated Kenyans are able to communicate fluently in Swahili, since it is a compulsory subject in school" +Kenya KE "48,397,527" 87% "163,700,000,000" Taita dav "397,000" 5% +Kenya KE "48,397,527" 87% "163,700,000,000" Teso teo "356,000" +Kiribati KI "109,367" 90% "227,000,000" official English en 100% http://en.wikipedia.org/wiki/Kiribati English official; Kiribati widespread +Kiribati KI "109,367" 90% "227,000,000" official Gilbertese gil 60% +Kosovo XK "1,907,592" 92% "19,600,000,000" official Albanian sq 92% +Kosovo XK "1,907,592" 92% "19,600,000,000" Gheg Albanian aln 74% http://www.ethnologue.com/language/aln +Kosovo XK "1,907,592" 92% "19,600,000,000" official Serbian sr 5% Information on the Latin/Cyrillic script percentages for Kosovo not currently found. +Kosovo XK "1,907,592" 92% "19,600,000,000" official Serbian (Latin) sr_Latn 5% Information on the Latin/Cyrillic script percentages for Kosovo not currently found. +Kuwait KW "2,916,467" 94% "289,700,000,000" official Arabic ar 100% +Kyrgyzstan KG "5,849,296" 99% "23,150,000,000" official Kyrgyz ky 48% +Kyrgyzstan KG "5,849,296" 99% "23,150,000,000" official Russian ru 36% http://windowoneurasia2.blogspot.com/2013/12/window-on-eurasia-de-russianization.html http://www.stoletie.ru/vzglyad/derusifikacija_nabirajet_oboroty_934.htm +Laos LA "7,234,171" 73% "49,340,000,000" Khmu kjg 5.8% http://en.wikipedia.org/wiki/Khmu_language +Laos LA "7,234,171" 73% "49,340,000,000" Kuy kdt "69,300" http://en.wikipedia.org/wiki/Kuy_language +Laos LA "7,234,171" 73% "49,340,000,000" official Lao lo 69% +Latvia LV "1,923,559" 100% "54,020,000,000" English en 46% +Latvia LV "1,923,559" 100% "54,020,000,000" Latgalian ltg 8.9% +Latvia LV "1,923,559" 100% "54,020,000,000" official Latvian lv 61% +Latvia LV "1,923,559" 100% "54,020,000,000" Russian ru 38% +Lebanon LB "6,100,075" 90% "88,250,000,000" official Arabic ar 86% +Lebanon LB "6,100,075" 90% "88,250,000,000" Armenian hy 5.2% +Lebanon LB "6,100,075" 90% "88,250,000,000" English en 40% +Lebanon LB "6,100,075" 90% "88,250,000,000" French fr "22,300" +Lebanon LB "6,100,075" 90% "88,250,000,000" Kurdish (Arabic) ku_Arab "101,000" +Lesotho LS "1,962,461" 90% "6,656,000,000" official English en 27% "http://www.ethnologue.com/show_country.asp?name=LS Lesotho English-using pop estimated at 5%, no figs available. Probably too low." +Lesotho LS "1,962,461" 90% "6,656,000,000" official Southern Sotho st 98% +Lesotho LS "1,962,461" 90% "6,656,000,000" Swati ss "46,700" +Lesotho LS "1,962,461" 90% "6,656,000,000" Xhosa xh "19,500" +Lesotho LS "1,962,461" 90% "6,656,000,000" Zulu zu 14% +Liberia LR "4,809,768" 61% "6,112,000,000" official English en 83% https://www.cia.gov/cia/publications/factbook/fields/2098.html English 20% +Liberia LR "4,809,768" 61% "6,112,000,000" Fulah ff 1 No estimate available. +Liberia LR "4,809,768" 61% "6,112,000,000" Fulah (Adlam) ff_Adlm 1 No estimate available. +Liberia LR "4,809,768" 61% "6,112,000,000" Kpelle kpe 14% +Liberia LR "4,809,768" 61% "6,112,000,000" Mende men "22,900" +Liberia LR "4,809,768" 61% "6,112,000,000" Vai vai "126,000" Vai script is the main script for this language. +Liberia LR "4,809,768" 61% "6,112,000,000" Vai (Latin) vai_Latn 1 Latin listed as being used (Scriptsource) but no pop figures available. +Libya LY "6,754,507" 90% "61,970,000,000" official Arabic ar 74% +Liechtenstein LI "38,547" 100% "4,978,000,000" official German de 100% https://www.cia.gov/cia/publications/factbook/geos/ls.html German official +Liechtenstein LI "38,547" 100% "4,978,000,000" de_facto_official Swiss German gsw 85% 5% +Liechtenstein LI "38,547" 100% "4,978,000,000" Walser wae "1,300" +Lithuania LT "2,793,284" 100% "91,470,000,000" English en 38% +Lithuania LT "2,793,284" 100% "91,470,000,000" German de 14% +Lithuania LT "2,793,284" 100% "91,470,000,000" official Lithuanian lt 86% +Lithuania LT "2,793,284" 100% "91,470,000,000" Russian ru 80% +Lithuania LT "2,793,284" 100% "91,470,000,000" Samogitian sgs 1 Estimate not available. +Luxembourg LU "605,764" 100% "62,110,000,000" English en 56% +Luxembourg LU "605,764" 100% "62,110,000,000" official French fr 87% +Luxembourg LU "605,764" 100% "62,110,000,000" official German de 63% +Luxembourg LU "605,764" 100% "62,110,000,000" official Luxembourgish lb 67% 5% "http://www.ethnologue.com/show_language.asp?code=ltz Some 99% of users are literate in French or German. For languages not customarily written, the writing population is artificially set to 5% in the absence of better information." +Luxembourg LU "605,764" 100% "62,110,000,000" Portuguese pt 16% https://en.wikipedia.org/wiki/Portuguese_Luxembourger +Macao SAR China MO "606,340" 96% "71,820,000,000" Chinese zh 5% Hans literacy is unknown; set to 5% artificially pending better or official figures. +Macao SAR China MO "606,340" 96% "71,820,000,000" official Chinese (Traditional) zh_Hant 98% +Macao SAR China MO "606,340" 96% "71,820,000,000" English en "13,900" https://www.cia.gov/library/publications/the-world-factbook/geos/mc.html and https://en.wikipedia.org/wiki/Macau +Macao SAR China MO "606,340" 96% "71,820,000,000" official Portuguese pt 5% http://en.wikipedia.org/wiki/Geographic_distribution_of_Portuguese Macao reported 5% native Portuguese speakers. +Madagascar MG "25,683,610" 65% "39,850,000,000" official English en 18% No literacy figure available for English in Madagascar; newly adopted official language; 5% is an estimate. +Madagascar MG "25,683,610" 65% "39,850,000,000" official French fr 69% +Madagascar MG "25,683,610" 65% "39,850,000,000" official Malagasy mg 90% http://www.wildmadagascar.org/overview/loc/27-minorities.html +Malawi MW "19,842,560" 75% "22,420,000,000" official English en 63% +Malawi MW "19,842,560" 75% "22,420,000,000" official Nyanja ny 63% +Malawi MW "19,842,560" 75% "22,420,000,000" Nyasa Tonga tog "194,000" +Malawi MW "19,842,560" 75% "22,420,000,000" Tumbuka tum 8.4% +Malawi MW "19,842,560" 75% "22,420,000,000" Zulu zu "66,400" +Malaysia MY "31,809,660" 93% "933,300,000,000" Banjar bjn "5,000" +Malaysia MY "31,809,660" 93% "933,300,000,000" Buginese bug "25,200" http://www.joshuaproject.net/peopctry.php?rop3=101703&rog3=MY +Malaysia MY "31,809,660" 93% "933,300,000,000" Central Dusun dtp "177,000" +Malaysia MY "31,809,660" 93% "933,300,000,000" Chinese (Traditional) zh_Hant 17% +Malaysia MY "31,809,660" 93% "933,300,000,000" English en 21% +Malaysia MY "31,809,660" 93% "933,300,000,000" Iban iba "792,000" +Malaysia MY "31,809,660" 93% "933,300,000,000" Javanese jv "379,000" +Malaysia MY "31,809,660" 93% "933,300,000,000" official Malay ms 75% +Malaysia MY "31,809,660" 93% "933,300,000,000" Malayalam ml "46,600" +Malaysia MY "31,809,660" 93% "933,300,000,000" Negeri Sembilan Malay zmi "379,000" +Malaysia MY "31,809,660" 93% "933,300,000,000" Tamil ta 4.2% +Maldives MV "392,473" 98% "6,901,000,000" official Divehi dv 94% +Mali ML "18,429,893" 33% "41,220,000,000" Arabic ar "165,000" +Mali ML "18,429,893" 33% "41,220,000,000" Bambara bm 46% +Mali ML "18,429,893" 33% "41,220,000,000" Bambara (N’Ko) bm_Nkoo "369,000" No figures available for breakdown of Latin vs. N'Ko for Bambara. The 2% figure is an estimate. +Mali ML "18,429,893" 33% "41,220,000,000" Bomu bmq "159,000" +Mali ML "18,429,893" 33% "41,220,000,000" official French fr 46% +Mali ML "18,429,893" 33% "41,220,000,000" Jenaama Bozo bze "156,000" +Mali ML "18,429,893" 33% "41,220,000,000" Kita Maninkakan mwk 5% +Mali ML "18,429,893" 33% "41,220,000,000" Koyra Chiini khq "309,000" +Mali ML "18,429,893" 33% "41,220,000,000" Koyraboro Senni ses 3.4% +Mali ML "18,429,893" 33% "41,220,000,000" Maasina Fulfulde ffm 7.7% +Mali ML "18,429,893" 33% "41,220,000,000" Soninke snk 5.9% +Mali ML "18,429,893" 33% "41,220,000,000" Tamashek tmh "387,000" +Mali ML "18,429,893" 33% "41,220,000,000" Tomo Kan Dogon dtm "206,000" +Mali ML "18,429,893" 33% "41,220,000,000" Xaasongaxango kao "185,000" +Malta MT "449,043" 92% "19,260,000,000" official English en 88% +Malta MT "449,043" 92% "19,260,000,000" French fr 11% +Malta MT "449,043" 92% "19,260,000,000" Italian it 56% http://nso.gov.mt/en/publicatons/Publications_by_Unit/Documents/C1_Living_Conditions_and_Culture_Statistics/Culture_Participation_Survey_2011.pdf +Malta MT "449,043" 92% "19,260,000,000" official Maltese mt 100% +Marshall Islands MH "75,684" 94% "196,000,000" official English en 93% +Marshall Islands MH "75,684" 94% "196,000,000" official Marshallese mh 73% +Martinique MQ "436,131" 98% "6,117,000,000" official French fr 98% +Mauritania MR "3,840,429" 59% "17,280,000,000" official Arabic ar 85% +Mauritania MR "3,840,429" 59% "17,280,000,000" French fr 17% http://www.nationsonline.org/oneworld/mauritania.htm Crude estimate based on import partner data. http://www.answers.com/topic/mauritania +Mauritania MR "3,840,429" 59% "17,280,000,000" Fulah ff 5.7% +Mauritania MR "3,840,429" 59% "17,280,000,000" Fulah (Adlam) ff_Adlm 1 No estimate available. +Mauritania MR "3,840,429" 59% "17,280,000,000" Wolof wo "10,000" +Mauritius MU "1,364,283" 89% "28,270,000,000" Bhojpuri bho 27% +Mauritius MU "1,364,283" 89% "28,270,000,000" official English en 72% http://www.chass.utoronto.ca/~cpercy/courses/6362-chiba.htm +Mauritius MU "1,364,283" 89% "28,270,000,000" official French fr 3% +Mauritius MU "1,364,283" 89% "28,270,000,000" Morisyen mfe 90% +Mauritius MU "1,364,283" 89% "28,270,000,000" Tamil ta "34,200" +Mauritius MU "1,364,283" 89% "28,270,000,000" Urdu ur 5.2% +Mayotte YT "194,000" 92% "953,600,000" Bushi buc 23% +Mayotte YT "194,000" 92% "953,600,000" Comorian swb 88% http://en.wikipedia.org/wiki/Mayotte#Languages See the 2006 language survey data for 2nd langs = Shimaore +Mayotte YT "194,000" 92% "953,600,000" official French fr 57% http://en.wikipedia.org/wiki/Mayotte#Languages See the 2006 language survey data for 2nd langs +Mayotte YT "194,000" 92% "953,600,000" Swahili sw "2,740" +Mexico MX "125,959,205" 94% "2,463,000,000,000" Central Huasteca Nahuatl nch "242,000" +Mexico MX "125,959,205" 94% "2,463,000,000,000" Central Mazahua maz "424,000" +Mexico MX "125,959,205" 94% "2,463,000,000,000" Eastern Huasteca Nahuatl nhe "496,000" +Mexico MX "125,959,205" 94% "2,463,000,000,000" English en 13% +Mexico MX "125,959,205" 94% "2,463,000,000,000" Seri sei 900 +Mexico MX "125,959,205" 94% "2,463,000,000,000" de_facto_official Spanish es 83% +Mexico MX "125,959,205" 94% "2,463,000,000,000" Western Huasteca Nahuatl nhw "485,000" +Mexico MX "125,959,205" 94% "2,463,000,000,000" Yucateco yua "848,000" +Micronesia FM "103,643" 89% "348,000,000" Chuukese chk 30% +Micronesia FM "103,643" 89% "348,000,000" official English en 57% +Micronesia FM "103,643" 89% "348,000,000" Kosraean kos "8,000" +Micronesia FM "103,643" 89% "348,000,000" Pohnpeian pon 23% +Micronesia FM "103,643" 89% "348,000,000" Ulithian uli "3,000" +Micronesia FM "103,643" 89% "348,000,000" Yapese yap "6,590" +Moldova MD "3,437,720" 99% "23,720,000,000" Bulgarian bg 9.4% +Moldova MD "3,437,720" 99% "23,720,000,000" recognized Gagauz gag 3.3% http://en.wikipedia.org/wiki/Gagauz_language +Moldova MD "3,437,720" 99% "23,720,000,000" official Romanian ro 63% +Moldova MD "3,437,720" 99% "23,720,000,000" recognized Russian ru "103,000" https://www.cia.gov/cia/publications/factbook/geos/md.html Russian 5.8%. +Moldova MD "3,437,720" 99% "23,720,000,000" recognized Ukrainian uk 14% +Monaco MC "30,727" 99% "7,672,000,000" official French fr 99% +Mongolia MN "3,103,428" 97% "39,730,000,000" Chinese zh "43,200" +Mongolia MN "3,103,428" 97% "39,730,000,000" Kazakh (Arabic) kk_Arab 7.2% "http://en.wikipedia.org/wiki/Kazakh_language - the script is an assumption, needs a reference" +Mongolia MN "3,103,428" 97% "39,730,000,000" official Mongolian mn 93% +Mongolia MN "3,103,428" 97% "39,730,000,000" Russian ru "4,000" +Mongolia MN "3,103,428" 97% "39,730,000,000" Uyghur (Cyrillic) ug_Cyrl "1,000" +Montenegro ME "614,249" 99% "11,080,000,000" Albanian sq 7.9% +Montenegro ME "614,249" 99% "11,080,000,000" Serbian sr 5% Information on the Latin/Cyrillic script percentages for Montenegro not currently found. +Montenegro ME "614,249" 99% "11,080,000,000" official Serbian (Latin) sr_Latn 100% +Montserrat MS "5,315" 97% "167,400,000" official English en "3,490" +Morocco MA "34,314,130" 67% "298,600,000,000" official Arabic ar 62% +Morocco MA "34,314,130" 67% "298,600,000,000" official Central Atlas Tamazight tzm 9.8% 25% +Morocco MA "34,314,130" 67% "298,600,000,000" English en 14% "http://www.ethnologue.com/show_country.asp?name=MA Ethnologue says 80k users of French. No other figures found yet, but this seems too low." +Morocco MA "34,314,130" 67% "298,600,000,000" de_facto_official French fr 20% "http://www.ethnologue.com/show_country.asp?name=MA Ethnologue says 80k users of French. No other figures found yet, but this seems too low." +Morocco MA "34,314,130" 67% "298,600,000,000" Moroccan Arabic ary 87% +Morocco MA "34,314,130" 67% "298,600,000,000" Riffian rif 4.9% 5% +Morocco MA "34,314,130" 67% "298,600,000,000" Riffian (Latin) rif_Latn 4.9% 5% +Morocco MA "34,314,130" 67% "298,600,000,000" Spanish es "22,400" +Morocco MA "34,314,130" 67% "298,600,000,000" Standard Moroccan Tamazight zgh 22% http://unicode.org/cldr/trac/attachment/ticket/5887/zgh-ISO639-2-certif.pdf +Morocco MA "34,314,130" 67% "298,600,000,000" Tachelhit shi 8.7% +Morocco MA "34,314,130" 67% "298,600,000,000" Tachelhit (Latin) shi_Latn 8.7% "http://www.ethnologue.com/show_language.asp?code=shi Latin is not shown as being used, rather Arabic" +Mozambique MZ "27,233,789" 56% "37,090,000,000" Lomwe ngl 6.8% +Mozambique MZ "27,233,789" 56% "37,090,000,000" Makhuwa vmw 13% +Mozambique MZ "27,233,789" 56% "37,090,000,000" Makhuwa-Meetto mgh 4.5% http://www.ethnologue.com/language/mgh but no literacy data +Mozambique MZ "27,233,789" 56% "37,090,000,000" Ndau ndc 9.9% +Mozambique MZ "27,233,789" 56% "37,090,000,000" Nyanja ny "710,000" +Mozambique MZ "27,233,789" 56% "37,090,000,000" official Portuguese pt 27% +Mozambique MZ "27,233,789" 56% "37,090,000,000" Ronga rng 3.4% +Mozambique MZ "27,233,789" 56% "37,090,000,000" Sena seh 4.6% +Mozambique MZ "27,233,789" 56% "37,090,000,000" Swahili sw "9,230" +Mozambique MZ "27,233,789" 56% "37,090,000,000" Tsonga ts 7.9% +Mozambique MZ "27,233,789" 56% "37,090,000,000" Yao yao "641,000" +Mozambique MZ "27,233,789" 56% "37,090,000,000" Zulu zu "1,800" +Myanmar (Burma) MM "55,622,506" 93% "329,800,000,000" official Burmese my 64% +Myanmar (Burma) MM "55,622,506" 93% "329,800,000,000" Kachin kac "945,000" +Myanmar (Burma) MM "55,622,506" 93% "329,800,000,000" Khamti kht "4,240" +Myanmar (Burma) MM "55,622,506" 93% "329,800,000,000" Mon mnw "828,000" +Myanmar (Burma) MM "55,622,506" 93% "329,800,000,000" Shan shn 6.4% +Namibia NA "2,533,224" 89% "26,600,000,000" Afrikaans af 75% "https://www.cia.gov/library/publications/the-world-factbook/geos/wa.html most of population use Afrikaans commonly, about 89% literacy" +Namibia NA "2,533,224" 89% "26,600,000,000" official English en 7% +Namibia NA "2,533,224" 89% "26,600,000,000" German de "22,800" +Namibia NA "2,533,224" 89% "26,600,000,000" Herero hz 9.1% +Namibia NA "2,533,224" 89% "26,600,000,000" Kuanyama kj 35% +Namibia NA "2,533,224" 89% "26,600,000,000" Nama naq 11% http://www.ethnologue.com/show_language.asp?code=naq Used in schools up to University. +Namibia NA "2,533,224" 89% "26,600,000,000" Ndonga ng 21% +Namibia NA "2,533,224" 89% "26,600,000,000" Tswana tn "14,200" +Nauru NR "9,692" 99% "160,000,000" official English en "9,390" +Nauru NR "9,692" 99% "160,000,000" official Nauru na "6,890" http://en.wikipedia.org/wiki/Nauru_language almost all speakers bilingual in English +Nepal NP "29,717,587" 57% "79,190,000,000" Awadhi awa "661,000" +Nepal NP "29,717,587" 57% "79,190,000,000" Bagheli bfy "161,000" +Nepal NP "29,717,587" 57% "79,190,000,000" Bangla bn "27,800" +Nepal NP "29,717,587" 57% "79,190,000,000" Bantawa bap "438,000" +Nepal NP "29,717,587" 57% "79,190,000,000" Bhojpuri bho 6.8% +Nepal NP "29,717,587" 57% "79,190,000,000" Dangaura Tharu thl "590,000" +Nepal NP "29,717,587" 57% "79,190,000,000" Dotyali dty "757,000" https://en.wikipedia.org/wiki/Doteli_language +Nepal NP "29,717,587" 57% "79,190,000,000" Eastern Gurung ggn "123,000" +Nepal NP "29,717,587" 57% "79,190,000,000" Eastern Magar mgp "341,000" +Nepal NP "29,717,587" 57% "79,190,000,000" Eastern Tamang taj "892,000" +Nepal NP "29,717,587" 57% "79,190,000,000" English en "892,000" +Nepal NP "29,717,587" 57% "79,190,000,000" Gurung gvr "84,900" +Nepal NP "29,717,587" 57% "79,190,000,000" Hindi hi "124,000" +Nepal NP "29,717,587" 57% "79,190,000,000" Jumli jml 3.2% +Nepal NP "29,717,587" 57% "79,190,000,000" Kathoriya Tharu tkt "70,800" +Nepal NP "29,717,587" 57% "79,190,000,000" Kochila Tharu thq "304,000" +Nepal NP "29,717,587" 57% "79,190,000,000" Lepcha lep "2,830" +Nepal NP "29,717,587" 57% "79,190,000,000" Limbu lif "337,000" +Nepal NP "29,717,587" 57% "79,190,000,000" Maithili mai 11% +Nepal NP "29,717,587" 57% "79,190,000,000" Mundari (Devanagari) unr_Deva "5,700" +Nepal NP "29,717,587" 57% "79,190,000,000" official Nepali ne 44% +Nepal NP "29,717,587" 57% "79,190,000,000" Newari new 3.3% +Nepal NP "29,717,587" 57% "79,190,000,000" Rajbanshi rjs "130,000" 67% http://www.ethnologue.com/show_language.asp?code=rjs +Nepal NP "29,717,587" 57% "79,190,000,000" Rana Tharu thr "359,000" +Nepal NP "29,717,587" 57% "79,190,000,000" Sherpa xsr "154,000" +Nepal NP "29,717,587" 57% "79,190,000,000" Southwestern Tamang tsf "128,000" +Nepal NP "29,717,587" 57% "79,190,000,000" Thulung tdh "35,300" +Nepal NP "29,717,587" 57% "79,190,000,000" Tibetan bo "70,800" +Nepal NP "29,717,587" 57% "79,190,000,000" Western Magar mrd "248,000" +Nepal NP "29,717,587" 57% "79,190,000,000" Western Tamang tdg "380,000" +Netherlands NL "17,151,228" 99% "924,400,000,000" official Dutch nl 100% "https://www.cia.gov/cia/publications/factbook/geos/nl.html Used CIA literacy figure times population, added 'Vlaams' population" +Netherlands NL "17,151,228" 99% "924,400,000,000" English en 90% http://en.wikipedia.org/wiki/List_of_countries_by_English-speaking_population The figure is from Wikipedia article on http://en.wikipedia.org/wiki/List_of_countries_by_English-speaking_population The figure is from Wikipedia article on English-speaking populations +Netherlands NL "17,151,228" 99% "924,400,000,000" French fr 29% +Netherlands NL "17,151,228" 99% "924,400,000,000" German de 71% 5% +Netherlands NL "17,151,228" 99% "924,400,000,000" Gronings gos 3.6% 5% +Netherlands NL "17,151,228" 99% "924,400,000,000" Indonesian id "315,000" +Netherlands NL "17,151,228" 99% "924,400,000,000" Limburgish li 5.5% 5% "http://www.ethnologue.com/show_language.asp?code=lim Nearly all speakers are literate in a 2nd language. For languages not customarily written, the writing population is artificially set to 5%" +Netherlands NL "17,151,228" 99% "924,400,000,000" Low German nds 11% 5% +Netherlands NL "17,151,228" 99% "924,400,000,000" Riffian (Latin) rif_Latn "211,000" +Netherlands NL "17,151,228" 99% "924,400,000,000" Turkish tr "202,000" +Netherlands NL "17,151,228" 99% "924,400,000,000" official_regional Western Frisian fy 4.3% +Netherlands NL "17,151,228" 99% "924,400,000,000" Zeelandic zea "232,000" +New Caledonia NC "282,754" 96% "11,110,000,000" official French fr 96% +New Zealand NZ "4,545,627" 99% "189,000,000,000" de_facto_official English en 98% https://www.cia.gov/library/publications/the-world-factbook/geos/nz.html +New Zealand NZ "4,545,627" 99% "189,000,000,000" official Maori mi "129,000" "http://www.ethnologue.com/show_language.asp?code=mri 70,000 in 1991, 100,000 who understand it, but do not speak it ; ethnic pop 530,000 in 2002" +Nicaragua NI "6,085,213" 78% "36,400,000,000" official Spanish es 78% +Niger NE "19,866,231" 29% "21,860,000,000" Arabic ar "41,100" +Niger NE "19,866,231" 29% "21,860,000,000" Central-Eastern Niger Fulfulde fuq 7% +Niger NE "19,866,231" 29% "21,860,000,000" official French fr 29% https://www.cia.gov/cia/publications/factbook/geos/ng.html French official; the figure is derived from literacy * lang pop +Niger NE "19,866,231" 29% "21,860,000,000" Fulah ff 1 No estimate available. +Niger NE "19,866,231" 29% "21,860,000,000" Fulah (Adlam) ff_Adlm 1 No estimate available. +Niger NE "19,866,231" 29% "21,860,000,000" Hausa ha 41% +Niger NE "19,866,231" 29% "21,860,000,000" Tamashek tmh 6% +Niger NE "19,866,231" 29% "21,860,000,000" Tasawaq twq "8,000" +Niger NE "19,866,231" 29% "21,860,000,000" Zarma dje 17% +Nigeria NG "203,452,505" 61% "1,121,000,000,000" Amo amo "17,800" +Nigeria NG "203,452,505" 61% "1,121,000,000,000" Arabic ar "145,000" +Nigeria NG "203,452,505" 61% "1,121,000,000,000" Atsam cch "43,500" +Nigeria NG "203,452,505" 61% "1,121,000,000,000" Bini bin "1,450,000" http://www.ethnologue.com/show_language.asp?code=bin +Nigeria NG "203,452,505" 61% "1,121,000,000,000" Efik efi "2,900,000" http://www.ethnologue.com/show_language.asp?code=efi +Nigeria NG "203,452,505" 61% "1,121,000,000,000" official English en 53% +Nigeria NG "203,452,505" 61% "1,121,000,000,000" Fulah ff 1 No estimate available. +Nigeria NG "203,452,505" 61% "1,121,000,000,000" Fulah (Adlam) ff_Adlm 1 No estimate available. +Nigeria NG "203,452,505" 61% "1,121,000,000,000" Hausa ha 13% +Nigeria NG "203,452,505" 61% "1,121,000,000,000" Hausa (Arabic) ha_Arab "2,030,000" Data completely unknown for Hausa in Arabic in Nigeria +Nigeria NG "203,452,505" 61% "1,121,000,000,000" Ibibio ibb "2,900,000" +Nigeria NG "203,452,505" 61% "1,121,000,000,000" Igbo ig 13% +Nigeria NG "203,452,505" 61% "1,121,000,000,000" Jju kaj "435,000" +Nigeria NG "203,452,505" 61% "1,121,000,000,000" Nigerian Fulfulde fuv 6.7% 20% +Nigeria NG "203,452,505" 61% "1,121,000,000,000" Nigerian Pidgin pcm 21% http://www.ethnologue.com/language/pcm Including 1st and 2nd lang speakers +Nigeria NG "203,452,505" 61% "1,121,000,000,000" Tiv tiv "3,210,000" 25% +Nigeria NG "203,452,505" 61% "1,121,000,000,000" Tyap kcg "190,000" +Nigeria NG "203,452,505" 61% "1,121,000,000,000" official Yoruba yo 13% +Niue NU "1,618" 95% "10,010,000" official English en "1,130" +Niue NU "1,618" 95% "10,010,000" official Niuean niu "1,130" https://www.cia.gov/library/publications/the-world-factbook/geos/NE.html Pop decline to ~1398 in 2009 +Norfolk Island NF "1,748" 99% "92,950,000" official English en "1,680" +North Korea KP "25,381,085" 100% "40,000,000,000" official Korean ko 88% +North Macedonia MK "2,118,945" 97% "31,030,000,000" official_regional Albanian sq 25% https://www.cia.gov/cia/publications/factbook/fields/2098.html Albanian 25.1% +North Macedonia MK "2,118,945" 97% "31,030,000,000" official Macedonian mk 67% +North Macedonia MK "2,118,945" 97% "31,030,000,000" Turkish tr 3.5% +Northern Mariana Islands MP "51,994" 97% "1,242,000,000" Chamorro ch "9,270" +Northern Mariana Islands MP "51,994" 97% "1,242,000,000" de_facto_official English en 97% +Norway NO "5,372,191" 100% "381,200,000,000" official_regional Northern Sami se "15,600" +Norway NO "5,372,191" 100% "381,200,000,000" official Norwegian Bokmål nb 100% +Norway NO "5,372,191" 100% "381,200,000,000" official Norwegian Nynorsk nn 25% +Oman OM "3,494,116" 87% "190,100,000,000" official Arabic ar 81% +Oman OM "3,494,116" 87% "190,100,000,000" Baluchi bal 4.9% +Oman OM "3,494,116" 87% "190,100,000,000" Persian fa "32,800" +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Balti bft "370,000" +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Baluchi bal 3.7% +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Bateri btv "38,500" +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Brahui brh "2,740,000" +Pakistan PK "207,862,518" 55% "1,061,000,000,000" official English en 50% http://en.wikipedia.org/wiki/Languages_of_Pakistan - More than 95% of Pakistanis can speak or understand Urdu as their second or third language +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Gujari gju "410,000" +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Indus Kohistani mvy "301,000" +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Kachi Koli gjk "232,000" +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Kashmiri ks "143,000" +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Khowar khw "304,000" +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Lahnda lah 40% +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Northern Hindko hno "2,570,000" +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Parkari Koli kvx "341,000" +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Pashto ps 15% http://en.wikipedia.org/wiki/Pashto_language 15.42% of population +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Persian fa "1,370,000" +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Punjabi (Arabic) pa_Arab 70% "http://en.wikipedia.org/wiki/Languages_of_Pakistan#Punjabi Spoken by 70% of population, assumed to use Arabic script in Pakistan" +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Saraiki skr 9.1% 1% http://www.ethnologue.com/show_language.asp?code=skr +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Sindhi sd 12% +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Southern Hindko hnd "855,000" +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Tajik (Arabic) tg_Arab "684,000" +Pakistan PK "207,862,518" 55% "1,061,000,000,000" official Urdu ur 95% http://en.wikipedia.org/wiki/Languages_of_Pakistan - More than 95% of Pakistanis can speak or understand Urdu as their second or third language +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Wadiyara Koli kxp "239,000" +Pakistan PK "207,862,518" 55% "1,061,000,000,000" Western Balochi bgn "1,190,000" 5% http://www.ethnologue.com/language/bgn low literacy +Palau PW "21,516" 92% "264,000,000" official English en "1,880" "https://www.cia.gov/cia/publications/factbook/fields/2098.html English official on some islands, total 9.4%" +Palau PW "21,516" 92% "264,000,000" official Palauan pau 74% +Palestinian Territories PS "4,635,207" 95% "21,220,000,000" official Arabic ar 100% +Panama PA "3,800,644" 94% "104,100,000,000" Chinese (Traditional) zh_Hant "6,000" +Panama PA "3,800,644" 94% "104,100,000,000" English en 14% +Panama PA "3,800,644" 94% "104,100,000,000" official Spanish es 69% +Papua New Guinea PG "7,027,332" 62% "30,190,000,000" official English en 50% "http://en.wikipedia.org/wiki/Papua_New_Guinea Low literacy, high linguistic diversity; English official (govt) but not widely spoken" +Papua New Guinea PG "7,027,332" 62% "30,190,000,000" official Hiri Motu ho "151,000" 5% "http://www.ethnologue.com/show_language.asp?code=hmo A pidginizatino of Motu; 120k 2nd lang speakers, very few 1st lang." +Papua New Guinea PG "7,027,332" 62% "30,190,000,000" official Tok Pisin tpi 71% 45% "http://www.ethnologue.com/show_language.asp?code=tpi 4mil 2nd lang speakers, 120k 1st lang, 20k monolinguals. English creole; 40-45% literacy." +Paraguay PY "7,025,763" 94% "88,910,000,000" German de "201,000" +Paraguay PY "7,025,763" 94% "88,910,000,000" official Guarani gn 80% +Paraguay PY "7,025,763" 94% "88,910,000,000" official Spanish es 3.2% +Peru PE "31,331,228" 90% "430,300,000,000" Aymara ay "504,000" +Peru PE "31,331,228" 90% "430,300,000,000" official Quechua qu 15% +Peru PE "31,331,228" 90% "430,300,000,000" official Spanish es 73% +Philippines PH "105,893,381" 95% "877,200,000,000" Albay Bicolano bhk "2,430,000" +Philippines PH "105,893,381" 95% "877,200,000,000" Bikol bik 3% +Philippines PH "105,893,381" 95% "877,200,000,000" Buhid bku "8,000" +Philippines PH "105,893,381" 95% "877,200,000,000" Capiznon cps "704,000" +Philippines PH "105,893,381" 95% "877,200,000,000" official_regional Cebuano ceb 24% 13% http://www.census.gov.ph/data/sectordata/sr05153tx.html +Philippines PH "105,893,381" 95% "877,200,000,000" Chinese (Traditional) zh_Hant "768,000" +Philippines PH "105,893,381" 95% "877,200,000,000" official English en 64% http://www.census.gov.ph/data/sectordata/sr05153tx.html +Philippines PH "105,893,381" 95% "877,200,000,000" official Filipino fil 60% "http://www.seasite.niu.edu/tagalog/essays_on_philippine_languages.htm In this and other sources, such as Ethnologue, there is no estimate for number of users. http://en.wikipedia.org/wiki/Filipino_language http://www.ethnologue.com/show_language.asp?code=fil " +Philippines PH "105,893,381" 95% "877,200,000,000" Hanunoo hnn "16,700" +Philippines PH "105,893,381" 95% "877,200,000,000" official_regional Hiligaynon hil 8.4% 8% http://www.census.gov.ph/data/sectordata/sr05153tx.html +Philippines PH "105,893,381" 95% "877,200,000,000" official_regional Iloko ilo 9.6% 10% http://www.census.gov.ph/data/sectordata/sr05153tx.html +Philippines PH "105,893,381" 95% "877,200,000,000" Kinaray-a krj "417,000" +Philippines PH "105,893,381" 95% "877,200,000,000" official_regional Maguindanaon mdh "1,280,000" +Philippines PH "105,893,381" 95% "877,200,000,000" Pampanga pam "2,430,000" +Philippines PH "105,893,381" 95% "877,200,000,000" official_regional Pangasinan pag "1,480,000" +Philippines PH "105,893,381" 95% "877,200,000,000" Rinconada Bikol bto "299,000" +Philippines PH "105,893,381" 95% "877,200,000,000" Spanish es 31% +Philippines PH "105,893,381" 95% "877,200,000,000" Tagbanwa tbw "10,000" 36% http://www.ethnologue.com/show_language.asp?code=tbw +Philippines PH "105,893,381" 95% "877,200,000,000" official_regional Tausug tsg "1,150,000" +Philippines PH "105,893,381" 95% "877,200,000,000" official_regional Waray war "3,110,000" +Pitcairn Islands PN 54 99% "2,426,000" official English en 46 +Poland PL "38,420,687" 100% "1,126,000,000,000" Belarusian be "222,000" +Poland PL "38,420,687" 100% "1,126,000,000,000" English en 33% "http://en.wikipedia.org/wiki/German_minority_in_Poland regional-official in part of Opole Voivodeship; in Poland 325 schools with primary instr in German, estimate 37000 students. Real figure probably higher." +Poland PL "38,420,687" 100% "1,126,000,000,000" official_regional German de 19% "http://en.wikipedia.org/wiki/German_minority_in_Poland regional-official in part of Opole Voivodeship; in Poland 325 schools with primary instr in German, estimate 37000 students. Real figure probably higher." +Poland PL "38,420,687" 100% "1,126,000,000,000" official_regional Kashubian csb "49,900" "http://ec.europa.eu/education/languages/archive/languages/langmin/euromosaic/pol3_en.html - regional lang community status, taught in some schools" +Poland PL "38,420,687" 100% "1,126,000,000,000" official_regional Lithuanian lt "8,000" "http://en.wikipedia.org/wiki/Lithuanian_minority_in_Poland , Podlaskie Voivodeship " +Poland PL "38,420,687" 100% "1,126,000,000,000" Lower Silesian sli "12,000" +Poland PL "38,420,687" 100% "1,126,000,000,000" official Polish pl 96% +Poland PL "38,420,687" 100% "1,126,000,000,000" Russian ru 18% +Poland PL "38,420,687" 100% "1,126,000,000,000" Silesian szl "509,000" +Poland PL "38,420,687" 100% "1,126,000,000,000" Ukrainian uk "151,000" +Portugal PT "10,355,493" 95% "314,100,000,000" English en 27% +Portugal PT "10,355,493" 95% "314,100,000,000" French fr 15% +Portugal PT "10,355,493" 95% "314,100,000,000" Galician gl "14,900" +Portugal PT "10,355,493" 95% "314,100,000,000" official Portuguese pt 96% +Portugal PT "10,355,493" 95% "314,100,000,000" Spanish es 10% https://en.wikipedia.org/wiki/Immigration_to_Portugal#Immigration +Puerto Rico PR "3,294,626" 90% "130,000,000,000" de_facto_official English en 49% http://en.wikipedia.org/wiki/List_of_countries_by_English-speaking_population The figure is from Wikipedia article on English-speaking populations +Puerto Rico PR "3,294,626" 90% "130,000,000,000" official Spanish es 87% +Qatar QA "2,363,569" 96% "339,500,000,000" official Arabic ar 89% +Qatar QA "2,363,569" 96% "339,500,000,000" Malayalam ml "6,500" +Qatar QA "2,363,569" 96% "339,500,000,000" Persian fa 11% +Réunion RE "787,584" 88% "4,791,000,000" official French fr 89% http://en.wikipedia.org/wiki/R%C3%A9union - Education is in French; using literacy rate * pop for French-using population +Réunion RE "787,584" 88% "4,791,000,000" Réunion Creole French rcf 71% +Réunion RE "787,584" 88% "4,791,000,000" Tamil ta 15% +Romania RO "21,457,116" 98% "483,400,000,000" Bulgarian bg "6,750" +Romania RO "21,457,116" 98% "483,400,000,000" English en 31% +Romania RO "21,457,116" 98% "483,400,000,000" French fr 17% +Romania RO "21,457,116" 98% "483,400,000,000" German de "44,200" +Romania RO "21,457,116" 98% "483,400,000,000" Greek el "4,150" +Romania RO "21,457,116" 98% "483,400,000,000" Hungarian hu 6.6% +Romania RO "21,457,116" 98% "483,400,000,000" Polish pl "2,760" +Romania RO "21,457,116" 98% "483,400,000,000" official Romanian ro 90% +Romania RO "21,457,116" 98% "483,400,000,000" Serbian (Latin) sr_Latn "26,500" +Romania RO "21,457,116" 98% "483,400,000,000" Spanish es 10% +Romania RO "21,457,116" 98% "483,400,000,000" Turkish tr "28,100" +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Adyghe ady "125,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" Armenian hy "1,200,000" 50% https://en.wikipedia.org/wiki/Armenians_in_Russia Census figures cited there seem to put Armenian using pop between 50-75%. Using 50%. +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Avaric av "552,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Azerbaijani (Cyrillic) az_Cyrl "132,000" "http://en.wikipedia.org/wiki/Azerbaijanis_in_Russia regional in Dagestan, population estimate" +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Bashkir ba "1,790,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" Buriat bua "317,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Chechen ce "939,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" Church Slavic cu 1 https://en.wikipedia.org/wiki/Religion_in_russia#Russian_Orthodoxy +Russia RU "142,122,776" 100% "4,016,000,000,000" Chuvash cv "1,790,000" "http://en.wikipedia.org/wiki/Chuvash_language#Language_use Reported to be (regional) official in Chuvashia, central Russia: taught at schools. However: http://cv.wikipedia.org/ Chuvash Wikipedia on-line." +Russia RU "142,122,776" 100% "4,016,000,000,000" Dargwa dar "363,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Erzya myv "437,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" Finnish fi "17,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" Ingrian izh 120 +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Ingush inh "230,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Kabardian kbd "440,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Karachay-Balkar krc "235,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" Karelian krl "117,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Komi kv "261,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Komi-Permyak koi "63,700" +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Kumyk kum "280,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Lak lbe "111,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Lezghian lez "256,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" Mari chm "522,000" http://www.ethnologue.com/show_language.asp?code=mhr +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Moksha mdf "296,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" Mongolian mn "2,100" +Russia RU "142,122,776" 100% "4,016,000,000,000" Ossetic os "456,000" http://www.gks.ru/free_doc/new_site/population/demo/per-itog/tab6.xls census data +Russia RU "142,122,776" 100% "4,016,000,000,000" official Russian ru 94% http://en.wikipedia.org/wiki/Russian_language (94% of studends in Russia receive primarily Russian-language ed) +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Sakha sah "461,000" http://en.wikipedia.org/wiki/Sakha_language Also called Sakha. +Russia RU "142,122,776" 100% "4,016,000,000,000" Serbian (Latin) sr_Latn "5,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" Southern Altai alt "19,900" +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Tatar tt "2,020,000" "http://www.tatar.ru/ - 52.9% of Tatarstan is ethnic Tatar, the pop figure is an upper bound" +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Tuvinian tyv "179,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Udmurt udm "546,000" +Russia RU "142,122,776" 100% "4,016,000,000,000" recognized Veps vep "3,610" +Russia RU "142,122,776" 100% "4,016,000,000,000" Votic vot 68 +Russia RU "142,122,776" 100% "4,016,000,000,000" Western Mari mrj "30,400" +Rwanda RW "12,187,400" 71% "24,680,000,000" official English en 15% "https://www.cia.gov/cia/publications/factbook/geos/rw.html English is an official language, not widely spoken" +Rwanda RW "12,187,400" 71% "24,680,000,000" official French fr "2,300" +Rwanda RW "12,187,400" 71% "24,680,000,000" official Kinyarwanda rw 77% +Samoa WS "201,316" 99% "1,137,000,000" official English en "4,340" +Samoa WS "201,316" 99% "1,137,000,000" official Samoan sm 100% +San Marino SM "33,779" 96% "2,064,000,000" Esperanto eo 300 "http://en.wikipedia.org/wiki/Esperanto http://en.wikipedia.org/wiki/Akademio_Internacia_de_la_Sciencoj_San_Marino - estimate 100% of the academy can use Esperanto; the language is used as 1st language of instruction; academy has 300 """"""""""""""""""""""""""""""""members""""""""""""""""""""""""""""""""." +San Marino SM "33,779" 96% "2,064,000,000" official Italian it 89% +São Tomé & Príncipe ST "204,454" 70% "686,000,000" official Portuguese pt 85% +Saudi Arabia SA "33,091,113" 87% "1,775,000,000,000" official Arabic ar 100% +Senegal SN "15,020,945" 50% "54,800,000,000" official_regional Balanta-Ganja bjt "91,200" 100% "http://en.wikipedia.org/wiki/Senegal 50k Europeans, mostly French. The figure for writing population is derived from literacy * population, and may be too high." +Senegal SN "15,020,945" 50% "54,800,000,000" official_regional Bassari bsc "14,600" 10% http://www.ethnologue.com/language/dyo only 10% monolingual +Senegal SN "15,020,945" 50% "54,800,000,000" official French fr 39% 100% "http://en.wikipedia.org/wiki/Senegal 50k Europeans, mostly French. The figure for writing population is derived from literacy * population, and may be too high." +Senegal SN "15,020,945" 50% "54,800,000,000" official_regional Fulah ff 21% +Senegal SN "15,020,945" 50% "54,800,000,000" Fulah (Adlam) ff_Adlm 1 No estimate available. +Senegal SN "15,020,945" 50% "54,800,000,000" official_regional Hassaniyya mey "7,190" 10% http://www.ethnologue.com/language/dyo only 10% monolingual +Senegal SN "15,020,945" 50% "54,800,000,000" official_regional Jola-Fonyi dyo "397,000" 10% http://www.ethnologue.com/language/dyo only 10% monolingual +Senegal SN "15,020,945" 50% "54,800,000,000" official_regional Mandjak mfv "116,000" 10% http://www.ethnologue.com/language/dyo only 10% monolingual +Senegal SN "15,020,945" 50% "54,800,000,000" official_regional Mankanya knf "32,200" 10% http://www.ethnologue.com/language/dyo only 10% monolingual +Senegal SN "15,020,945" 50% "54,800,000,000" official_regional Ménik tnr "3,380" 10% http://www.ethnologue.com/language/dyo only 10% monolingual +Senegal SN "15,020,945" 50% "54,800,000,000" official_regional Noon snf "36,300" 10% http://www.ethnologue.com/language/dyo only 10% monolingual +Senegal SN "15,020,945" 50% "54,800,000,000" official_regional Saafi-Saafi sav "220,000" "http://en.wikipedia.org/wiki/Senegal 50k Europeans, mostly French. The figure for writing population is derived from literacy * population, and may be too high." +Senegal SN "15,020,945" 50% "54,800,000,000" official_regional Serer srr 11% "http://en.wikipedia.org/wiki/Senegal 50k Europeans, mostly French. The figure for writing population is derived from literacy * population, and may be too high." +Senegal SN "15,020,945" 50% "54,800,000,000" de_facto_official Wolof wo 70% http://en.wikipedia.org/wiki/Wolof_language +Serbia RS "7,078,110" 98% "105,700,000,000" Albanian sq 19% +Serbia RS "7,078,110" 98% "105,700,000,000" official_regional Croatian hr "65,700" official in Vojvodina only +Serbia RS "7,078,110" 98% "105,700,000,000" official_regional Hungarian hu 4.8% official in Vojvodina only +Serbia RS "7,078,110" 98% "105,700,000,000" official_regional Romanian ro "150,000" official in Vojvodina only +Serbia RS "7,078,110" 98% "105,700,000,000" official Serbian sr 99% +Serbia RS "7,078,110" 98% "105,700,000,000" official Serbian (Latin) sr_Latn 99% 5% "For languages not customarily written, the writing population is artificially set to 5% in the absence of better information." +Serbia RS "7,078,110" 98% "105,700,000,000" official_regional Slovak sk "60,500" official in Vojvodina only +Serbia RS "7,078,110" 98% "105,700,000,000" official_regional Ukrainian uk 1 official in Vojvodina only; no pop data yet found +Seychelles SC "94,633" 92% "2,750,000,000" official English en 38% +Seychelles SC "94,633" 92% "2,750,000,000" official French fr 60% http://en.wikipedia.org/wiki/African_French +Seychelles SC "94,633" 92% "2,750,000,000" Seselwa Creole French crs 98% http://www.flw.com/languages/creoleseychelles.htm http://www.mavicanet.com/directory/eng/2436.html +Sierra Leone SL "6,312,212" 43% "11,550,000,000" official English en 35% +Sierra Leone SL "6,312,212" 43% "11,550,000,000" Fulah ff 1 No estimate available. +Sierra Leone SL "6,312,212" 43% "11,550,000,000" Fulah (Adlam) ff_Adlm 1 No estimate available. +Sierra Leone SL "6,312,212" 43% "11,550,000,000" Krio kri 95% https://www.cia.gov/cia/publications/factbook/fields/2098.html 'A lingua franca and a first language for 10% of the population but understood by 95%' http://en.wikipedia.org/wiki/Krio_language +Sierra Leone SL "6,312,212" 43% "11,550,000,000" Mende men 27% +Sierra Leone SL "6,312,212" 43% "11,550,000,000" Timne tem 26% 6% "http://www.ethnologue.com/show_language.asp?code=tem 1.2mil 1st lang + 240k 2nd lang users, low literacy" +Singapore SG "5,995,991" 96% "528,100,000,000" official Chinese zh 77% +Singapore SG "5,995,991" 96% "528,100,000,000" official English en 93% http://en.wikipedia.org/wiki/Singapore English is the first language learned by half the children by the time they reach preschool age; using 92.6% of pop for the English figure +Singapore SG "5,995,991" 96% "528,100,000,000" official Malay ms 14% +Singapore SG "5,995,991" 96% "528,100,000,000" Malayalam ml "10,000" +Singapore SG "5,995,991" 96% "528,100,000,000" Punjabi pa "9,500" +Singapore SG "5,995,991" 96% "528,100,000,000" official Tamil ta "125,000" +Sint Maarten SX "42,677" 99% "365,800,000" official Dutch nl "1,590" https://www.cia.gov/library/publications/the-world-factbook/geos/sk.html +Sint Maarten SX "42,677" 99% "365,800,000" official English en 68% https://www.cia.gov/library/publications/the-world-factbook/geos/sk.html +Sint Maarten SX "42,677" 99% "365,800,000" Spanish es "4,880" https://www.cia.gov/library/publications/the-world-factbook/geos/sk.html +Sint Maarten SX "42,677" 99% "365,800,000" Virgin Islands Creole English vic "3,100" https://www.cia.gov/library/publications/the-world-factbook/geos/sk.html +Slovakia SK "5,445,040" 100% "179,700,000,000" Czech cs 47% +Slovakia SK "5,445,040" 100% "179,700,000,000" English en 26% +Slovakia SK "5,445,040" 100% "179,700,000,000" German de 22% +Slovakia SK "5,445,040" 100% "179,700,000,000" Hungarian hu 11% +Slovakia SK "5,445,040" 100% "179,700,000,000" Polish pl "50,500" +Slovakia SK "5,445,040" 100% "179,700,000,000" official Slovak sk 90% +Slovakia SK "5,445,040" 100% "179,700,000,000" Ukrainian uk "101,000" +Slovenia SI "2,102,126" 100% "71,230,000,000" Croatian hr 61% +Slovenia SI "2,102,126" 100% "71,230,000,000" English en 59% +Slovenia SI "2,102,126" 100% "71,230,000,000" German de 42% +Slovenia SI "2,102,126" 100% "71,230,000,000" Hungarian hu "9,240" +Slovenia SI "2,102,126" 100% "71,230,000,000" Italian it "4,010" +Slovenia SI "2,102,126" 100% "71,230,000,000" official Slovenian sl 87% +Solomon Islands SB "660,121" 84% "1,330,000,000" official English en 100% https://www.cia.gov/cia/publications/factbook/geos/bp.html Melanesian pidgin in much of the country is lingua franca; English (official; but spoken by only 1%-2% of the population); 120 indigenous languages +Solomon Islands SB "660,121" 84% "1,330,000,000" Roviana rug "9,870" +Somalia SO "11,259,029" 38% "20,440,000,000" official Arabic ar 34% 99% https://www.cia.gov/library/publications/the-world-factbook/geos/so.html - estimate 90%of literate pop can use Arabic; Lpop = 99% +Somalia SO "11,259,029" 38% "20,440,000,000" Oromo om "47,100" +Somalia SO "11,259,029" 38% "20,440,000,000" official Somali so 78% +Somalia SO "11,259,029" 38% "20,440,000,000" Swahili sw "226,000" +South Africa ZA "55,380,210" 93% "767,200,000,000" official_regional Afrikaans af 13% 99% +South Africa ZA "55,380,210" 93% "767,200,000,000" official English en 31% 99% "Estimate based on 90% of literate pop > 15 years (71% of Cpop) can use English, for lack of official number of users" +South Africa ZA "55,380,210" 93% "767,200,000,000" Hindi hi "1,080,000" 69% +South Africa ZA "55,380,210" 93% "767,200,000,000" official_regional Northern Sotho nso 9.4% 50% +South Africa ZA "55,380,210" 93% "767,200,000,000" official_regional South Ndebele nr "886,000" 50% +South Africa ZA "55,380,210" 93% "767,200,000,000" official_regional Southern Sotho st 7.9% 50% +South Africa ZA "55,380,210" 93% "767,200,000,000" Swahili sw "1,000" 50% +South Africa ZA "55,380,210" 93% "767,200,000,000" official_regional Swati ss "1,500,000" 50% +South Africa ZA "55,380,210" 93% "767,200,000,000" official_regional Tsonga ts 4.4% 50% +South Africa ZA "55,380,210" 93% "767,200,000,000" official_regional Tswana tn 8.2% 50% +South Africa ZA "55,380,210" 93% "767,200,000,000" official_regional Venda ve "1,270,000" 50% +South Africa ZA "55,380,210" 93% "767,200,000,000" official_regional Xhosa xh 18% 50% +South Africa ZA "55,380,210" 93% "767,200,000,000" official_regional Zulu zu 24% 50% +South Georgia & South Sandwich Islands GS 20 99% "898,500" Unknown language und 20 100% https://www.cia.gov/cia/publications/factbook/geos/sx.html No indigenous inhabitants. http://en.wikipedia.org/wiki/Heard_Island_and_McDonald_Islands +South Korea KR "51,418,097" 98% "2,035,000,000,000" official Korean ko 100% +South Sudan SS "10,204,581" 27% "20,010,000,000" Arabic ar 27% https://www.cia.gov/library/publications/the-world-factbook/geos/od.html http://en.wikipedia.org/wiki/South_Sudan +South Sudan SS "10,204,581" 27% "20,010,000,000" official English en 27% https://www.cia.gov/library/publications/the-world-factbook/geos/od.html http://en.wikipedia.org/wiki/South_Sudan +South Sudan SS "10,204,581" 27% "20,010,000,000" Nuer nus 5.6% http://www.ethnologue.com/language/nus unknown literacy +Spain ES "49,331,076" 98% "1,778,000,000,000" official_regional Asturian ast "656,000" http://www.ethnologue.com/show_language.asp?code=ast +Spain ES "49,331,076" 98% "1,778,000,000,000" official_regional Basque eu "986,000" https://www.cia.gov/library/publications/the-world-factbook/geos/sp.html +Spain ES "49,331,076" 98% "1,778,000,000,000" official_regional Catalan ca 17% https://www.cia.gov/library/publications/the-world-factbook/geos/sp.html +Spain ES "49,331,076" 98% "1,778,000,000,000" English en 24% +Spain ES "49,331,076" 98% "1,778,000,000,000" Extremaduran ext "244,000" +Spain ES "49,331,076" 98% "1,778,000,000,000" official_regional Galician gl 7% https://www.cia.gov/library/publications/the-world-factbook/geos/sp.html +Spain ES "49,331,076" 98% "1,778,000,000,000" official Spanish es 99% "http://en.wikipedia.org/wiki/Spanish_language#Spain 98.8% speak Spanish. Also, https://www.cia.gov/library/publications/the-world-factbook/geos/sp.html" +Sri Lanka LK "22,576,592" 91% "275,800,000,000" English en 10% +Sri Lanka LK "22,576,592" 91% "275,800,000,000" official Sinhala si 68% +Sri Lanka LK "22,576,592" 91% "275,800,000,000" official Tamil ta 15% +St. Barthélemy BL "7,160" 99% "255,000,000" official French fr "6,850" +St. Helena SH "7,841" 97% "31,100,000" official English en "5,400" +St. Kitts & Nevis KN "53,094" 98% "1,550,000,000" official English en 98% +St. Lucia LC "165,510" 90% "2,542,000,000" official English en 90% +St. Martin MF "32,284" 99% "561,500,000" official French fr 100% +St. Pierre & Miquelon PM "5,471" 99% "261,300,000" English en 188 +St. Pierre & Miquelon PM "5,471" 99% "261,300,000" official French fr "5,110" +St. Vincent & Grenadines VC "101,844" 96% "1,265,000,000" official English en 96% +Sudan SD "43,120,843" 72% "177,400,000,000" official Arabic ar 61% https://www.cia.gov/library/publications/the-world-factbook/geos/su.html - source for GDP +Sudan SD "43,120,843" 72% "177,400,000,000" Beja bej 5.4% http://www.axl.cefan.ulaval.ca/afrique/soudan.htm +Sudan SD "43,120,843" 72% "177,400,000,000" official English en 61% "https://www.cia.gov/library/publications/the-world-factbook/geos/su.html - source for GDP Level of English usage unclear, but official for govt and education" +Sudan SD "43,120,843" 72% "177,400,000,000" Fur fvr "1,170,000" http://www.axl.cefan.ulaval.ca/afrique/soudan.htm +Sudan SD "43,120,843" 72% "177,400,000,000" Hausa (Arabic) ha_Arab "776,000" http://www.axl.cefan.ulaval.ca/afrique/soudan.htm +Sudan SD "43,120,843" 72% "177,400,000,000" Masalit mls "425,000" +Sudan SD "43,120,843" 72% "177,400,000,000" Nobiin fia "358,000" +Sudan SD "43,120,843" 72% "177,400,000,000" Zaghawa zag "218,000" +Suriname SR "597,927" 95% "8,688,000,000" Chinese (Traditional) zh_Hant "7,010" +Suriname SR "597,927" 95% "8,688,000,000" official Dutch nl 90% "http://en.wikipedia.org/wiki/Suriname#Languages Dutch is spoken as a mother tongue by about 60% of the Surinamese, while most others speak it as a second or third language." +Suriname SR "597,927" 95% "8,688,000,000" Sranan Tongo srn 68% 75% http://www.ethnologue.com/show_language.asp?code=srn The lingua franca of 80% of the population +Svalbard & Jan Mayen SJ "2,583" 100% "183,300,000" official Norwegian Bokmål nb "1,500" "https://www.cia.gov/cia/publications/factbook/geos/sv.html CIA Factbook lists spoken language, the entry for Bokmål only on Svalbard and Jan Mayan is an assumption." +Svalbard & Jan Mayen SJ "2,583" 100% "183,300,000" Russian ru "1,200" https://www.cia.gov/cia/publications/factbook/geos/sv.html CIA Factbook +Sweden SE "10,040,995" 99% "518,000,000,000" English en 86% +Sweden SE "10,040,995" 99% "518,000,000,000" official_regional Finnish fi "221,000" +Sweden SE "10,040,995" 99% "518,000,000,000" Interlingua ia 1 " http://en.wikipedia.org/wiki/Interlingua#Community Has a regular conf in Sweden, also Brazil; an auxiliary language with tiny population worldwide" +Sweden SE "10,040,995" 99% "518,000,000,000" Lule Sami smj "1,500" +Sweden SE "10,040,995" 99% "518,000,000,000" recognized Northern Sami se "33,400" +Sweden SE "10,040,995" 99% "518,000,000,000" Southern Sami sma 300 75% +Sweden SE "10,040,995" 99% "518,000,000,000" official Swedish sv 95% "http://ec.europa.eu/public_opinion/archives/ebs/ebs_243_en.pdf Europeans and their languages survey, page 7" +Sweden SE "10,040,995" 99% "518,000,000,000" recognized Tavringer Romani rmu "9,500" +Sweden SE "10,040,995" 99% "518,000,000,000" recognized Tornedalen Finnish fit "55,500" +Sweden SE "10,040,995" 99% "518,000,000,000" recognized Yiddish yi "3,000" +Switzerland CH "8,292,809" 99% "523,100,000,000" English en 61% http://en.wikipedia.org/wiki/French_language +Switzerland CH "8,292,809" 99% "523,100,000,000" official French fr 21% http://en.wikipedia.org/wiki/French_language +Switzerland CH "8,292,809" 99% "523,100,000,000" official German de 73% +Switzerland CH "8,292,809" 99% "523,100,000,000" official Italian it 4.3% +Switzerland CH "8,292,809" 99% "523,100,000,000" Lombard lmo 4.1% 5% 5% writing pop estimated in absence of other data +Switzerland CH "8,292,809" 99% "523,100,000,000" Portuguese pt 3.4% http://www.bfs.admin.ch/bfs/portal/en/index/themen/01/05/blank/key/sprachen.html +Switzerland CH "8,292,809" 99% "523,100,000,000" official_regional Romansh rm "41,500" http://en.wikipedia.org/wiki/Romansh_language http://www.bfs.admin.ch/bfs/portal/de/index/infothek/lexikon/bienvenue___login/blank/zugang_lexikon.Document.62669.xls +Switzerland CH "8,292,809" 99% "523,100,000,000" Sinte Romani rmo "23,700" +Switzerland CH "8,292,809" 99% "523,100,000,000" de_facto_official Swiss German gsw 65% 5% "http://www.ethnologue.com/show_country.asp?name=CH http://en.wikipedia.org/wiki/Demographics_of_Switzerland Literacy rate for gsw is 5% of reported speaker population; literacy is mostly in standard German. For languages not customarily written, the writing population is artificially set to 5% in the absence of better information." +Switzerland CH "8,292,809" 99% "523,100,000,000" Walser wae "10,000" +Syria SY "19,454,263" 84% "50,280,000,000" official Arabic ar 80% +Syria SY "19,454,263" 84% "50,280,000,000" Armenian hy "350,000" +Syria SY "19,454,263" 84% "50,280,000,000" official French fr 5.9% http://www.nationsonline.org/oneworld/syria.htm Crude estimate based on import partner data. +Syria SY "19,454,263" 84% "50,280,000,000" Kurdish ku 8% +Syria SY "19,454,263" 84% "50,280,000,000" Syriac syr "16,400" 5% "For languages not customarily written, the writing population is artificially set to 5% in the absence of better information." +Taiwan TW "23,545,963" 96% "1,189,000,000,000" official Chinese (Traditional) zh_Hant 95% +Taiwan TW "23,545,963" 96% "1,189,000,000,000" Taroko trv "4,750" +Tajikistan TJ "8,604,882" 100% "28,430,000,000" Arabic ar "1,000" +Tajikistan TJ "8,604,882" 100% "28,430,000,000" Persian fa "66,900" +Tajikistan TJ "8,604,882" 100% "28,430,000,000" Russian ru 12% http://windowoneurasia2.blogspot.com/2013/12/window-on-eurasia-de-russianization.html http://www.stoletie.ru/vzglyad/derusifikacija_nabirajet_oboroty_934.htm +Tajikistan TJ "8,604,882" 100% "28,430,000,000" official Tajik tg 100% +Tanzania TZ "55,451,343" 68% "162,500,000,000" Asu asa "690,000" http://www.ethnologue.com/show_language.asp?code=asa Most also use Swahili with 50% literacy. Only 5% monolingual. +Tanzania TZ "55,451,343" 68% "162,500,000,000" Bena bez "924,000" +Tanzania TZ "55,451,343" 68% "162,500,000,000" official English en 69% "https://www.cia.gov/cia/publications/factbook/geos/tz.html English (official, primary language of commerce, administration, and higher education)" +Tanzania TZ "55,451,343" 68% "162,500,000,000" Langi lag "483,000" http://www.ethnologue.com/show_language.asp?code=lag Most also use Swahili +Tanzania TZ "55,451,343" 68% "162,500,000,000" Machame jmc "413,000" +Tanzania TZ "55,451,343" 68% "162,500,000,000" Makonde kde "1,360,000" +Tanzania TZ "55,451,343" 68% "162,500,000,000" Masai mas "813,000" 50% http://www.ethnologue.com/show_language.asp?code=mas Shows 50% literacy +Tanzania TZ "55,451,343" 68% "162,500,000,000" Mbunga mgy "751,000" +Tanzania TZ "55,451,343" 68% "162,500,000,000" Nyamwezi nym 3.3% "https://www.cia.gov/cia/publications/factbook/geos/tz.html English (official, primary language of commerce, administration, and higher education)" +Tanzania TZ "55,451,343" 68% "162,500,000,000" Rombo rof "413,000" http://en.wikipedia.org/wiki/Rombo_language +Tanzania TZ "55,451,343" 68% "162,500,000,000" Rwa rwk "124,000" +Tanzania TZ "55,451,343" 68% "162,500,000,000" Sangu sbp "110,000" 1% "http://www.ethnologue.com/language/sbp near zero literacy; pop ~80000 (2009) see David Lawrence, Tanzania and its People, page 121, Google books" +Tanzania TZ "55,451,343" 68% "162,500,000,000" Shambala ksb "916,000" +Tanzania TZ "55,451,343" 68% "162,500,000,000" Sukuma suk 8.7% +Tanzania TZ "55,451,343" 68% "162,500,000,000" official Swahili sw 90% http://en.wikipedia.org/wiki/Swahili_language - 90 percent of approximately 39 million Tanzanians speak Swahili +Tanzania TZ "55,451,343" 68% "162,500,000,000" Vunjo vun "413,000" +Thailand TH "68,615,858" 94% "1,236,000,000,000" Chinese (Traditional) zh_Hant "1,230,000" +Thailand TH "68,615,858" 94% "1,236,000,000,000" Eastern Lawa lwl "7,000" +Thailand TH "68,615,858" 94% "1,236,000,000,000" English en 27% +Thailand TH "68,615,858" 94% "1,236,000,000,000" Kuy kdt "330,000" 50% +Thailand TH "68,615,858" 94% "1,236,000,000,000" Mon mnw "118,000" +Thailand TH "68,615,858" 94% "1,236,000,000,000" Northeastern Thai tts 24% 5% "http://en.wikipedia.org/wiki/Isan_language main language of trade and comm. in Isan region, except ... media where it gives way to Thai; now largely an unwritten language. 10% writing pop estimated in absence of other data" +Thailand TH "68,615,858" 94% "1,236,000,000,000" Northern Khmer kxm "1,160,000" +Thailand TH "68,615,858" 94% "1,236,000,000,000" Northern Thai nod 9.6% 5% +Thailand TH "68,615,858" 94% "1,236,000,000,000" Pattani Malay mfa 5% +Thailand TH "68,615,858" 94% "1,236,000,000,000" Shan shn "66,000" +Thailand TH "68,615,858" 94% "1,236,000,000,000" Southern Thai sou 8% 5% +Thailand TH "68,615,858" 94% "1,236,000,000,000" official Thai th 80% 93% http://www.mapsofworld.com/thailand/geography/demographics.html More than 80 % of the total Thai population speaks the native Thai language. +Thailand TH "68,615,858" 94% "1,236,000,000,000" Western Lawa lcp "7,000" 25% +Timor-Leste TL "1,321,929" 58% "7,426,000,000" official Portuguese pt 59% 100% http://www.ethnologue.com/show_language.asp?code=por Official language. Probably 2% of the population from East Timor worldwide can function in it +Timor-Leste TL "1,321,929" 58% "7,426,000,000" official Tetum tet 59% https://www.cia.gov/cia/publications/factbook/geos/tt.html CIA Factbook. See also http://www.jsmp.minihub.org/Reports/jsmpreports/Language%20Report/LanguageReport(english).pdf +Togo TG "8,176,449" 60% "12,970,000,000" Ewe ee 17% +Togo TG "8,176,449" 60% "12,970,000,000" official French fr 61% +Togo TG "8,176,449" 60% "12,970,000,000" Ifè ife "107,000" 15% http://www.ethnologue.com/18/language/ife/ +Tokelau TK "1,285" 94% "1,500,000" official English en "1,290" +Tokelau TK "1,285" 94% "1,500,000" official Tokelau tkl "1,290" 5% https://www.cia.gov/library/publications/the-world-factbook/geos/tl.html +Tonga TO "106,398" 99% "591,000,000" official English en 28% "http://www.pressreference.com/Sw-Ur/Tonga.html The Tonga Chronicle is a government-owned newspaper... It publishes two editions, one in Tongan with a circulation of 5,000, and one in English with a circulation of 1,500; Writing pop figure shown for English is set to 30% of that for Tonga. " +Tonga TO "106,398" 99% "591,000,000" official Tongan to 95% +Trinidad & Tobago TT "1,215,527" 99% "42,850,000,000" official English en 88% +Trinidad & Tobago TT "1,215,527" 99% "42,850,000,000" Spanish es "4,100" +Tristan da Cunha TA 275 99% "12,350,000" English en 272 +Tunisia TN "11,516,189" 79% "137,700,000,000" official Arabic ar 90% +Tunisia TN "11,516,189" 79% "137,700,000,000" official French fr 74% http://en.wikipedia.org/wiki/Tunisia#Language - using pop * literacy rate +Tunisia TN "11,516,189" 79% "137,700,000,000" Tunisian Arabic aeb 90% +Turkey TR "81,257,239" 94% "2,186,000,000,000" Abkhazian ab "4,000" http://www.ethnologue.com/show_language.asp?code=abk 96% bilingual in Turkish. +Turkey TR "81,257,239" 94% "2,186,000,000,000" Adyghe ady "316,000" +Turkey TR "81,257,239" 94% "2,186,000,000,000" Albanian sq "16,900" +Turkey TR "81,257,239" 94% "2,186,000,000,000" Arabic ar "453,000" +Turkey TR "81,257,239" 94% "2,186,000,000,000" Armenian hy "45,300" +Turkey TR "81,257,239" 94% "2,186,000,000,000" Azerbaijani az "600,000" +Turkey TR "81,257,239" 94% "2,186,000,000,000" Azerbaijani (Arabic) az_Arab "528,000" +Turkey TR "81,257,239" 94% "2,186,000,000,000" Balkan Gagauz Turkish bgx "370,000" +Turkey TR "81,257,239" 94% "2,186,000,000,000" Bulgarian bg "341,000" +Turkey TR "81,257,239" 94% "2,186,000,000,000" English en 17% +Turkey TR "81,257,239" 94% "2,186,000,000,000" Georgian ka "45,300" +Turkey TR "81,257,239" 94% "2,186,000,000,000" Greek el "4,000" +Turkey TR "81,257,239" 94% "2,186,000,000,000" Kabardian kbd "623,000" +Turkey TR "81,257,239" 94% "2,186,000,000,000" Kazakh kk 600 "http://en.wikipedia.org/wiki/Kazakh_language - the script is an assumption, needs a reference" +Turkey TR "81,257,239" 94% "2,186,000,000,000" Kirmanjki kiu "158,000" +Turkey TR "81,257,239" 94% "2,186,000,000,000" Kurdish ku 5.5% +Turkey TR "81,257,239" 94% "2,186,000,000,000" Kyrgyz (Latin) ky_Latn "1,140" +Turkey TR "81,257,239" 94% "2,186,000,000,000" Laz lzz "22,600" +Turkey TR "81,257,239" 94% "2,186,000,000,000" Serbian (Latin) sr_Latn "22,700" 5% "For languages not customarily written, the writing population is artificially set to 5% in the absence of better information." +Turkey TR "81,257,239" 94% "2,186,000,000,000" official Turkish tr 93% "http://en.wikipedia.org/wiki/Turkish_language#Geographic_distribution http://ec.europa.eu/public_opinion/archives/ebs/ebs_243_en.pdf Europeans and their languages survey, page 7" +Turkey TR "81,257,239" 94% "2,186,000,000,000" Turoyo tru "3,000" +Turkey TR "81,257,239" 94% "2,186,000,000,000" Uzbek uz "1,980" +Turkey TR "81,257,239" 94% "2,186,000,000,000" Zaza zza "1,140,000" +Turkmenistan TM "5,411,012" 100% "103,700,000,000" Kurdish ku "21,900" +Turkmenistan TM "5,411,012" 100% "103,700,000,000" Russian ru 12% +Turkmenistan TM "5,411,012" 100% "103,700,000,000" official Turkmen tk 70% +Turkmenistan TM "5,411,012" 100% "103,700,000,000" Uzbek uz 9% +Turks & Caicos Islands TC "53,701" 98% "632,000,000" official English en 98% +Tuvalu TV "11,147" 95% "42,000,000" official English en "1,070" "http://en.wikipedia.org/wiki/Tuvalu The Tuvaluan language is spoken by virtually everyone, while Gilbertese is spoken by some people on Nui. English is also an official language, but is not spoken in daily use. Writing pop set to 10% of Tuvalu." +Tuvalu TV "11,147" 95% "42,000,000" official Tuvalu tvl "9,920" +U.S. Outlying Islands UM 316 99% "18,710,000" de_facto_official English en 316 "https://www.cia.gov/library/publications/the-world-factbook/geos/UM.html basically unihabited, officially ; http://www.census.gov/prod/cen2000/phc3-us-pt1.pdf" +U.S. Virgin Islands VI "106,977" 99% "3,872,000,000" de_facto_official English en 75% +Uganda UG "40,853,749" 73% "89,190,000,000" Acoli ach 3.7% http://www.ethnologue.com/language/ACH/ (baseline) +Uganda UG "40,853,749" 73% "89,190,000,000" Chiga cgg 5.4% +Uganda UG "40,853,749" 73% "89,190,000,000" official English en 3.9% http://www.ethnologue.com/show_language.asp?code=eng Ethnologue lists 1 million 2nd lang users of English; no other good figures found. +Uganda UG "40,853,749" 73% "89,190,000,000" Ganda lg 13% +Uganda UG "40,853,749" 73% "89,190,000,000" Hindi hi "2,200" +Uganda UG "40,853,749" 73% "89,190,000,000" Kinyarwanda rw "840,000" +Uganda UG "40,853,749" 73% "89,190,000,000" Lango [Uganda] laj 3.8% +Uganda UG "40,853,749" 73% "89,190,000,000" Masaaba myx "1,190,000" +Uganda UG "40,853,749" 73% "89,190,000,000" Nyankole nyn 6.3% +Uganda UG "40,853,749" 73% "89,190,000,000" Soga xog 5.3% +Uganda UG "40,853,749" 73% "89,190,000,000" official Swahili sw 75% "http://en.wikipedia.org/wiki/Swahili_language - Baganda generally don't speak Swahili, but it is in common use among the 25 million people elsewhere in the country, and is currently being implemented in schools nationwide (use 75% of Cpop for this figure)" +Uganda UG "40,853,749" 73% "89,190,000,000" Teso teo 3.9% +Uganda UG "40,853,749" 73% "89,190,000,000" Tooro ttj "770,000" +Ukraine UA "43,952,299" 100% "369,600,000,000" Belarusian be "366,000" +Ukraine UA "43,952,299" 100% "369,600,000,000" Bulgarian bg "215,000" +Ukraine UA "43,952,299" 100% "369,600,000,000" Crimean Turkish crh "247,000" http://2001.ukrcensus.gov.ua/eng/results/general/nationality/ +Ukraine UA "43,952,299" 100% "369,600,000,000" Greek el "7,210" +Ukraine UA "43,952,299" 100% "369,600,000,000" Hungarian hu "162,000" +Ukraine UA "43,952,299" 100% "369,600,000,000" Polish pl "1,040,000" +Ukraine UA "43,952,299" 100% "369,600,000,000" Romanian ro "230,000" +Ukraine UA "43,952,299" 100% "369,600,000,000" de_facto_official Russian ru 46% http://en.wikipedia.org/wiki/Russian_language_in_Ukraine +Ukraine UA "43,952,299" 100% "369,600,000,000" Rusyn rue "513,000" +Ukraine UA "43,952,299" 100% "369,600,000,000" Turkish tr "184,000" +Ukraine UA "43,952,299" 100% "369,600,000,000" official Ukrainian uk 65% +Ukraine UA "43,952,299" 100% "369,600,000,000" Yiddish yi "581,000" +United Arab Emirates AE "9,701,315" 90% "696,000,000,000" official Arabic ar 78% +United Arab Emirates AE "9,701,315" 90% "696,000,000,000" Baluchi bal "227,000" +United Arab Emirates AE "9,701,315" 90% "696,000,000,000" English en 50% +United Arab Emirates AE "9,701,315" 90% "696,000,000,000" Malayalam ml 7% +United Arab Emirates AE "9,701,315" 90% "696,000,000,000" Pashto ps "286,000" +United Arab Emirates AE "9,701,315" 90% "696,000,000,000" Persian fa "181,000" +United Kingdom GB "65,105,246" 99% "2,925,000,000,000" Bangla bn "438,000" +United Kingdom GB "65,105,246" 99% "2,925,000,000,000" Chinese (Traditional) zh_Hant "353,000" +United Kingdom GB "65,105,246" 99% "2,925,000,000,000" Cornish kw "2,000" http://en.wikipedia.org/wiki/Cornish_language The 2008 estimate is ~2000 speakers due to revival efforts +United Kingdom GB "65,105,246" 99% "2,925,000,000,000" official English en 99% +United Kingdom GB "65,105,246" 99% "2,925,000,000,000" French fr 19% +United Kingdom GB "65,105,246" 99% "2,925,000,000,000" German de 6% +United Kingdom GB "65,105,246" 99% "2,925,000,000,000" Greek el "218,000" +United Kingdom GB "65,105,246" 99% "2,925,000,000,000" official_regional Irish ga "17,100" "As with IE, we have to adjust the figures for real usage " +United Kingdom GB "65,105,246" 99% "2,925,000,000,000" Italian it "218,000" +United Kingdom GB "65,105,246" 99% "2,925,000,000,000" Kashmiri ks "126,000" +United Kingdom GB "65,105,246" 99% "2,925,000,000,000" Malayalam ml "23,000" http://www.ethnologue.com/show_country.asp?name=United+Kingdom +United Kingdom GB "65,105,246" 99% "2,925,000,000,000" Punjabi pa "516,000" +United Kingdom GB "65,105,246" 99% "2,925,000,000,000" Scots sco "1,760,000" 5% "http://www.ethnologue.com/show_language.asp?code=sco 100k+ native, plus 1.5 mil 2nd lang speakers. For languages not customarily written, the writing population is artificially set to 5% in the absence of better information." +United Kingdom GB "65,105,246" 99% "2,925,000,000,000" official_regional Scottish Gaelic gd "64,300" 5% "For languages not customarily written, the writing population is artificially set to 5% in the absence of better information." +United Kingdom GB "65,105,246" 99% "2,925,000,000,000" Sylheti syl "329,000" +United Kingdom GB "65,105,246" 99% "2,925,000,000,000" official_regional Welsh cy "501,000" +United Kingdom GB "65,105,246" 99% "2,925,000,000,000" Yiddish yi "32,100" http://en.wikipedia.org/wiki/Yiddish_language#Numbers_of_speakers +United States US "329,256,465" 99% "19,490,000,000,000" Cajun French frc "27,800" +United States US "329,256,465" 99% "19,490,000,000,000" Central Yupik esu "20,600" +United States US "329,256,465" 99% "19,490,000,000,000" Cherokee chr "25,300" 5% "For languages not customarily written, the writing population is artificially set to 5% in the absence of better information." +United States US "329,256,465" 99% "19,490,000,000,000" Chinese (Traditional) zh_Hant "2,260,000" +United States US "329,256,465" 99% "19,490,000,000,000" Choctaw cho "10,800" +United States US "329,256,465" 99% "19,490,000,000,000" Creek mus "4,000" +United States US "329,256,465" 99% "19,490,000,000,000" Chickasaw cic "75" +United States US "329,256,465" 99% "19,490,000,000,000" Dakota dak "19,500" +United States US "329,256,465" 99% "19,490,000,000,000" de_facto_official English en 96% +United States US "329,256,465" 99% "19,490,000,000,000" Filipino fil "1,370,000" +United States US "329,256,465" 99% "19,490,000,000,000" French fr "1,830,000" +United States US "329,256,465" 99% "19,490,000,000,000" German de "1,550,000" +United States US "329,256,465" 99% "19,490,000,000,000" official_regional Hawaiian haw "29,200" US 2005 census +United States US "329,256,465" 99% "19,490,000,000,000" Inupiaq ik "8,000" 5% "For languages not customarily written, the writing population is artificially set to 5% in the absence of better information." +United States US "329,256,465" 99% "19,490,000,000,000" Italian it "1,130,000" +United States US "329,256,465" 99% "19,490,000,000,000" Korean ko "1,000,000" +United States US "329,256,465" 99% "19,490,000,000,000" Lakota lkt "8,300" http://www.lakhota.org/html/status2.html (used lower figure) +United States US "329,256,465" 99% "19,490,000,000,000" Navajo nv "166,000" +United States US "329,256,465" 99% "19,490,000,000,000" Osage osa "9" https://www.ethnologue.com/language/osa +United States US "329,256,465" 99% "19,490,000,000,000" Pennsylvania German pdc "128,000" +United States US "329,256,465" 99% "19,490,000,000,000" Russian ru "791,000" +United States US "329,256,465" 99% "19,490,000,000,000" official_regional Spanish es 9.6% +United States US "329,256,465" 99% "19,490,000,000,000" Vietnamese vi "1,130,000" +United States US "329,256,465" 99% "19,490,000,000,000" Yiddish yi "162,000" http://en.wikipedia.org/wiki/Languages_of_the_United_States#Yiddish +Unknown Region ZZ 0 0% 0 Akan ak 0 NaN% +Unknown Region ZZ 0 0% 0 Bhojpuri bho 0 NaN% +Unknown Region ZZ 0 0% 0 Bihari bh NaN NaN% +Unknown Region ZZ 0 0% 0 Ido io 0 99% +Unknown Region ZZ 0 0% 0 Interlingua ia 0 99% +Unknown Region ZZ 0 0% 0 Kotava avk 0 99% +Unknown Region ZZ 0 0% 0 Lingua Franca Nova lfn 0 99% An artificial language. See http://en.wikipedia.org/wiki/Lingua_Franca_Nova +Unknown Region ZZ 0 0% 0 Novial nov 0 99% An artificial language. See http://en.wikipedia.org/wiki/Novial_language +Unknown Region ZZ 0 0% 0 Twi tw NaN NaN% +Unknown Region ZZ 0 0% 0 Volapük vo 0 99% "http://en.wikipedia.org/wiki/Volap%C3%BCk Artificial: 'There are an estimated 20-30 Volapük speakers in the world today.'; see also http://www.villagevoice.com/arts/0031,lafarge,16942,12.html" +Uruguay UY "3,369,299" 98% "78,160,000,000" official Spanish es 88% +Uzbekistan UZ "30,023,709" 99% "223,000,000,000" Kara-Kalpak kaa "472,000" +Uzbekistan UZ "30,023,709" 99% "223,000,000,000" Russian ru 14% +Uzbekistan UZ "30,023,709" 99% "223,000,000,000" Turkish tr "228,000" +Uzbekistan UZ "30,023,709" 99% "223,000,000,000" official Uzbek uz 85% "http://en.wikipedia.org/wiki/Uzbek_language#Writing_systems https://www.cia.gov/library/publications/the-world-factbook/geos/uz.html Latin/Cyrillic balance is estimated, based on literacy; younger education now in Latin" +Uzbekistan UZ "30,023,709" 99% "223,000,000,000" official Uzbek (Cyrillic) uz_Cyrl 15% "http://en.wikipedia.org/wiki/Uzbek_language#Writing_systems https://www.cia.gov/library/publications/the-world-factbook/geos/uz.html Latin/Cyrillic balance is estimated, based on literacy; younger education now in Latin" +Vanuatu VU "288,037" 83% "772,000,000" official Bislama bi 90% "native speaker pop is low, ~6200; but is most widely spoken 2nd language" +Vanuatu VU "288,037" 83% "772,000,000" official English en 83% +Vanuatu VU "288,037" 83% "772,000,000" official French fr 50% +Vatican City VA "1,000" 100% "37,220,000" de_facto_official Italian it 824 https://www.cia.gov/cia/publications/factbook/geos/vt.html CIA Factbook. +Vatican City VA "1,000" 100% "37,220,000" Latin la 824 http://news.bbc.co.uk/2/hi/europe/4475099.stm No population figure yet on use of Latin in Vatican. Estimate 100% of Vatican residents can use Latin. +Venezuela VE "31,689,176" 96% "381,600,000,000" official Spanish es 82% +Vietnam VN "97,040,334" 93% "648,700,000,000" Chinese (Traditional) zh_Hant "1,020,000" +Vietnam VN "97,040,334" 93% "648,700,000,000" Eastern Cham cjm "86,000" 60% +Vietnam VN "97,040,334" 93% "648,700,000,000" official Vietnamese vi 86% http://en.wikipedia.org/wiki/Vietnamese_language (could be higher if 2nd lang included; no data yet) +Wallis & Futuna WF "15,763" 50% "60,000,000" East Futuna fud "4,820" +Wallis & Futuna WF "15,763" 50% "60,000,000" official French fr "7,620" http://en.wikipedia.org/wiki/Wallis_and_futuna#Languages +Wallis & Futuna WF "15,763" 50% "60,000,000" Wallisian wls "9,440" +Western Sahara EH "619,551" 50% "906,500,000" official Arabic ar 100% +Yemen YE "28,667,230" 65% "73,630,000,000" official Arabic ar 74% +Yemen YE "28,667,230" 65% "73,630,000,000" English en 9% +Zambia ZM "16,445,079" 61% "68,930,000,000" Bemba bem 31% http://www.ethnologue.com/show_language.asp?code=bem +Zambia ZM "16,445,079" 61% "68,930,000,000" official English en 16% +Zambia ZM "16,445,079" 61% "68,930,000,000" Lozi loz 6% https://en.wikipedia.org/wiki/Lozi_language +Zambia ZM "16,445,079" 61% "68,930,000,000" Nyanja ny 15% +Zimbabwe ZW "14,030,368" 84% "34,270,000,000" official English en 42% "Common lingua franca, widely used. High literacy." +Zimbabwe ZW "14,030,368" 84% "34,270,000,000" Kalanga kck 5.3% +Zimbabwe ZW "14,030,368" 84% "34,270,000,000" Manyika mxc 6.5% +Zimbabwe ZW "14,030,368" 84% "34,270,000,000" Ndau ndc 6.1% +Zimbabwe ZW "14,030,368" 84% "34,270,000,000" official North Ndebele nd 12% +Zimbabwe ZW "14,030,368" 84% "34,270,000,000" Nyanja ny "268,000" +Zimbabwe ZW "14,030,368" 84% "34,270,000,000" official Shona sn 81% +Zimbabwe ZW "14,030,368" 84% "34,270,000,000" Tswana tn "31,200" +Zimbabwe ZW "14,030,368" 84% "34,270,000,000" Venda ve "89,200" + diff --git a/README.md b/README.md index 7ca5aa5..86f0a01 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Data in CLDR-raw folder comes from https://github.com/unicode-org/cldr/blob/mast ## Ideas -1. CLDR supplementalData.xml: https:/ /github.com/unicode-org/cldr/blob/master/common/supplemental/supplementalData.xml +1. CLDR supplementalData.xml: https://github.com/unicode-org/cldr/blob/master/common/supplemental/supplementalData.xml 1. use territoryContainment to build geographic groups 2. use languageData to detect default script 3. use languageData to have basic stats about territories diff --git a/build_stats.py b/build_stats.py index 42ea48e..8ac14d3 100755 --- a/build_stats.py +++ b/build_stats.py @@ -76,6 +76,9 @@ def parse(concat): data = clean_cldr(data) info(data, "cldr data are cleaned") + data = check_lang_territory_consistency(data) + info(data, "cldr consistency are done") + store(data, "3.result.csv") @@ -244,6 +247,37 @@ def clean_cldr(data): return data +def check_lang_territory_consistency(data): + """ use pop per lang_script and territory to detect potential errors """ + + cldr_data = pandas.read_csv("CLDR-raw/country_language_population_raw.txt", + sep="\t") + 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 = cldr_data[["CName", 'Language']] + # as we may have duplicated values now + cldr_data = cldr_data.drop_duplicates() + cldr_data = cldr_data.rename(columns={'CName':'territory', 'Language':'language'}) + + data = data.merge(cldr_data, how='left', + left_on=('language','region'), + right_on=('language','territory'), + suffixes=(False,'_cldr')) + data = data.rename(columns={'name': 'language_name'}) + + error = data[['language', 'region', 'territory']] + error = error[~(error.region.isnull())] + error = error[~(error.region == '')] + error = error[error.territory.isnull()].drop_duplicates() + store(error, '0.error.no population for this language-territory couple.csv') + + data = data.drop('territory', 1) + + return data def info(dataset, step): """Print basic informations about current dataset""" diff --git a/results/f30/0.error.no population for this language-territory couple.csv b/results/f30/0.error.no population for this language-territory couple.csv new file mode 100644 index 0000000..27c72fb --- /dev/null +++ b/results/f30/0.error.no population for this language-territory couple.csv @@ -0,0 +1,2 @@ +language,region,territory +an,es, From dbc4b1f17ccc7ac02b8157bc69b669566616441c Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Holcroft Date: Jun 17 2019 21:29:55 +0000 Subject: [PATCH 10/10] rename *region* in *territory* --- diff --git a/build_stats.py b/build_stats.py index 8ac14d3..0449336 100755 --- a/build_stats.py +++ b/build_stats.py @@ -131,7 +131,7 @@ def clean_2_remove(data): def guess_bcp47(data): - """Guess Language, Region and Script from filename""" + """Guess Language, Territory and Script from filename""" data['basename'] = data['filename'].apply(os.path.basename) data['full_lang'] = data['basename'].str.rsplit('.', 1, expand=True)[0] @@ -165,12 +165,12 @@ def guess_bcp47(data): data['language'] = data['lang'].str.rsplit('_', 1, expand=True)[0] - data['region'] = data['lang'].str.rsplit('_', 1, expand=True)[1] + data['territory'] = data['lang'].str.rsplit('_', 1, expand=True)[1] # store all unique values for debug store(data.drop_duplicates('lang', keep='last'), "1.debug.lang.csv") store(data.drop_duplicates('language', keep='last'), "1.debug.language.csv") - store(data.drop_duplicates('region', keep='last'), "1.debug.region.csv") + store(data.drop_duplicates('territory', keep='last'), "1.debug.territory.csv") store(data.drop_duplicates('script', keep='last'), "1.debug.script.csv") # remove temporary columns @@ -181,11 +181,11 @@ def guess_bcp47(data): def clean_bcp47(data): - """Remove impossible values for language and region""" - # remove region longer than 2 chars - store(data[data.region.str.len() > 2], '0.error.len(region)>2.csv') - data = data[~(data.region.str.len() > 2)] - info(data, "* remove if len(region)>2") + """Remove impossible values for language and territory""" + # remove territory longer than 2 chars + store(data[data.territory.str.len() > 2], '0.error.len(territory)>2.csv') + data = data[~(data.territory.str.len() > 2)] + info(data, "* remove if len(territory)>2") # remove languages longer than 3 chars store(data[data.language.str.len() > 3], '0.error.len(language)>3.csv') @@ -199,9 +199,9 @@ def clean_bcp47(data): info(data, "* remove if language.isdigit()") # set types - data.region = data.region.fillna('') + data.territory = data.territory.fillna('') data.script = data.script.fillna('') - data = data.astype({'region': 'str', 'language': 'str', 'script': 'str'}) + data = data.astype({'territory': 'str', 'language': 'str', 'script': 'str'}) return data @@ -229,7 +229,7 @@ def add_cldr(data): data = data.rename(columns={'name': 'script_name'}) data = data.drop('code', 1) - data = data.merge(cldr_territory, how='left', left_on='region', + data = data.merge(cldr_territory, how='left', left_on='territory', right_on='code', suffixes=(False, 'territory_')) data = data.rename(columns={'name': 'territory_name'}) data = data.drop('code', 1) @@ -261,24 +261,24 @@ def check_lang_territory_consistency(data): 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':'territory', 'Language':'language'}) + cldr_data = cldr_data.rename(columns={'CName':'terr', 'Language':'language'}) data = data.merge(cldr_data, how='left', - left_on=('language','region'), - right_on=('language','territory'), + left_on=('language','territory'), + right_on=('language','terr'), suffixes=(False,'_cldr')) - data = data.rename(columns={'name': 'language_name'}) - error = data[['language', 'region', 'territory']] - error = error[~(error.region.isnull())] - error = error[~(error.region == '')] - error = error[error.territory.isnull()].drop_duplicates() + error = data[['language', 'territory', 'terr']] + error = error[~(error.territory.isnull())] + error = error[~(error.territory == '')] + error = error[error.terr.isnull()].drop_duplicates() store(error, '0.error.no population for this language-territory couple.csv') - data = data.drop('territory', 1) + data = data.drop('terr', 1) return data + def info(dataset, step): """Print basic informations about current dataset""" print(" * "+step+" → we now have "+str(len(dataset))+" rows") diff --git a/results/f30/0.error.language not in cldr.csv b/results/f30/0.error.language not in cldr.csv index 30ad90e..2c9a843 100644 --- a/results/f30/0.error.language not in cldr.csv +++ b/results/f30/0.error.language not in cldr.csv @@ -1,4 +1,4 @@ -src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,script,language,region,language_name,script_name,territory_name +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,,,, diff --git a/results/f30/0.error.languages is numeric.csv b/results/f30/0.error.languages is numeric.csv index 9650cd4..29e809f 100644 --- a/results/f30/0.error.languages is numeric.csv +++ b/results/f30/0.error.languages is numeric.csv @@ -1,4 +1,4 @@ -src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,script,language,region +src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,script,language,territory libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/sbasic/shared/01.po,67,465,452,0,0,0,0,67,465,01.po,,01, libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/sbasic/shared/02.po,198,1482,1382,0,0,0,0,198,1482,02.po,,02, libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/helpcontent2/source/text/sbasic/shared/03.po,41,121,190,0,0,6,24,47,145,03.po,,03, diff --git a/results/f30/0.error.len(language)>3.csv b/results/f30/0.error.len(language)>3.csv index 3fd39d8..b6763ba 100644 --- a/results/f30/0.error.len(language)>3.csv +++ b/results/f30/0.error.len(language)>3.csv @@ -1,4 +1,4 @@ -src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,script,language,region +src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,script,language,territory boost-1.69.0-6.fc30.src.rpm.stats.csv,tools/build/example/gettext/russian.po,1,1,2,0,0,0,0,1,1,russian.po,,russian, chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/tr/messages.po,86,693,680,0,0,0,0,86,693,messages.po,,messages, chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,extension/_locales/sv/messages.po,86,693,685,0,0,0,0,86,693,messages.po,,messages, diff --git a/results/f30/0.error.len(region)>2.csv b/results/f30/0.error.len(region)>2.csv deleted file mode 100644 index b7e9df9..0000000 --- a/results/f30/0.error.len(region)>2.csv +++ /dev/null @@ -1,127 +0,0 @@ -src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,script,language,region -iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/zh_hant.po,115,258,115,0,0,0,0,115,258,zh_hant.po,,zh,hant -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/instsetoo_native/inc_openoffice/windows/msi_languages.po,196,432,408,3,11,358,3911,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/instsetoo_native/inc_openoffice/windows/msi_languages.po,528,3988,4028,7,96,22,270,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4033,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/instsetoo_native/inc_openoffice/windows/msi_languages.po,30,30,30,5,5,522,4319,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/instsetoo_native/inc_openoffice/windows/msi_languages.po,550,4294,3698,0,0,7,60,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,4542,5,78,12,128,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,4196,5,78,12,128,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/instsetoo_native/inc_openoffice/windows/msi_languages.po,7,23,25,35,41,515,4290,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po,550,4294,3888,0,0,7,60,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4461,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/instsetoo_native/inc_openoffice/windows/msi_languages.po,544,4201,4369,4,62,9,91,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/instsetoo_native/inc_openoffice/windows/msi_languages.po,531,4040,4191,8,98,18,216,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/instsetoo_native/inc_openoffice/windows/msi_languages.po,16,30,30,96,114,445,4210,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/instsetoo_native/inc_openoffice/windows/msi_languages.po,544,4201,4785,5,78,8,75,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/instsetoo_native/inc_openoffice/windows/msi_languages.po,529,4026,3991,7,96,21,232,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,3911,5,78,12,128,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,4745,5,78,12,128,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,5015,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3784,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4528,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3946,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4451,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/instsetoo_native/inc_openoffice/windows/msi_languages.po,529,4034,5195,8,98,18,216,555,4348,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4363,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/instsetoo_native/inc_openoffice/windows/msi_languages.po,521,4009,1599,14,120,20,219,555,4348,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4571,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4352,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/instsetoo_native/inc_openoffice/windows/msi_languages.po,531,4040,4040,8,98,18,216,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4284,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4930,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3400,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3496,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/instsetoo_native/inc_openoffice/windows/msi_languages.po,103,326,397,74,155,380,3873,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/instsetoo_native/inc_openoffice/windows/msi_languages.po,555,4334,3293,0,0,2,20,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4767,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4839,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4909,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,5715,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4767,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,4722,5,78,12,128,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,4105,5,78,12,128,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po,547,4227,3704,3,67,7,60,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,5110,5,78,12,128,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po,556,4339,3926,0,0,1,15,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4333,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4069,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4078,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4513,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4917,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,1232,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/instsetoo_native/inc_openoffice/windows/msi_languages.po,31,31,31,5,5,521,4318,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/instsetoo_native/inc_openoffice/windows/msi_languages.po,96,110,114,8,14,451,4224,555,4348,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/instsetoo_native/inc_openoffice/windows/msi_languages.po,556,4351,4364,0,0,0,0,556,4351,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3609,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/instsetoo_native/inc_openoffice/windows/msi_languages.po,8,8,8,27,31,522,4315,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,2186,5,78,12,128,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/instsetoo_native/inc_openoffice/windows/msi_languages.po,526,4025,4712,10,105,19,218,555,4348,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,3572,5,78,12,128,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3535,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/instsetoo_native/inc_openoffice/windows/msi_languages.po,528,4023,3933,8,98,20,230,556,4351,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/instsetoo_native/inc_openoffice/windows/msi_languages.po,522,3954,4824,7,96,24,292,553,4342,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/instsetoo_native/inc_openoffice/windows/msi_languages.po,2,2,2,0,0,555,4352,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/instsetoo_native/inc_openoffice/windows/msi_languages.po,44,58,58,58,66,455,4230,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/instsetoo_native/inc_openoffice/windows/msi_languages.po,555,4334,1399,0,0,2,20,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/instsetoo_native/inc_openoffice/windows/msi_languages.po,556,4339,3550,0,0,1,15,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3664,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/instsetoo_native/inc_openoffice/windows/msi_languages.po,527,4018,4442,9,104,21,232,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/instsetoo_native/inc_openoffice/windows/msi_languages.po,531,4040,4218,7,96,19,218,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/instsetoo_native/inc_openoffice/windows/msi_languages.po,536,4136,3255,5,78,12,128,553,4342,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/instsetoo_native/inc_openoffice/windows/msi_languages.po,529,4036,3733,9,100,19,218,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/instsetoo_native/inc_openoffice/windows/msi_languages.po,529,4034,3849,8,98,18,216,555,4348,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/instsetoo_native/inc_openoffice/windows/msi_languages.po,539,4145,4388,5,78,12,128,556,4351,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/instsetoo_native/inc_openoffice/windows/msi_languages.po,532,4057,2345,5,78,20,219,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4003,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/instsetoo_native/inc_openoffice/windows/msi_languages.po,532,4018,4030,5,78,20,258,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4560,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4001,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/instsetoo_native/inc_openoffice/windows/msi_languages.po,374,3385,2573,90,232,93,737,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/instsetoo_native/inc_openoffice/windows/msi_languages.po,528,3988,5330,7,96,22,270,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/instsetoo_native/inc_openoffice/windows/msi_languages.po,548,4214,4637,4,74,5,66,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/instsetoo_native/inc_openoffice/windows/msi_languages.po,538,4102,3637,6,104,13,148,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,3743,5,78,12,128,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/instsetoo_native/inc_openoffice/windows/msi_languages.po,541,4153,4688,5,78,11,123,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3934,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4780,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4650,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/instsetoo_native/inc_openoffice/windows/msi_languages.po,544,4201,4257,5,78,8,75,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3616,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/instsetoo_native/inc_openoffice/windows/msi_languages.po,530,4038,3570,7,96,20,220,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/instsetoo_native/inc_openoffice/windows/msi_languages.po,531,4040,3043,8,98,18,216,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/instsetoo_native/inc_openoffice/windows/msi_languages.po,0,0,0,0,0,557,4354,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/instsetoo_native/inc_openoffice/windows/msi_languages.po,531,4040,9141,8,98,18,216,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/instsetoo_native/inc_openoffice/windows/msi_languages.po,529,4034,4565,8,98,18,216,555,4348,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/instsetoo_native/inc_openoffice/windows/msi_languages.po,533,4058,4051,5,78,19,218,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,3138,5,78,12,128,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4027,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4067,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/instsetoo_native/inc_openoffice/windows/msi_languages.po,520,3956,4475,7,119,29,276,556,4351,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/instsetoo_native/inc_openoffice/windows/msi_languages.po,434,3859,3452,117,398,6,81,557,4338,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/instsetoo_native/inc_openoffice/windows/msi_languages.po,434,3859,3452,117,398,6,81,557,4338,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/instsetoo_native/inc_openoffice/windows/msi_languages.po,368,3379,2605,96,238,93,737,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/instsetoo_native/inc_openoffice/windows/msi_languages.po,374,3385,4517,90,232,93,737,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4136,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/instsetoo_native/inc_openoffice/windows/msi_languages.po,529,4019,3989,7,96,21,239,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/instsetoo_native/inc_openoffice/windows/msi_languages.po,0,0,0,0,0,557,4354,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/instsetoo_native/inc_openoffice/windows/msi_languages.po,541,4153,3281,5,78,11,123,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,3316,5,78,12,128,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/instsetoo_native/inc_openoffice/windows/msi_languages.po,530,4038,4019,7,96,20,220,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,1272,5,78,12,128,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/instsetoo_native/inc_openoffice/windows/msi_languages.po,1,1,1,1,1,555,4352,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/instsetoo_native/inc_openoffice/windows/msi_languages.po,45,59,68,57,68,455,4227,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3672,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/instsetoo_native/inc_openoffice/windows/msi_languages.po,374,3385,4248,90,232,93,737,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/instsetoo_native/inc_openoffice/windows/msi_languages.po,38,39,39,50,55,469,4260,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/instsetoo_native/inc_openoffice/windows/msi_languages.po,541,4153,3466,5,78,11,123,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3629,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/instsetoo_native/inc_openoffice/windows/msi_languages.po,10,23,29,0,0,547,4331,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/instsetoo_native/inc_openoffice/windows/msi_languages.po,433,2531,2102,4,43,120,1780,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/instsetoo_native/inc_openoffice/windows/msi_languages.po,374,3385,4465,90,232,93,737,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/instsetoo_native/inc_openoffice/windows/msi_languages.po,556,4339,5242,0,0,1,15,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/instsetoo_native/inc_openoffice/windows/msi_languages.po,538,4102,5731,5,78,14,174,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/instsetoo_native/inc_openoffice/windows/msi_languages.po,374,3385,2852,90,232,93,737,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,1161,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,1087,0,0,0,0,557,4354,msi_languages.po,,msi,languages -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/instsetoo_native/inc_openoffice/windows/msi_languages.po,376,3387,2951,90,232,91,735,557,4354,msi_languages.po,,msi,languages diff --git a/results/f30/0.error.len(territory)>2.csv b/results/f30/0.error.len(territory)>2.csv new file mode 100644 index 0000000..f9142f3 --- /dev/null +++ b/results/f30/0.error.len(territory)>2.csv @@ -0,0 +1,127 @@ +src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,script,language,territory +iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/zh_hant.po,115,258,115,0,0,0,0,115,258,zh_hant.po,,zh,hant +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/instsetoo_native/inc_openoffice/windows/msi_languages.po,196,432,408,3,11,358,3911,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/instsetoo_native/inc_openoffice/windows/msi_languages.po,528,3988,4028,7,96,22,270,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4033,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/instsetoo_native/inc_openoffice/windows/msi_languages.po,30,30,30,5,5,522,4319,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/instsetoo_native/inc_openoffice/windows/msi_languages.po,550,4294,3698,0,0,7,60,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,4542,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,4196,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/instsetoo_native/inc_openoffice/windows/msi_languages.po,7,23,25,35,41,515,4290,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po,550,4294,3888,0,0,7,60,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4461,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/instsetoo_native/inc_openoffice/windows/msi_languages.po,544,4201,4369,4,62,9,91,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/instsetoo_native/inc_openoffice/windows/msi_languages.po,531,4040,4191,8,98,18,216,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/instsetoo_native/inc_openoffice/windows/msi_languages.po,16,30,30,96,114,445,4210,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/instsetoo_native/inc_openoffice/windows/msi_languages.po,544,4201,4785,5,78,8,75,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/instsetoo_native/inc_openoffice/windows/msi_languages.po,529,4026,3991,7,96,21,232,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,3911,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,4745,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,5015,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3784,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4528,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3946,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4451,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/instsetoo_native/inc_openoffice/windows/msi_languages.po,529,4034,5195,8,98,18,216,555,4348,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4363,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/instsetoo_native/inc_openoffice/windows/msi_languages.po,521,4009,1599,14,120,20,219,555,4348,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4571,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4352,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/instsetoo_native/inc_openoffice/windows/msi_languages.po,531,4040,4040,8,98,18,216,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4284,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4930,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3400,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3496,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/instsetoo_native/inc_openoffice/windows/msi_languages.po,103,326,397,74,155,380,3873,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/instsetoo_native/inc_openoffice/windows/msi_languages.po,555,4334,3293,0,0,2,20,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4767,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4839,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4909,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,5715,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4767,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,4722,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,4105,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po,547,4227,3704,3,67,7,60,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,5110,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po,556,4339,3926,0,0,1,15,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4333,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4069,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4078,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4513,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4917,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,1232,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/instsetoo_native/inc_openoffice/windows/msi_languages.po,31,31,31,5,5,521,4318,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/instsetoo_native/inc_openoffice/windows/msi_languages.po,96,110,114,8,14,451,4224,555,4348,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/instsetoo_native/inc_openoffice/windows/msi_languages.po,556,4351,4364,0,0,0,0,556,4351,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3609,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/instsetoo_native/inc_openoffice/windows/msi_languages.po,8,8,8,27,31,522,4315,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,2186,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/instsetoo_native/inc_openoffice/windows/msi_languages.po,526,4025,4712,10,105,19,218,555,4348,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,3572,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3535,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/instsetoo_native/inc_openoffice/windows/msi_languages.po,528,4023,3933,8,98,20,230,556,4351,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/instsetoo_native/inc_openoffice/windows/msi_languages.po,522,3954,4824,7,96,24,292,553,4342,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/instsetoo_native/inc_openoffice/windows/msi_languages.po,2,2,2,0,0,555,4352,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/instsetoo_native/inc_openoffice/windows/msi_languages.po,44,58,58,58,66,455,4230,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/instsetoo_native/inc_openoffice/windows/msi_languages.po,555,4334,1399,0,0,2,20,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/instsetoo_native/inc_openoffice/windows/msi_languages.po,556,4339,3550,0,0,1,15,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3664,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/instsetoo_native/inc_openoffice/windows/msi_languages.po,527,4018,4442,9,104,21,232,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/instsetoo_native/inc_openoffice/windows/msi_languages.po,531,4040,4218,7,96,19,218,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/instsetoo_native/inc_openoffice/windows/msi_languages.po,536,4136,3255,5,78,12,128,553,4342,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/instsetoo_native/inc_openoffice/windows/msi_languages.po,529,4036,3733,9,100,19,218,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/instsetoo_native/inc_openoffice/windows/msi_languages.po,529,4034,3849,8,98,18,216,555,4348,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/instsetoo_native/inc_openoffice/windows/msi_languages.po,539,4145,4388,5,78,12,128,556,4351,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/instsetoo_native/inc_openoffice/windows/msi_languages.po,532,4057,2345,5,78,20,219,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4003,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/instsetoo_native/inc_openoffice/windows/msi_languages.po,532,4018,4030,5,78,20,258,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4560,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4001,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/instsetoo_native/inc_openoffice/windows/msi_languages.po,374,3385,2573,90,232,93,737,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/instsetoo_native/inc_openoffice/windows/msi_languages.po,528,3988,5330,7,96,22,270,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/instsetoo_native/inc_openoffice/windows/msi_languages.po,548,4214,4637,4,74,5,66,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/instsetoo_native/inc_openoffice/windows/msi_languages.po,538,4102,3637,6,104,13,148,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,3743,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/instsetoo_native/inc_openoffice/windows/msi_languages.po,541,4153,4688,5,78,11,123,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3934,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4780,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4650,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/instsetoo_native/inc_openoffice/windows/msi_languages.po,544,4201,4257,5,78,8,75,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3616,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/instsetoo_native/inc_openoffice/windows/msi_languages.po,530,4038,3570,7,96,20,220,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/instsetoo_native/inc_openoffice/windows/msi_languages.po,531,4040,3043,8,98,18,216,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/instsetoo_native/inc_openoffice/windows/msi_languages.po,0,0,0,0,0,557,4354,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/instsetoo_native/inc_openoffice/windows/msi_languages.po,531,4040,9141,8,98,18,216,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/instsetoo_native/inc_openoffice/windows/msi_languages.po,529,4034,4565,8,98,18,216,555,4348,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/instsetoo_native/inc_openoffice/windows/msi_languages.po,533,4058,4051,5,78,19,218,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,3138,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4027,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4067,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/instsetoo_native/inc_openoffice/windows/msi_languages.po,520,3956,4475,7,119,29,276,556,4351,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/instsetoo_native/inc_openoffice/windows/msi_languages.po,434,3859,3452,117,398,6,81,557,4338,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/instsetoo_native/inc_openoffice/windows/msi_languages.po,434,3859,3452,117,398,6,81,557,4338,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/instsetoo_native/inc_openoffice/windows/msi_languages.po,368,3379,2605,96,238,93,737,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/instsetoo_native/inc_openoffice/windows/msi_languages.po,374,3385,4517,90,232,93,737,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,4136,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/instsetoo_native/inc_openoffice/windows/msi_languages.po,529,4019,3989,7,96,21,239,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/instsetoo_native/inc_openoffice/windows/msi_languages.po,0,0,0,0,0,557,4354,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/instsetoo_native/inc_openoffice/windows/msi_languages.po,541,4153,3281,5,78,11,123,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,3316,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/instsetoo_native/inc_openoffice/windows/msi_languages.po,530,4038,4019,7,96,20,220,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/instsetoo_native/inc_openoffice/windows/msi_languages.po,540,4148,1272,5,78,12,128,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/instsetoo_native/inc_openoffice/windows/msi_languages.po,1,1,1,1,1,555,4352,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/instsetoo_native/inc_openoffice/windows/msi_languages.po,45,59,68,57,68,455,4227,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3672,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/instsetoo_native/inc_openoffice/windows/msi_languages.po,374,3385,4248,90,232,93,737,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/instsetoo_native/inc_openoffice/windows/msi_languages.po,38,39,39,50,55,469,4260,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/instsetoo_native/inc_openoffice/windows/msi_languages.po,541,4153,3466,5,78,11,123,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,3629,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/instsetoo_native/inc_openoffice/windows/msi_languages.po,10,23,29,0,0,547,4331,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/instsetoo_native/inc_openoffice/windows/msi_languages.po,433,2531,2102,4,43,120,1780,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/instsetoo_native/inc_openoffice/windows/msi_languages.po,374,3385,4465,90,232,93,737,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/instsetoo_native/inc_openoffice/windows/msi_languages.po,556,4339,5242,0,0,1,15,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/instsetoo_native/inc_openoffice/windows/msi_languages.po,538,4102,5731,5,78,14,174,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/instsetoo_native/inc_openoffice/windows/msi_languages.po,374,3385,2852,90,232,93,737,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,1161,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/instsetoo_native/inc_openoffice/windows/msi_languages.po,557,4354,1087,0,0,0,0,557,4354,msi_languages.po,,msi,languages +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/instsetoo_native/inc_openoffice/windows/msi_languages.po,376,3387,2951,90,232,91,735,557,4354,msi_languages.po,,msi,languages diff --git a/results/f30/0.error.no population for this language-territory couple.csv b/results/f30/0.error.no population for this language-territory couple.csv index 27c72fb..2314da6 100644 --- a/results/f30/0.error.no population for this language-territory couple.csv +++ b/results/f30/0.error.no population for this language-territory couple.csv @@ -1,2 +1,2 @@ -language,region,territory +language,territory,terr an,es, diff --git a/results/f30/1.debug.lang.csv b/results/f30/1.debug.lang.csv index 4628dfd..a516b51 100644 --- a/results/f30/1.debug.lang.csv +++ b/results/f30/1.debug.lang.csv @@ -1,4 +1,4 @@ -src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,full_lang,lang,script,language,region +src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,full_lang,lang,script,language,territory 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,en_nz,,en,nz boost-1.69.0-6.fc30.src.rpm.stats.csv,tools/build/example/gettext/russian.po,1,1,2,0,0,0,0,1,1,russian.po,russian,russian,,russian, 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,ts,,ts, diff --git a/results/f30/1.debug.language.csv b/results/f30/1.debug.language.csv index ae19407..1f08fdf 100644 --- a/results/f30/1.debug.language.csv +++ b/results/f30/1.debug.language.csv @@ -1,4 +1,4 @@ -src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,full_lang,lang,script,language,region +src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,full_lang,lang,script,language,territory boost-1.69.0-6.fc30.src.rpm.stats.csv,tools/build/example/gettext/russian.po,1,1,2,0,0,0,0,1,1,russian.po,russian,russian,,russian, 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,ts,,ts, 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,,nhn, diff --git a/results/f30/1.debug.region.csv b/results/f30/1.debug.region.csv deleted file mode 100644 index c1d66d7..0000000 --- a/results/f30/1.debug.region.csv +++ /dev/null @@ -1,67 +0,0 @@ -src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,full_lang,lang,script,language,region -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,en_nz,,en,nz -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,az_ir,,az,ir -iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/zh_hant.po,115,258,115,0,0,0,0,115,258,zh_hant.po,zh_hant,zh_hant,,zh,hant -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,es_ve,,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,es_uy,,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,es_sv,,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,es_pr,,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,es_pe,,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,es_pa,,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,es_ni,,es,ni -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,es_hn,,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,es_gt,,es,gt -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,es_ec,,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,es_do,,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,es_cr,,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,es_co,,es,co -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,be_by,,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,bg_bg,,bg,bg -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,bs_ba,,bs,ba -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,cs_cz,,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,da_dk,,da,dk -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,el_gr,,el,gr -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,he_il,,he,il -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,hr_hr,,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,hu_hu,,hu,hu -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,it_it,,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,lo_la,,lo,la -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,ne_np,,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,nl_nl,,nl,nl -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,pl_pl,,pl,pl -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,pt_pt,,pt,pt -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,sk_sk,,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,sl_si,,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,sq_al,,sq,al -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,sv_se,,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,sw_tz,,sw,tz -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,th_th,,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,tr_tr,,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,uk_ua,,uk,ua -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,zu_za,,zu,za -libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/instsetoo_native/inc_openoffice/windows/msi_languages.po,376,3387,2951,90,232,91,735,557,4354,msi_languages.po,msi_languages,msi_languages,,msi,languages -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,es_es,,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,es_ar,,es,ar -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,ur_pk,,ur,pk -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,et_ee,,et,ee -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,vi_vn,,vi,vn -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,si_lk,,si,lk -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,lv_lv,,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,lt_lt,,lt,lt -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,es_mx,,es,mx -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,bn_bd,,bn,bd -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,ru_ru,,ru,ru -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,en_us,,en,us -qt5-qtdeclarative-5.12.1-1.fc30.src.rpm.stats.csv,examples/qml/qml-i18n/i18n/qml_en_au.ts,1,1,1,0,0,0,0,1,1,qml_en_au.ts,qml_en_au,qml_en_au,,qml_en,au -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,es_cl,,es,cl -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,de_ch,,de,ch -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,fr_fr,,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,de_de,,de,de -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,zh_cn,,zh,cn -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,en_ca,,en,ca -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,bn_in,,bn,in -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,en_gb,,en,gb -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,zh_tw,,zh,tw -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,zh_hk,,zh,hk -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,ms,,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,pt_br,,pt,br diff --git a/results/f30/1.debug.script.csv b/results/f30/1.debug.script.csv index 858a91d..8ef2082 100644 --- a/results/f30/1.debug.script.csv +++ b/results/f30/1.debug.script.csv @@ -1,4 +1,4 @@ -src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,full_lang,lang,script,language,region +src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,full_lang,lang,script,language,territory 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,fr@braille,fr,braille,fr, 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,en@arabic,en,arabic,en, 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,en@greek,en,greek,en, diff --git a/results/f30/1.debug.territory.csv b/results/f30/1.debug.territory.csv new file mode 100644 index 0000000..d9da3c2 --- /dev/null +++ b/results/f30/1.debug.territory.csv @@ -0,0 +1,67 @@ +src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,full_lang,lang,script,language,territory +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,en_nz,,en,nz +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,az_ir,,az,ir +iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/zh_hant.po,115,258,115,0,0,0,0,115,258,zh_hant.po,zh_hant,zh_hant,,zh,hant +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,es_ve,,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,es_uy,,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,es_sv,,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,es_pr,,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,es_pe,,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,es_pa,,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,es_ni,,es,ni +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,es_hn,,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,es_gt,,es,gt +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,es_ec,,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,es_do,,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,es_cr,,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,es_co,,es,co +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,be_by,,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,bg_bg,,bg,bg +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,bs_ba,,bs,ba +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,cs_cz,,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,da_dk,,da,dk +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,el_gr,,el,gr +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,he_il,,he,il +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,hr_hr,,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,hu_hu,,hu,hu +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,it_it,,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,lo_la,,lo,la +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,ne_np,,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,nl_nl,,nl,nl +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,pl_pl,,pl,pl +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,pt_pt,,pt,pt +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,sk_sk,,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,sl_si,,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,sq_al,,sq,al +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,sv_se,,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,sw_tz,,sw,tz +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,th_th,,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,tr_tr,,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,uk_ua,,uk,ua +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,zu_za,,zu,za +libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/instsetoo_native/inc_openoffice/windows/msi_languages.po,376,3387,2951,90,232,91,735,557,4354,msi_languages.po,msi_languages,msi_languages,,msi,languages +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,es_es,,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,es_ar,,es,ar +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,ur_pk,,ur,pk +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,et_ee,,et,ee +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,vi_vn,,vi,vn +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,si_lk,,si,lk +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,lv_lv,,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,lt_lt,,lt,lt +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,es_mx,,es,mx +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,bn_bd,,bn,bd +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,ru_ru,,ru,ru +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,en_us,,en,us +qt5-qtdeclarative-5.12.1-1.fc30.src.rpm.stats.csv,examples/qml/qml-i18n/i18n/qml_en_au.ts,1,1,1,0,0,0,0,1,1,qml_en_au.ts,qml_en_au,qml_en_au,,qml_en,au +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,es_cl,,es,cl +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,de_ch,,de,ch +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,fr_fr,,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,de_de,,de,de +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,zh_cn,,zh,cn +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,en_ca,,en,ca +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,bn_in,,bn,in +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,en_gb,,en,gb +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,zh_tw,,zh,tw +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,zh_hk,,zh,hk +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,ms,,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,pt_br,,pt,br diff --git a/results/f30/3.result.csv b/results/f30/3.result.csv index f35c180..6970cad 100644 --- a/results/f30/3.result.csv +++ b/results/f30/3.result.csv @@ -1,4 +1,4 @@ -src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,script,language,region,language_name,script_name,territory_name +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,,