summaryrefslogtreecommitdiff
path: root/plugins/Realtime/realtimeupdate.js
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-11-02 13:12:58 -0700
committerBrion Vibber <brion@pobox.com>2010-11-02 13:12:58 -0700
commit86201761eadef3b124ee13e6ba2f9e661e697a5a (patch)
treef2db4817d163b2fa7c8edb5045bc720f754d57d9 /plugins/Realtime/realtimeupdate.js
parent5a9bb0adc4555bf67bb668edb587d4440cca61e5 (diff)
Use SN.msg() and onEndScriptMessages() to export localized UI messages from Realtime plugin and its descendents.
Diffstat (limited to 'plugins/Realtime/realtimeupdate.js')
-rw-r--r--plugins/Realtime/realtimeupdate.js13
1 files changed, 6 insertions, 7 deletions
diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js
index f764ca738..f49cef95e 100644
--- a/plugins/Realtime/realtimeupdate.js
+++ b/plugins/Realtime/realtimeupdate.js
@@ -40,7 +40,6 @@ RealtimeUpdate = {
_documenttitle: '',
_paused:false,
_queuedNotices:[],
- _messages:{},
init: function(userid, replyurl, favorurl, repeaturl, deleteurl)
{
@@ -263,8 +262,8 @@ RealtimeUpdate = {
$('#realtime_playpause').remove();
$('#realtime_actions').prepend('<li id="realtime_playpause"><button id="realtime_pause" class="pause"></button></li>');
- $('#realtime_pause').text(RealtimeUpdate._messages['pause'])
- .attr('title', RealtimeUpdate._messages['pause_tooltip'])
+ $('#realtime_pause').text(SN.msg('realtime_pause'))
+ .attr('title', SN.msg('realtime_pause_tooltip'))
.bind('click', function() {
RealtimeUpdate.removeNoticesHover();
RealtimeUpdate.showPlay();
@@ -277,8 +276,8 @@ RealtimeUpdate = {
RealtimeUpdate.setPause(true);
$('#realtime_playpause').remove();
$('#realtime_actions').prepend('<li id="realtime_playpause"><span id="queued_counter"></span> <button id="realtime_play" class="play"></button></li>');
- $('#realtime_play').text(RealtimeUpdate._messages['play'])
- .attr('title', RealtimeUpdate._messages['play_tooltip'])
+ $('#realtime_play').text(SN.msg('realtime_play'))
+ .attr('title', SN.msg('realtime_play_tooltip'))
.bind('click', function() {
RealtimeUpdate.showPause();
return false;
@@ -338,8 +337,8 @@ RealtimeUpdate = {
initAddPopup: function(url, timeline, path)
{
$('#realtime_timeline').append('<button id="realtime_popup"></button>');
- $('#realtime_popup').text(RealtimeUpdate._messages['popup'])
- .attr('title', RealtimeUpdate._messages['popup_tooltip'])
+ $('#realtime_popup').text(SN.msg('realtime_popup'))
+ .attr('title', SN.msg('realtime_popup_tooltip'))
.bind('click', function() {
window.open(url,
'',