c4b35f Update cli_commitRepoChanges.sh. Fix plural translation output.

Authored and Committed by areguera 14 years ago
    Update cli_commitRepoChanges.sh. Fix plural translation output.
    
    
        
Scripts/Bash/Functions/cli_commitRepoChanges.sh CHANGED
@@ -155,7 +155,8 @@ function cli_commitRepoChanges {
155
155
for FILE in ${FILES[6]};do
156
156
cli_printMessage $FILE 'AsResponseLine'
157
157
done
158
- cli_printMessage "`gettext "Do you want to add them now?"`" 'AsYesOrNoRequestLine'
158
+ cli_printMessage "`ngettext "Do you want to add it now?" \
159
+ "Do you want to add them now?" ${FILESNUM[6]}`" 'AsYesOrNoRequestLine'
159
160
svn add "${FILES[6]}"
160
161
fi
161
162