[svk-commit] r2867 - trunk/lib/SVK/Command
nobody at bestpractical.com
nobody at bestpractical.com
Mon May 12 10:37:23 EDT 2008
Author: clsung
Date: Mon May 12 10:35:54 2008
New Revision: 2867
Modified:
trunk/lib/SVK/Command/Branch.pm
Log:
- change --setup prompts
Modified: trunk/lib/SVK/Command/Branch.pm
==============================================================================
--- trunk/lib/SVK/Command/Branch.pm (original)
+++ trunk/lib/SVK/Command/Branch.pm Mon May 12 10:35:54 2008
@@ -776,7 +776,7 @@
$trunk_path ||= $target->_to_pclass('/')->subdir('trunk');
{
my $ans = get_prompt(
- loc("It has no trunk, where is the trunk/? (press enter to use %1)\n=>", $trunk_path),
+ loc("What directory shall we use for the project's trunk? (Press ENTER to use %1)\n=>", $trunk_path),
qr/^(?:\/?[A-Za-z][-+.A-Za-z0-9]*|$)/
);
@@ -788,7 +788,7 @@
$branch_path ||= $target->_to_pclass($trunk_path)->parent->subdir('branches');
{
my $ans = get_prompt(
- loc("And where is the branches/? (%1)\n=> ", $branch_path),
+ loc("What directory shall we use for the project's branches? (Press ENTER to use %1)\n=>", $branch_path),
qr/^(?:\/?[A-Za-z][-+.A-Za-z0-9]*|^\/|$)/
);
if (length($ans)) {
@@ -799,7 +799,7 @@
$tag_path ||= $target->_to_pclass($trunk_path)->parent->subdir('tags');
{
my $ans = get_prompt(
- loc("And where is the tags/? (%1) (or 's' to skip)", $tag_path),
+ loc("What directory shall we use for the project's tags? (Press ENTER to use %1, or 's' to skip)\n=>", $tag_path),
qr/^(?:\/?[A-Za-z][-+.A-Za-z0-9]*|$)/
);
if (length($ans)) {
More information about the svk-commit
mailing list