| 
									
										
										
										
											2006-03-03 17:30:35 +00:00
										 |  |  | #!/bin/bash | 
					
						
							|  |  |  | # $Id$ | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Copyright (C) 2004 - 2006  Roland Gruber | 
					
						
							|  |  |  | # This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # This script is run to create archives of all messages.po files. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-13 10:53:47 +00:00
										 |  |  | #!/bin/bash | 
					
						
							| 
									
										
										
										
											2005-10-08 09:32:14 +00:00
										 |  |  | echo "Generating Catalan translation template" | 
					
						
							| 
									
										
										
										
											2005-03-13 10:53:47 +00:00
										 |  |  | ./make_po_ca | 
					
						
							|  |  |  | tar -czf messages.po_ca.tar.gz messages.po   | 
					
						
							| 
									
										
										
										
											2005-10-08 09:32:14 +00:00
										 |  |  | echo " " | 
					
						
							| 
									
										
										
										
											2006-02-11 13:18:22 +00:00
										 |  |  | echo "Generating Dutch translation template" | 
					
						
							|  |  |  | ./make_po_nl | 
					
						
							|  |  |  | tar -czf messages.po_nl.tar.gz messages.po   | 
					
						
							|  |  |  | echo " " | 
					
						
							| 
									
										
										
										
											2005-10-08 09:32:14 +00:00
										 |  |  | echo "Generating Spanish translation template" | 
					
						
							| 
									
										
										
										
											2005-03-13 10:53:47 +00:00
										 |  |  | ./make_po_es | 
					
						
							|  |  |  | tar -czf messages.po_es.tar.gz messages.po   | 
					
						
							| 
									
										
										
										
											2005-10-08 09:32:14 +00:00
										 |  |  | echo " " | 
					
						
							|  |  |  | echo "Generating French translation template" | 
					
						
							| 
									
										
										
										
											2005-03-13 10:53:47 +00:00
										 |  |  | ./make_po_fr | 
					
						
							|  |  |  | tar -czf messages.po_fr.tar.gz messages.po   | 
					
						
							| 
									
										
										
										
											2005-10-08 09:32:14 +00:00
										 |  |  | echo " " | 
					
						
							|  |  |  | echo "Generating Hungarian translation template" | 
					
						
							| 
									
										
										
										
											2005-03-13 10:53:47 +00:00
										 |  |  | ./make_po_hu | 
					
						
							|  |  |  | tar -czf messages.po_hu.tar.gz messages.po   | 
					
						
							| 
									
										
										
										
											2005-10-08 09:32:14 +00:00
										 |  |  | echo " " | 
					
						
							|  |  |  | echo "Generating Italian translation template" | 
					
						
							| 
									
										
										
										
											2005-03-13 10:53:47 +00:00
										 |  |  | ./make_po_it | 
					
						
							|  |  |  | tar -czf messages.po_it.tar.gz messages.po   | 
					
						
							| 
									
										
										
										
											2005-10-08 09:32:14 +00:00
										 |  |  | echo " " | 
					
						
							|  |  |  | echo "Generating Japanese translation template" | 
					
						
							| 
									
										
										
										
											2005-03-13 10:53:47 +00:00
										 |  |  | ./make_po_jp | 
					
						
							|  |  |  | tar -czf messages.po_jp.tar.gz messages.po   | 
					
						
							| 
									
										
										
										
											2006-01-03 21:44:16 +00:00
										 |  |  | echo " " | 
					
						
							|  |  |  | echo "Generating Chinese translation template" | 
					
						
							|  |  |  | ./make_po_zh | 
					
						
							|  |  |  | tar -czf messages.po_zh.tar.gz messages.po   | 
					
						
							| 
									
										
										
										
											2005-03-13 10:53:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-29 12:20:48 +00:00
										 |  |  | rm messages.po |