Added utility for compiling .mo files
							parent
							
								
									b758ac161d
								
							
						
					
					
						commit
						b98837a8a2
					
				@ -0,0 +1,14 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
# Compiles portable object (.po) files into machine object (.mo) files
 | 
			
		||||
# Requires GNU gettext 
 | 
			
		||||
 | 
			
		||||
arrLocales=($PWD/*/);
 | 
			
		||||
 | 
			
		||||
# compiles message catalogs to binary format
 | 
			
		||||
# requires GNU gettext  
 | 
			
		||||
for f in "${arrLocales[@]}"; do
 | 
			
		||||
  echo -n `msgfmt -o ${f}LC_MESSAGES/messages.mo ${f}LC_MESSAGES/messages.po`
 | 
			
		||||
  echo "Compiled ${f}LC_MESSAGES/messages.po"
 | 
			
		||||
done
 | 
			
		||||
 | 
			
		||||
					Loading…
					
					
				
		Reference in New Issue