⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gettext.info

📁 asterisk用 的voip记费软件
💻 INFO
字号:
Key Terms	1. MO => Machine Object File	2. PO => Portable Object FileContents	1. Generation of the Portable Objects Files.	2. Generation of Machine Object Files.	3. Merging the PO Files1. Generation of the Portable Objects Files	you can generate the po file with the help of xgettext utility.		> xgettext -n --no-wrap *.php 	if you want xgettext to traverse the child directories and search for ".inc" and ".php" files.	> find | grep [.][p,i][h,n][p,c]$ | xargs xgettext -n --no-wrap	this will get all the gettext entries from the all php file and generate a po file.2. Generation of Machine Object Files	you can convert your po file when it is translated, to the mo file. mo file is the binary file.		> msgfmt messages.po  	this will generate a mo file.3. Merging the PO Files	you can merge your po files if you have changed your text in the files and regenerate a po file.		> msgmerge --no-wrap old.po  messages.po --output-file=new.po	this will generate a mo file.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -