aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBarry Jackson <barjac@mageia.org>2023-01-23 12:23:04 +0000
committerBarry Jackson <barjac@mageia.org>2023-01-23 12:23:04 +0000
commit020f3a9871dfb195c8ed06ef2f260dec0895b373 (patch)
treea216d92adee4ecc7983b8bbe74e93606d70d25f9
parentb5bdcc5a7a41af7e07bcb1690b258c834960f8d6 (diff)
downloadremove-old-kernels-020f3a9871dfb195c8ed06ef2f260dec0895b373.tar
remove-old-kernels-020f3a9871dfb195c8ed06ef2f260dec0895b373.tar.gz
remove-old-kernels-020f3a9871dfb195c8ed06ef2f260dec0895b373.tar.bz2
remove-old-kernels-020f3a9871dfb195c8ed06ef2f260dec0895b373.tar.xz
remove-old-kernels-020f3a9871dfb195c8ed06ef2f260dec0895b373.zip
remove debug line & wrong var reset
-rwxr-xr-xmk-pot8
1 files changed, 3 insertions, 5 deletions
diff --git a/mk-pot b/mk-pot
index bd078ef..674b283 100755
--- a/mk-pot
+++ b/mk-pot
@@ -4,7 +4,7 @@
# Path to output file
outpot=po/remove-old-kernels.pot
-# Create new output file and add the default header
+# Create new 'outpot' file and add the default header
cat pot_header.txt > $outpot
# Function to check found strings for duplicates
@@ -23,15 +23,15 @@ isdupe=1
return $isdupe
}
+# Main script starts here
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 up to 3 occurrences of "$(i18n" in one script line and extract raw text for each
+ # Look for up to 4 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
@@ -41,9 +41,7 @@ while IFS='' read -r line; do
else
break
fi
- echo $i
done
-
else
# Skip this script line
continue