
Generate MO files
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
Very simple service menu for generating MO from PO files.
Single-user installation:
copy the .desktop file to /.kde/share/apps/konqueror/servicemenus/
System-wide installation:
copy the .desktop file as root to /usr/share/apps/konqueror/servicemenus/
14 years ago
1.2 - Some changes suggested by undefined. Thanks!!
1.1 - Changed icon from "kbabel" to "locale"
1.0 - Initial release
14 years ago
1.2 - Some changes suggested by undefined. Thanks!!
1.1 - Changed icon from "kbabel" to "locale"
1.0 - Initial release
undefined
14 years ago
[CODE]
[Desktop Entry]
ServiceTypes=application/x-gettext
Actions=GenMoFile;
Icon=kbabel
[Desktop Action GenMoFile]
Name=Generate MO file
Name[it]=Genera file MO
Name[de]=Erstelle MO Datei
Icon=kbabel
Exec=msgfmt %F -o "`echo %F | perl -pe 's/\.po$//'`.mo"
X-KDE-Priority=TopLevel
[/CODE]
Report
NilsK
14 years ago
Report
smart2128
14 years ago
Report
bsander
14 years ago
Report
smart2128
14 years ago
MO stands for “Machine Object”. A MO file contains binary data suitable for reading by computers. The contents of a MO file are organised as a database to minimize the lookup time for translated strings.
Report