/usr/share/gettext-lint/count.xsl is in gettext-lint 0.4-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:template match="/po-file-status">
<xsl:value-of select="count(file[@untranslated or @fuzzy or error])"/>
</xsl:template>
<xsl:template match="/po-file-checker|/pot-file-checker|/po-file-spell">
<xsl:value-of select="count(file/error)"/>
</xsl:template>
<xsl:template match="/po-file-consistency">
<xsl:value-of select="count(inconsistency)"/>
</xsl:template>
</xsl:stylesheet>
|