diff options
author | Barry Jackson <barjac@mageia.org> | 2023-01-23 12:07:27 +0000 |
---|---|---|
committer | Barry Jackson <barjac@mageia.org> | 2023-01-23 12:07:27 +0000 |
commit | b5bdcc5a7a41af7e07bcb1690b258c834960f8d6 (patch) | |
tree | 7786250e253dfc087939640d899cb4a0e95d7394 | |
parent | 0f8ada0befa2c274e481ddc7d9bd35dc81887574 (diff) | |
download | remove-old-kernels-b5bdcc5a7a41af7e07bcb1690b258c834960f8d6.tar remove-old-kernels-b5bdcc5a7a41af7e07bcb1690b258c834960f8d6.tar.gz remove-old-kernels-b5bdcc5a7a41af7e07bcb1690b258c834960f8d6.tar.bz2 remove-old-kernels-b5bdcc5a7a41af7e07bcb1690b258c834960f8d6.tar.xz remove-old-kernels-b5bdcc5a7a41af7e07bcb1690b258c834960f8d6.zip |
add loop to get up to 3 strings per script line
-rwxr-xr-x | mk-pot | 42 |
1 files changed, 19 insertions, 23 deletions
@@ -27,31 +27,27 @@ rawarray=(); x=0 ; y=0 # Get raw i18n strings (max two per script line) while IFS='' read -r line; do if echo "$line"|grep -q '(i18n'; then - # Look for the first occurrence of i18n and extract raw text only - idstr1="$(echo "$line"|grep i18n|sed "s/\$(i18n/@/g"|cut -d@ -f2|cut -d\" -f2| sed 's/").*//')" - isdupe=0 - # Check it is not dupe - if ! chk_dupe "$idstr1"; then - # Output line - IFS='' - echo -e "msgid \""$idstr1"\"\nmsgstr \"\"\n" >> $outpot - fi - # Look for a second occurrence of i18n and extract raw text only - idstr2="$(echo "$line"|grep i18n|sed 's/\$(i18n/@/g'|cut -d@ -f3|cut -d\" -f2| sed 's/").*//')" - # Check it exists - if [[ ${#idstr2} > 0 ]]; then - isdupe=0 - # Check it is not dupe - if ! chk_dupe "$idstr2"; then - # Output line - IFS='' - echo -e "msgid \""$idstr2"\"\nmsgstr \"\"\n" >> $outpot + # Look for up to 3 occurrences of "$(i18n" in one script line and extract raw text for each + for ((i=2;i<5;i++)); do + idstr="$(echo "$line"|grep i18n|sed "s/\$(i18n/@/g"|cut -d@ -f${i}|cut -d\" -f2| sed 's/").*//')" + if [[ ${#idstr} > 0 ]]; then + isdupe=0 + # Check it is not dupe + if ! chk_dupe "$idstr"; then + # Output line + IFS='' + echo -e "msgid \""$idstr"\"\nmsgstr \"\"\n" >> $outpot + fi + else + break fi + echo $i + done + + else + # Skip this script line + continue fi -else - # Skip this script line - continue -fi done < remove-old-kernels # Add date and time for last pot file change |