afuna: Cat under a blanket. Text: "Cats are just little people with Fur and Fangs" (Default)
afuna ([personal profile] afuna) wrote in [site community profile] changelog2009-05-17 12:49 pm

[dw-free] create/confirm.bml lacks sensible <title>

[commit: http://hg.dwscoalition.org/dw-free/rev/7563440a8814]

http://bugs.dwscoalition.org/show_bug.cgi?id=830

Separate titles for each step of the creation process

Patch by [staff profile] denise.

Files modified:
  • htdocs/create.bml.text
  • htdocs/create/confirm.bml
  • htdocs/create/setup.bml
  • htdocs/create/upgrade.bml
--------------------------------------------------------------------------------
diff -r 5f59b806fd7a -r 7563440a8814 htdocs/create.bml.text
--- a/htdocs/create.bml.text	Sun May 17 07:32:24 2009 +0000
+++ b/htdocs/create.bml.text	Sun May 17 12:48:38 2009 +0000
@@ -3,3 +3,9 @@
 .btn.saveandcontinue=Save and Continue
 
 .title=Create Your [[sitename]] Account
+
+.title.confirm=Explore Your [[sitename]] Account
+
+.title.setup=Set Up Your [[sitename]] Account
+
+.title.upgrade=Upgrade Your [[sitename]] Account
\ No newline at end of file
diff -r 5f59b806fd7a -r 7563440a8814 htdocs/create/confirm.bml
--- a/htdocs/create/confirm.bml	Sun May 17 07:32:24 2009 +0000
+++ b/htdocs/create/confirm.bml	Sun May 17 12:48:38 2009 +0000
@@ -21,7 +21,7 @@ body<=
     use strict;
     use vars qw(%GET %POST $title $headextra @errors @warnings);
 
-    $title = BML::ml( '/create.bml.title', { sitename => $LJ::SITENAMESHORT } );
+    $title = BML::ml( '/create.bml.title.confirm', { sitename => $LJ::SITENAMESHORT } );
 
     my $remote = LJ::get_remote();
     return "<?needlogin?>" unless $remote;
diff -r 5f59b806fd7a -r 7563440a8814 htdocs/create/setup.bml
--- a/htdocs/create/setup.bml	Sun May 17 07:32:24 2009 +0000
+++ b/htdocs/create/setup.bml	Sun May 17 12:48:38 2009 +0000
@@ -22,7 +22,7 @@ body<=
     use strict;
     use vars qw(%GET %POST $title $headextra @errors @warnings);
 
-    $title = BML::ml( '/create.bml.title', { sitename => $LJ::SITENAMESHORT } );
+    $title = BML::ml( '/create.bml.title.setup', { sitename => $LJ::SITENAMESHORT } );
 
     my $remote = LJ::get_remote();
     return "<?needlogin?>" unless $remote;
diff -r 5f59b806fd7a -r 7563440a8814 htdocs/create/upgrade.bml
--- a/htdocs/create/upgrade.bml	Sun May 17 07:32:24 2009 +0000
+++ b/htdocs/create/upgrade.bml	Sun May 17 12:48:38 2009 +0000
@@ -22,7 +22,7 @@ body<=
     use strict;
     use vars qw(%GET %POST $title $headextra @errors @warnings);
 
-    $title = BML::ml( '/create.bml.title', { sitename => $LJ::SITENAMESHORT } );
+    $title = BML::ml( '/create.bml.title.upgrade', { sitename => $LJ::SITENAMESHORT } );
 
     my $remote = LJ::get_remote();
     return "<?needlogin?>" unless $remote;
--------------------------------------------------------------------------------