Index: openacs-4/packages/acs-admin/www/apm/version-i18n-process-2.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-admin/www/apm/version-i18n-process-2.tcl,v diff -u -r1.15 -r1.16 --- openacs-4/packages/acs-admin/www/apm/version-i18n-process-2.tcl 10 Jan 2007 21:21:59 -0000 1.15 +++ openacs-4/packages/acs-admin/www/apm/version-i18n-process-2.tcl 29 Jul 2008 19:22:23 -0000 1.16 @@ -71,18 +71,18 @@ set text_replacement_list [lindex $adp_text_result_list 0] set text_untouched_list [lindex $adp_text_result_list 1] - append processing_html_result "Replaced [llength $text_replacement_list] texts:
" + append processing_html_result "Replaced [llength $text_replacement_list] texts:
" foreach text_replacement $text_replacement_list { - append processing_html_result "replaced text \"[lindex $text_replacement 1]\" using key [lindex $text_replacement 0]
" + append processing_html_result "replaced text \"[lindex $text_replacement 1]\" using key [lindex $text_replacement 0]
" } if { [llength $text_untouched_list] > 0 } { - append processing_html_result "
[llength $text_untouched_list] pieces of text were left untouched. Please take note of these texts and do any necessary translations by manually inserting <#message_key text#> tags in the adp file (the message keys should contain only letters and underscores). At a later stage you can then run the action \"Replace tags with text and insert into catalog\" on the file. The texts to consider for translation are:
" + append processing_html_result "
[llength $text_untouched_list] pieces of text were left untouched. Please take note of these texts and do any necessary translations by manually inserting <#message_key text#> tags in the adp file (the message keys should contain only letters and underscores). At a later stage you can then run the action \"Replace tags with text and insert into catalog\" on the file. The texts to consider for translation are:
" } else { - append processing_html_result "
[llength $text_untouched_list] pieces of text were left untouched." + append processing_html_result "
[llength $text_untouched_list] pieces of text were left untouched." } foreach untouched_text $text_untouched_list { - append processing_html_result "\"$untouched_text\"
" + append processing_html_result "\"$untouched_text\"
" } }