mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-13 11:58: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() {
|
||||
|
|
|
@ -1038,7 +1038,7 @@ msgstr ""
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr ""
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
|
|
|
@ -1038,7 +1038,7 @@ msgstr "Jappix трябва да може да вписва данни в таз
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr "В тази папка/директория може да се записва, можете да продължите!"
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix ви позволява да управлявате и менажирате вашата конфигурация, да инсталирате нови разширения (плъгини) или да потърсите за обновления на програмата (ъпдейти). Затова трябва да създадете администраторска потребителска сметка (акаунт), за да можете да имате достъп до мениджъра с настройките на Jappix."
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
|
|
|
@ -1038,8 +1038,8 @@ msgstr "Jappix musí mít oprávnění zapisovat do tohoto adresáře pro vytvo
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr "Do adresáře je povolen zápis, můžete pokračovat!"
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix vám úmožňuje spravovat vaší konfiguraci, instalovat pluginy nebo vyhledávat aktualizace. Proto je nutné si vytvořit účet administrátora ke vstupu do Správy Jappix."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix vám úmožňuje spravovat vaší konfiguraci, instalovat addony nebo vyhledávat aktualizace. Proto je nutné si vytvořit účet administrátora ke vstupu do Správy Jappix."
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
msgstr "Když je Jappix nainstalován, stačí kliknout na odkaz Správce na výchozí stránce pro vstup do Správy. "
|
||||
|
|
|
@ -1038,8 +1038,8 @@ msgstr "Jappix muss Schreibberechtigungen in diesem Ordner haben um sein Unteror
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr "Der Ordner ist schreibbar, du kannst weitermachen!"
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix bietet dir die Möglichkeit, deine Konfiguration einzustellen, neue Plugins zu installieren oder nach Updates zu suchen. Deshalb musst Du ein Admin-Account anlegen um auf die Verwaltung zugreifen zu können."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix bietet dir die Möglichkeit, deine Konfiguration einzustellen, neue Addons zu installieren oder nach Updates zu suchen. Deshalb musst Du ein Admin-Account anlegen um auf die Verwaltung zugreifen zu können."
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
msgstr "Wenn Jappix installiert ist, klicke einfach auf den Manager-Link auf der Homepage um darauf zuzugreifen."
|
||||
|
|
|
@ -1132,7 +1132,7 @@ msgstr ""
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr ""
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
|
|
|
@ -1038,7 +1038,7 @@ msgstr "Jappix devas esti kapabla skribi en ĉi tiu teko krei ĝia sub-adresaroj
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr "La dosierujo estas skribebla, vi povas daŭri!"
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix ebligas vin administri vian konfiguron, instali novajn kromaĵojn aŭ serĉi ĝisdatigojn. Tio estas kial vi devas krei administrantan konton por aliri la manaĝeron."
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
|
|
|
@ -1038,8 +1038,8 @@ msgstr "Jappix debe ser capaz de escribir en esta carpeta para crear sus sub-dir
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr "La carpeta es escribible, ¡puedes continuar!"
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix te ofrece la posibilidad de gestionar tu configuración, instalar nuevos plugins y buscar actualizaciones. Por eso tienes que crear una cuenta de administración para acceder al gerente."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix te ofrece la posibilidad de gestionar tu configuración, instalar nuevos addons y buscar actualizaciones. Por eso tienes que crear una cuenta de administración para acceder al gerente."
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
msgstr "Cuando Jappix esté instalado, basta con hacer clic en el enlace de gerente en la página principal para acceder."
|
||||
|
|
|
@ -1038,8 +1038,8 @@ msgstr "Jappixil peab olema siia ja alamkataloogidesse kirjutusõigus. Kui see p
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr "Kataloogil on kirjutusõigused, Te võite jätkata!"
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix pakub võimalust hallata oma konfiguratsiooni, installida uusi pluginaid või otsida uuendusi. Sellepärast peate te tegema administraatori konto, et haldus lehele ligi pääseda."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix pakub võimalust hallata oma konfiguratsiooni, installida uusi addonaid või otsida uuendusi. Sellepärast peate te tegema administraatori konto, et haldus lehele ligi pääseda."
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
msgstr "Kui Jappix on paigaldatud siis lihtsalt vajutage Haldaja lingile avalehel, et sellele ligi pääseda."
|
||||
|
|
|
@ -1038,7 +1038,7 @@ msgstr ""
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr "پوشه قابل ویرایش است. میتوانید ادامه دهید!"
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr ""
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
|
|
|
@ -1038,7 +1038,7 @@ msgstr "Jappix doit pouvoir écrire dans ce dossier pour y créer ses sous-répe
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr "Le dossier peut être écrit, vous pouvez continuer !"
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix vous offre la possibilité de gérer votre configuration, installer des nouveaux modules et rechercher des mises à jour. C'est pourquoi vous devez créer un compte administrateur pour accéder au gestionnaire."
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
|
|
|
@ -1038,7 +1038,7 @@ msgstr "A Jappix-nak tudnia kell írni ebbe a mappába, hogy létre tudjon hozni
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr "A mappa írható, már folytathatod!"
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix felajánlja a lehetőséget, hogy menedzseld a konfigurációd, telepíts új kiegészítőket, vagy keress frissítéseket. Ezért kell létrehoznod egy adminisztrátori fiókot, hogy hozzáférj ezekhez a beállításokhoz."
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
|
|
|
@ -1038,8 +1038,8 @@ msgstr "Jappix harus mampu menulis dalam folder ini untuk membuat sub-direktori.
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr "Folder dapat ditulis, anda dapat melanjutkan!"
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix menawarkan kemungkinan untuk mengelola konfigurasi anda, menginstal plugin baru atau mencari update. Itulah mengapa anda harus membuat account administrator untuk mengakses manajer."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix menawarkan kemungkinan untuk mengelola konfigurasi anda, menginstal addon baru atau mencari update. Itulah mengapa anda harus membuat account administrator untuk mengakses manajer."
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
msgstr "Ketika Jappix akan diinstal, cukup klik pada link manajer di halaman rumah untuk mengaksesnya."
|
||||
|
|
|
@ -1038,8 +1038,8 @@ msgstr "Jappix deve avere le autorizzazioni adeguate per scrivere in questa cart
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr "La directory è scrivibile, puoi continuare!"
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix ti offre la possibilità controllare la configurazione di Jappix, installare nuove plugins e cercare aggiornamenti. Ecco perchè devi creare un account amministrativo per accedere all'Amministrazione."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix ti offre la possibilità controllare la configurazione di Jappix, installare nuove addons e cercare aggiornamenti. Ecco perchè devi creare un account amministrativo per accedere all'Amministrazione."
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
msgstr "Quando Jappix sarà installato, semplicemente clicca sul link “Amministrazione” nella home page per accedervi."
|
||||
|
|
|
@ -1038,7 +1038,7 @@ msgstr "サブフォルダを書き込む権限が必要です。%1sに権限を
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr "フォルダは書き込み可能です。続けてください。"
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappixは、設定ファイル、新しいプラグイン、アップデートを提供できます。管理者権限でのアクセスが必要です。"
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
|
|
|
@ -1038,7 +1038,7 @@ msgstr ""
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr ""
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
|
|
|
@ -1038,7 +1038,7 @@ msgstr ""
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr ""
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
|
|
|
@ -1038,8 +1038,8 @@ msgstr "Jappix musi mieć możliwość zapisu w tym folderze aby móc stworzyć
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr "Można zapisywać w folderze, możesz kontynuować!"
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix oferuje Ci możliwość zarządzania konfiguracją, instalacji nowych pluginów lub sprawdzania aktualizacji. To właśnie dlatego musisz stworzyć konto administratora."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix oferuje Ci możliwość zarządzania konfiguracją, instalacji nowych addonów lub sprawdzania aktualizacji. To właśnie dlatego musisz stworzyć konto administratora."
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
msgstr "Kiedy Jappix będzie już zainstalowany, kliknij w link Menedżer na stronie głównej."
|
||||
|
|
|
@ -1038,8 +1038,8 @@ msgstr "Jappix precisa permissão para escrita nessa pasta. Se não, você preci
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr "Esta pasta possui permissão de escrita, pode continuar!"
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix oferece a você a possibilidade de gerenciar suas configurações, instalar novos plugins ou procurar por atulizações. Por isso você deve criar um usuário de administração para acessar o gerenciador."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix oferece a você a possibilidade de gerenciar suas configurações, instalar novos addons ou procurar por atulizações. Por isso você deve criar um usuário de administração para acessar o gerenciador."
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
msgstr "Quando o Jappix for instalado, clique no link do gerenciador, em sua página inicial, para acessá-lo."
|
||||
|
|
|
@ -1038,7 +1038,7 @@ msgstr "Jappix должен иметь возможность записыват
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr "Папка доступна для записи, можно продолжать!"
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jabbix позволяет вам управлять конфигурацией, устанавливать новые плагины или проверять обновления. Для доступа к панели управления требуется создать учетную запись администратора."
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
|
|
|
@ -1038,8 +1038,8 @@ msgstr "Jappix musí mať právo zapisovať v tejto zložke pre vytvorenie svoji
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr "Do zložky je možné zapisovať, môžete pokračovať!"
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix vám ponúka možnosť spravovať vaše konfiguráciu, inštalovať nové pluginy alebo vyhľadať aktualizácie. Preto si musíte vytvoriť administračný účet pre prístup k Správcovi."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr "Jappix vám ponúka možnosť spravovať vaše konfiguráciu, inštalovať nové addony alebo vyhľadať aktualizácie. Preto si musíte vytvoriť administračný účet pre prístup k Správcovi."
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
msgstr "Po nainštalovaní Jappix, stačí kliknúť na odkaz Správca na domovskej stránke pre prístup."
|
||||
|
|
|
@ -1038,7 +1038,7 @@ msgstr ""
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr "Mappen är skrivbar -- du kan nu fortsätta!"
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr ""
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
|
|
|
@ -1038,7 +1038,7 @@ msgstr ""
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr ""
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
|
|
|
@ -1038,7 +1038,7 @@ msgstr ""
|
|||
msgid "The folder is writable, you can continue!"
|
||||
msgstr "資料夾可寫入,你可以繼續!"
|
||||
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgid "Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."
|
||||
msgstr ""
|
||||
|
||||
msgid "When Jappix will be installed, just click on the manager link on the home page to access it."
|
||||
|
|
|
@ -163,7 +163,7 @@ else
|
|||
else if($step == 3) { ?>
|
||||
<h3 class="account install-images"><?php _e("Administrator account"); ?></h3>
|
||||
|
||||
<p><?php _e("Jappix offers you the possibility to manage your configuration, install new plugins or search for updates. That's why you must create an administrator account to access the manager."); ?></p>
|
||||
<p><?php _e("Jappix offers you the possibility to manage your configuration, install new addons or search for updates. That's why you must create an administrator account to access the manager."); ?></p>
|
||||
|
||||
<p><?php _e("When Jappix will be installed, just click on the manager link on the home page to access it."); ?></p>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue