mirror of
				https://github.com/Jonny007-MKD/OTR-SaneRename
				synced 2025-11-03 16:15:35 +01:00 
			
		
		
		
	Fixed language bug in funcConvertName
This commit is contained in:
		
							parent
							
								
									a81962ad75
								
							
						
					
					
						commit
						6c2b1795e0
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -145,7 +145,7 @@ function funcConvertName {
 | 
				
			||||||
	if $debug; then echo -e "\033[36mfuncConvertName $1\033[37m"; fi;
 | 
						if $debug; then echo -e "\033[36mfuncConvertName $1\033[37m"; fi;
 | 
				
			||||||
	tmp="$1"
 | 
						tmp="$1"
 | 
				
			||||||
	tmp=${tmp// s /\'s }							# Replace a single s with 's
 | 
						tmp=${tmp// s /\'s }							# Replace a single s with 's
 | 
				
			||||||
	if [ "$lang" == "de" ]; then
 | 
						if [ "$langCurrent" == "de" ]; then
 | 
				
			||||||
		tmp=${tmp//Ae/Ä}							# Replace umlauts
 | 
							tmp=${tmp//Ae/Ä}							# Replace umlauts
 | 
				
			||||||
		tmp=${tmp//Oe/Ö}
 | 
							tmp=${tmp//Oe/Ö}
 | 
				
			||||||
		tmp=${tmp//Ue/Ü}
 | 
							tmp=${tmp//Ue/Ü}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue