[dw-free] Add more text options in the wizard
[commit: http://hg.dwscoalition.org/dw-free/rev/c2a18fba7004]
http://bugs.dwscoalition.org/show_bug.cgi?id=1153
Fix metadata labels
Patch by
liv.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=1153
Fix metadata labels
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- bin/upgrading/s2layers/core2.s2
-------------------------------------------------------------------------------- diff -r 2d328761bcd0 -r c2a18fba7004 bin/upgrading/s2layers/core2.s2 --- a/bin/upgrading/s2layers/core2.s2 Tue May 12 14:17:42 2009 +0000 +++ b/bin/upgrading/s2layers/core2.s2 Tue May 12 15:52:29 2009 +0000 @@ -3602,7 +3602,8 @@ function Entry::print_metadata() { if (size $.metadata) { """<div class="metadata">\n<ul>\n"""; foreach var string m ($.metadata) { - """<li><span class="metadata-label metadata-label-$m">$m: </span>"""; + var string metadata_name = lang_metadata_title($m); + """<li><span class="metadata-label metadata-label-$m">$metadata_name: </span>"""; if ($m == "mood") { " $.mood_icon "; } --------------------------------------------------------------------------------