mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-12 03:18:48 +00:00
Update strings
update strings to contain addon
This commit is contained in:
parent
c71f7b0e1a
commit
96c41e5623
519 changed files with 829 additions and 829 deletions
|
@ -78,7 +78,7 @@ function serverAdHoc(server) {
|
|||
dataForm(server, 'command', '', '', 'adhoc');
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchAdHoc() {
|
||||
// Click event
|
||||
$('#adhoc .bottom .finish').click(closeAdHoc);
|
||||
|
|
|
@ -110,7 +110,7 @@ function anonymousLogin(server) {
|
|||
}
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchAnonymous() {
|
||||
logThis('Anonymous mode detected, connecting...', 3);
|
||||
|
||||
|
@ -127,5 +127,5 @@ function launchAnonymous() {
|
|||
anonymousLogin(HOST_ANONYMOUS);
|
||||
}
|
||||
|
||||
// Launch this plugin!
|
||||
// Launch this addon!
|
||||
$(document).ready(launchAnonymous);
|
||||
|
|
|
@ -393,7 +393,7 @@ function updateArchives() {
|
|||
getListArchives(xid, date);
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchArchives() {
|
||||
// Current date
|
||||
var current_date = explodeThis('T', getXMPPTime(), 0);
|
||||
|
|
|
@ -489,7 +489,7 @@ function getEverything() {
|
|||
getStorage(NS_ROSTERNOTES);
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchConnection() {
|
||||
// Logouts when Jappix is closed
|
||||
$(window).bind('beforeunload', terminate);
|
||||
|
@ -522,5 +522,5 @@ function launchConnection() {
|
|||
}
|
||||
}
|
||||
|
||||
// Launch this plugin!
|
||||
// Launch this addon!
|
||||
$(document).ready(launchConnection);
|
||||
|
|
|
@ -66,7 +66,7 @@ function startDirectory() {
|
|||
return false;
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchDirectory() {
|
||||
// Click event
|
||||
$('#directory .bottom .finish').click(closeDirectory);
|
||||
|
|
|
@ -148,7 +148,7 @@ function cleanDiscovery() {
|
|||
$('#discovery .wait, #discovery .disco-category').hide();
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchDiscovery() {
|
||||
// Click event
|
||||
$('#discovery .bottom .finish').click(closeDiscovery);
|
||||
|
|
|
@ -473,7 +473,7 @@ function loadFavorites() {
|
|||
$('#favorites .fedit-head-select').html(favorites_popup);
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchFavorites() {
|
||||
var path = '#favorites .';
|
||||
|
||||
|
|
|
@ -288,7 +288,7 @@ function registerForm() {
|
|||
return false;
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchHome() {
|
||||
// Define the vars
|
||||
var home = '#home ';
|
||||
|
@ -367,5 +367,5 @@ function launchHome() {
|
|||
logThis('Welcome to Jappix! Happy coding in developer mode!');
|
||||
}
|
||||
|
||||
// Launch this plugin!
|
||||
// Launch this addon!
|
||||
$(document).ready(launchHome);
|
||||
|
|
|
@ -613,7 +613,7 @@ function handleInboxAttach(responseXML) {
|
|||
$('#inbox .wait').hide();
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchInbox() {
|
||||
// Define the pats
|
||||
var inbox = '#inbox .';
|
||||
|
|
|
@ -316,13 +316,13 @@ function filterIntegrateBox(data) {
|
|||
return string;
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchIntegratebox() {
|
||||
// Click event
|
||||
$('#integratebox .bottom .finish.close').click(closeIntegrateBox);
|
||||
}
|
||||
|
||||
// Plugin keyup event
|
||||
// Addon keyup event
|
||||
$(document).keyup(function(e) {
|
||||
// Previous item?
|
||||
if((exists('#integratebox .bottom .finish.previous:not(.disabled)')) && (e.keyCode == 37)) {
|
||||
|
|
|
@ -376,11 +376,11 @@ function inputFocus() {
|
|||
});
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchInterface() {
|
||||
// Focus on the first visible input
|
||||
$(window).focus(inputFocus);
|
||||
}
|
||||
|
||||
// Launch this plugin!
|
||||
// Launch this addon!
|
||||
$(document).ready(launchInterface);
|
||||
|
|
2
jappixmini/jappix/js/jquery.js
vendored
2
jappixmini/jappix/js/jquery.js
vendored
|
@ -1403,7 +1403,7 @@ jQuery.fn.extend({
|
|||
});
|
||||
},
|
||||
|
||||
// Based off of the plugin by Clint Helfers, with permission.
|
||||
// Based off of the addon by Clint Helfers, with permission.
|
||||
// http://blindsignals.com/index.php/2009/07/jquery-delay/
|
||||
delay: function( time, type ) {
|
||||
time = jQuery.fx ? jQuery.fx.speeds[time] || time : time;
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
});
|
||||
|
||||
|
||||
// plugin code
|
||||
// addon code
|
||||
$.fn.placeholder = function(opts) {
|
||||
opts = $.extend({},$.placeholder.settings, opts);
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ function closeMe() {
|
|||
return false;
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchMe() {
|
||||
// Click events
|
||||
$('#me .content a.go').click(function() {
|
||||
|
|
|
@ -1430,7 +1430,7 @@ function fromInfosMicroblog(xid, hash) {
|
|||
getMicroblog(xid, hash);
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchMicroblog() {
|
||||
// Keyboard event
|
||||
$('#channel .top input[name=microblog_body]').keyup(function(e) {
|
||||
|
|
|
@ -1543,7 +1543,7 @@ function adaptRosterMini() {
|
|||
jQuery('#jappix_mini div.jm_roster div.jm_buddies').css('max-height', height);
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchMini(autoconnect, show_pane, domain, user, password) {
|
||||
// Save infos to reconnect
|
||||
MINI_DOMAIN = domain;
|
||||
|
|
|
@ -361,7 +361,7 @@ function saveMucAdmin() {
|
|||
return closeMucAdmin();
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchMucAdmin() {
|
||||
// Click events
|
||||
$('#mucadmin .bottom .finish').click(function() {
|
||||
|
|
|
@ -244,7 +244,7 @@ function addMusic(id, title, artist, source, duration, uri, mime, type) {
|
|||
return false;
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchMusic() {
|
||||
// When music search string submitted
|
||||
$('.music-content input').keyup(function(e) {
|
||||
|
|
|
@ -412,7 +412,7 @@ function adaptNotifications() {
|
|||
$('.notifications-content .tools-content-subitem').css('max-height', max_height);
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchNotifications() {
|
||||
// Adapt the notifications height
|
||||
adaptNotifications();
|
||||
|
|
|
@ -534,7 +534,7 @@ function loadOptions() {
|
|||
$('#integratemedias').attr('checked', true);
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchOptions() {
|
||||
// Click events
|
||||
$('#options .tab a').click(function() {
|
||||
|
|
|
@ -652,7 +652,7 @@ function displayAllPEP(xid) {
|
|||
displayPEP(xid, 'geoloc');
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchPEP() {
|
||||
// Apply empty values to the PEP database
|
||||
setDB('mood-value', 1, '');
|
||||
|
|
|
@ -973,7 +973,7 @@ function getUserStatus() {
|
|||
return $('#presence-status').val();
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchPresence() {
|
||||
// Click event for user presence show
|
||||
$('#my-infos .f-presence a.picker').click(function() {
|
||||
|
|
|
@ -645,7 +645,7 @@ function enableFormPrivacy(rank) {
|
|||
$('#privacy .privacy-' + rank + ' input, #privacy .privacy-' + rank + ' select').removeAttr('disabled');
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchPrivacy() {
|
||||
// Click events
|
||||
$('#privacy .bottom .finish').click(closePrivacy);
|
||||
|
|
|
@ -708,7 +708,7 @@ function getGateways() {
|
|||
// Define a global var for buddy list all buddies displayed
|
||||
var BLIST_ALL = false;
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchRoster() {
|
||||
// Filtering tool
|
||||
var iFilter = $('#buddy-list .filter input');
|
||||
|
|
|
@ -166,7 +166,7 @@ function saveRosterX() {
|
|||
closeRosterX();
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchRosterX() {
|
||||
// Click events
|
||||
$('#rosterx .bottom .finish').click(function() {
|
||||
|
|
|
@ -13,7 +13,7 @@ Last revision: 06/05/11
|
|||
|
||||
// Creates the talkpage events
|
||||
function eventsTalkPage() {
|
||||
// Launch all associated plugins
|
||||
// Launch all associated addons
|
||||
launchMicroblog();
|
||||
launchRoster();
|
||||
launchPresence();
|
||||
|
|
|
@ -406,7 +406,7 @@ function getUserInfos(hash, xid, nick, type) {
|
|||
presenceFunnel(xid, hash);
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchUserInfos() {
|
||||
// Click events
|
||||
$('#userinfos .tab a').click(function() {
|
||||
|
|
|
@ -566,7 +566,7 @@ function sendVCard() {
|
|||
return false;
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchVCard() {
|
||||
// Focus on the first input
|
||||
$(document).oneTime(10, function() {
|
||||
|
|
|
@ -269,7 +269,7 @@ function nextWelcome() {
|
|||
return false;
|
||||
}
|
||||
|
||||
// Plugin launcher
|
||||
// Addon launcher
|
||||
function launchWelcome() {
|
||||
// Click events
|
||||
$('#welcome .tab a').click(function() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue