diff options
author | ivan <ivan> | 2009-12-31 13:16:41 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-12-31 13:16:41 +0000 |
commit | 63a268637b2d51a8766412617724b9436439deb6 (patch) | |
tree | a50f6d4c7829d5c80905e989144317192a44dc90 /rt/docs/design_docs/string-extraction-guide.txt | |
parent | 65a561e3cd8c1ba94f6282f5d2a1cd9783afbd21 (diff) | |
parent | b4b0c7e72d7eaee2fbfc7022022c9698323203dd (diff) |
This commit was generated by cvs2svn to compensate for changes in r8690,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'rt/docs/design_docs/string-extraction-guide.txt')
-rw-r--r-- | rt/docs/design_docs/string-extraction-guide.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rt/docs/design_docs/string-extraction-guide.txt b/rt/docs/design_docs/string-extraction-guide.txt index bd60a43fa..757a27014 100644 --- a/rt/docs/design_docs/string-extraction-guide.txt +++ b/rt/docs/design_docs/string-extraction-guide.txt @@ -1,5 +1,5 @@ # $File: //depot/RT/rt-devel/docs/design_docs/string-extraction-guide.txt $ $Author: ivan $ -# $Revision: 1.1 $ $Change: 1431 $ $DateTime: 2002/10/15 17:24:45 $ +# $Revision: 1.1.1.2 $ $Change: 1431 $ $DateTime: 2002/10/15 17:24:45 $ Run 'p4 edit lib/RT/I18N/zh_tw.pm' and 'perl l10n.pl' to add new extractions to the zh_tw.pm. @@ -63,11 +63,11 @@ that this will genereate code which will not work in RT 2.1.3. I need to add a bit of framework to make it work in 2.1.4 -The string <& /Elements/TitleBoxStart, width=> "40%", titleright => "RT $RT::VERSION for $RT::rtname", title => 'Login' &> +The string <& /Elements/TitleBoxStart, width=> "40%", titleright => "RT $RT::VERSION for ". RT->Config->Get('rtname'), title => 'Login' &> should become <& /Elements/TitleBoxStart, width=> "40%", - titleright => loc("RT [_1] for [_2]",$RT::VERSION, $RT::rtname), + titleright => loc("RT [_1] for [_2]",$RT::VERSION, RT->Config->Get('rtname')), title => loc('Login'), &> |