Re: [PATCH 07/72] gettextize: git-clone "Cloning into" message

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Ãvar ArnfjÃrà Bjarmason wrote:

> --- a/builtin/clone.c
> +++ b/builtin/clone.c
> @@ -468,9 +468,12 @@ int cmd_clone(int argc, const char **argv, const char *prefix)
>  		die(_("could not create leading directories of '%s'"), git_dir);
>  	set_git_dir(make_absolute_path(git_dir));
>  
> -	if (0 <= option_verbosity)
> -		printf("Cloning into %s%s...\n",
> -		       option_bare ? "bare repository " : "", dir);
> +	if (0 <= option_verbosity) {
> +		if (option_bare)
> +			printf(_("Cloning into bare repository %s\n"), dir);
> +		else
> +			printf(_("Cloning into %s\n"), dir);
> +	}

An ellipsis seems to have been lost.  I wonder if there is some easy
(automated, ideally) way to check these patches.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]