[dw-free] Fix instance of "LJ" in a string
[commit: http://hg.dwscoalition.org/dw-free/rev/7bfc191f25c1]
http://bugs.dwscoalition.org/show_bug.cgi?id=362
Remove 'LJ' from string.
Patch by
janinedog.
http://bugs.dwscoalition.org/show_bug.cgi?id=362
Remove 'LJ' from string.
Patch by
--------------------------------------------------------------------------------
diff -r babf59fbeb24 -r 7bfc191f25c1 bin/upgrading/en.dat
--- a/bin/upgrading/en.dat Fri Feb 27 02:23:22 2009 +0000
+++ b/bin/upgrading/en.dat Fri Feb 27 02:26:58 2009 +0000
@@ -2873,7 +2873,7 @@ subscribe_interface.notify_me2=Notify me
subscribe_interface.save=Save
-subscribe_interface.special_subs.note=These notification options are only available by email and will not show in your LJ Inbox.
+subscribe_interface.special_subs.note=These notification options are only available by email and will not show in your [[sitenameabbrev]] Inbox.
taglib.error.toomany=This would make you exceed your maximum of [[max]] tags. Please remove some and try again.
diff -r babf59fbeb24 -r 7bfc191f25c1 cgi-bin/weblib.pl
--- a/cgi-bin/weblib.pl Fri Feb 27 02:23:22 2009 +0000
+++ b/cgi-bin/weblib.pl Fri Feb 27 02:26:58 2009 +0000
@@ -3674,7 +3674,7 @@ sub subscribe_interface {
}
$cat_html .= "</tr>";
- $cat_html .= "<tr><td colspan='$cols' style='font-size: smaller;'>* " . LJ::Lang::ml('subscribe_interface.special_subs.note') . "</td></tr>" if $special_subs;
+ $cat_html .= "<tr><td colspan='$cols' style='font-size: smaller;'>* " . LJ::Lang::ml( 'subscribe_interface.special_subs.note', { sitenameabbrev => $LJ::SITENAMEABBREV } ) . "</td></tr>" if $special_subs;
$cat_html .= "</div>";
$events_table .= $cat_html unless ($is_tracking_category && !$showtracking);
--------------------------------------------------------------------------------
