HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

pocount — Translate Toolkit utility to get translation progress from file, supporting several formats. More in

Submitted by: @import:tldr-pages··
0
Viewed 0 times
pocounttoolkittranslatecommandcligettranslationutility

Problem

How to use the pocount command: Translate Toolkit utility to get translation progress from file, supporting several formats. More information: <https://docs.translatehouse.org/projects/translate-toolkit/en/latest/commands/pocount.html>.

Solution

pocount — Translate Toolkit utility to get translation progress from file, supporting several formats. More information: <https://docs.translatehouse.org/projects/translate-toolkit/en/latest/commands/pocount.html>.

Print a colorful table with the translation progress of a file:
pocount {{path/to/file.po}}


Print translation progress of various files, one line per file:
pocount --short {{translation_*.ts}}


Generate a CSV file with the translation progress of various files:
pocount --csv {{translation_*.ts}} > {{path/to/translation_progress.csv}}

Code Snippets

Print a colorful table with the translation progress of a file

pocount {{path/to/file.po}}

Print translation progress of various files, one line per file

pocount --short {{translation_*.ts}}

Generate a CSV file with the translation progress of various files

pocount --csv {{translation_*.ts}} > {{path/to/translation_progress.csv}}

Context

tldr-pages: common/pocount

Revisions (0)

No revisions yet.