mirror of
				https://git.proxmox.com/git/grub2
				synced 2025-11-03 23:50:02 +00:00 
			
		
		
		
	Translation project doesn't require copyright disclaimers. They're independant from us. They're responsible for their copyright story.
		
			
				
	
	
		
			21 lines
		
	
	
		
			352 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			352 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
rsync -Lrtvz translationproject.org::tp/latest/grub/ po
 | 
						|
 | 
						|
autogenerated="en@quot en@hebrew de@hebrew en@cyrillic en@greek en@arabic en@piglatin de_CH"
 | 
						|
 | 
						|
 | 
						|
for x in $autogenerated; do
 | 
						|
    rm -f "po/$x.po";
 | 
						|
done
 | 
						|
 | 
						|
 | 
						|
(
 | 
						|
    (
 | 
						|
	cd po && ls *.po| cut -d. -f1
 | 
						|
	for x in $autogenerated; do
 | 
						|
	    echo "$x";
 | 
						|
	done
 | 
						|
    ) | sort | uniq | xargs
 | 
						|
) >po/LINGUAS
 |