diff --git a/pages/common/msgfmt.md b/pages/common/msgfmt.md new file mode 100644 index 0000000000..e3342cbdae --- /dev/null +++ b/pages/common/msgfmt.md @@ -0,0 +1,8 @@ +# msgfmt + +> Compile message catalog to binary format. +> More information: . + +- Convert a `.po` file to a `.mo` file: + +`msgfmt {{path/to/file.po}} -o {{path/to/file.mo}}` diff --git a/pages/common/msgunfmt.md b/pages/common/msgunfmt.md new file mode 100644 index 0000000000..d1ad984c73 --- /dev/null +++ b/pages/common/msgunfmt.md @@ -0,0 +1,12 @@ +# msgunfmt + +> Decompile message catalog from the binary format. +> More information: . + +- Output conversion: + +`msgunfmt {{path/to/file.mo}}` + +- Convert a `.mo` file to a `.po` file: + +`msgunfmt {{path/to/file.mo}} > {{path/to/file.po}}`