forked from GNUsocial/gnu-social
Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.x
* '0.9.x' of gitorious.org:statusnet/mainline: Terminology consistency fix: 'Unlock' -> 'Unblock' in unblock form description. Localisation updates from !translatewiki !StatusNet Check for dupe from insertNoticeItem()
This commit is contained in:
commit
8f2db3820f
@ -77,6 +77,6 @@ class UnblockForm extends ProfileActionForm
|
|||||||
|
|
||||||
function description()
|
function description()
|
||||||
{
|
{
|
||||||
return _('Unlock this user');
|
return _('Unblock this user');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -66,13 +66,6 @@ RealtimeUpdate = {
|
|||||||
|
|
||||||
receive: function(data)
|
receive: function(data)
|
||||||
{
|
{
|
||||||
id = data.id;
|
|
||||||
|
|
||||||
// Don't add it if it already exists
|
|
||||||
if ($("#notice-"+id).length > 0) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (RealtimeUpdate._paused === false) {
|
if (RealtimeUpdate._paused === false) {
|
||||||
RealtimeUpdate.purgeLastNoticeItem();
|
RealtimeUpdate.purgeLastNoticeItem();
|
||||||
|
|
||||||
@ -88,6 +81,11 @@ RealtimeUpdate = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
insertNoticeItem: function(data) {
|
insertNoticeItem: function(data) {
|
||||||
|
// Don't add it if it already exists
|
||||||
|
if ($("#notice-"+data.id).length > 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var noticeItem = RealtimeUpdate.makeNoticeItem(data);
|
var noticeItem = RealtimeUpdate.makeNoticeItem(data);
|
||||||
$("#notices_primary .notices").prepend(noticeItem);
|
$("#notices_primary .notices").prepend(noticeItem);
|
||||||
$("#notices_primary .notice:first").css({display:"none"});
|
$("#notices_primary .notice:first").css({display:"none"});
|
||||||
@ -253,7 +251,7 @@ RealtimeUpdate = {
|
|||||||
|
|
||||||
updateQueuedCounter: function()
|
updateQueuedCounter: function()
|
||||||
{
|
{
|
||||||
QC = $('#realtime_playpause #queued_counter').html('('+RealtimeUpdate._queuedNotices.length+')');
|
$('#realtime_playpause #queued_counter').html('('+RealtimeUpdate._queuedNotices.length+')');
|
||||||
},
|
},
|
||||||
|
|
||||||
removeQueuedCounter: function()
|
removeQueuedCounter: function()
|
||||||
|
Loading…
Reference in New Issue
Block a user