| 
									
										
										
										
											2024-06-22 15:54:18 -04:00
										 |  |  | #!/bin/bash
 | 
					
						
							| 
									
										
										
										
											2024-06-14 04:10:19 -04:00
										 |  |  | EXPORT_LANGS=("de" "es" "fr" "fi" "hy" "id" "ko" "nl" "pl" "pt_BR" "ru" "sk" "sv" "th" "tr" "uk") | 
					
						
							| 
									
										
										
										
											2024-05-31 20:55:56 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | for i in ${EXPORT_LANGS[@]}; do | 
					
						
							|  |  |  |   echo "compiling $i.po..." | 
					
						
							| 
									
										
										
										
											2024-06-23 17:20:58 -04:00
										 |  |  |   mkdir -p "po/locale/$i/LC_MESSAGES/" && msgfmt "po/$i.po" -o "po/locale/$i/LC_MESSAGES/furnace.mo" || exit 1 | 
					
						
							| 
									
										
										
										
											2024-05-31 20:55:56 -04:00
										 |  |  | done |