diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2025-02-28 09:30:59 +0000 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-28 09:30:59 +0000 | 
| commit | 8cb5f9d2e4b78894f912393c69740d99ee69e505 (patch) | |
| tree | db83e5eca5f530dc1a2bc76c5b9239fd00c3cf34 | |
| parent | 7129fa0597f3f365459de51c560c9d5c68bbd707 (diff) | |
| parent | 8e35e474c585adb428a88ff6da5e89754c49a448 (diff) | |
Merge pull request #1000 from jdujava/fix-plural
Fix usages of mail/mails
| -rwxr-xr-x | bin/mailsync | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/bin/mailsync b/bin/mailsync index cbd36ff..792e7af 100755 --- a/bin/mailsync +++ b/bin/mailsync @@ -63,11 +63,11 @@ syncandnotify() {  	newcount=$(echo "$new" | sed '/^\s*$/d' | wc -l)  	case 1 in  		$((newcount > 5)) ) -			echo "$newcount new mail for $2." -			[ -z "$MAILSYNC_MUTE" ] && notify "New Mail!" "📬 $newcount new mail(s) in \`$2\` account." +			echo "$newcount new mails for $2." +			[ -z "$MAILSYNC_MUTE" ] && notify "New Mail!" "📬 $newcount new mails in \`$2\` account."  			;;  		$((newcount > 0)) ) -			echo "$newcount new mail for $2." +			echo "$newcount new mail(s) for $2."  			[ -z "$MAILSYNC_MUTE" ] &&  			for file in $new; do  		    		# Extract and decode subject and sender from mail. | 
