SPARK-2342 Remove unsupported gateway transports
@ -44,8 +44,6 @@ public class SparkRes {
|
||||
public static final String ADD_LINK_TO_CHAT = "ADD_LINK_TO_CHAT";
|
||||
public static final String ADD_TO_CHAT = "ADD_TO_CHAT";
|
||||
public static final String ADD_TO_KB = "ADD_TO_KB";
|
||||
public static final String AIM_TRANSPORT_ACTIVE_IMAGE = "AIM_TRANSPORT_ACTIVE_IMAGE";
|
||||
public static final String AIM_TRANSPORT_INACTIVE_IMAGE = "AIM_TRANSPORT_INACTIVE_IMAGE";
|
||||
public static final String ALERT = "ALERT";
|
||||
public static final String ALL_CHATS = "ALL_CHATS";
|
||||
public static final String APP_NAME = "APP_NAME";
|
||||
@ -131,14 +129,10 @@ public class SparkRes {
|
||||
public static final String GO = "GO";
|
||||
public static final String GREEN_BALL = "GREEN_BALL";
|
||||
public static final String GREEN_FLAG_16x16 = "GREEN_FLAG_16x16";
|
||||
public static final String GTALK_TRANSPORT_ACTIVE_IMAGE = "GTALK_TRANSPORT_ACTIVE_IMAGE";
|
||||
public static final String GTALK_TRANSPORT_INACTIVE_IMAGE = "GTALK_TRANSPORT_INACTIVE_IMAGE";
|
||||
public static final String HEADSET_IMAGE = "HEADSET_IMAGE";
|
||||
public static final String HELP2_24x24 = "HELP2_24x24";
|
||||
public static final String HISTORY_16x16 = "HISTORY_16x16";
|
||||
public static final String HISTORY_24x24_IMAGE = "HISTORY_24x24";
|
||||
public static final String ICQ_TRANSPORT_ACTIVE_IMAGE = "ICQ_TRANSPORT_ACTIVE_IMAGE";
|
||||
public static final String ICQ_TRANSPORT_INACTIVE_IMAGE = "ICQ_TRANSPORT_INACTIVE_IMAGE";
|
||||
public static final String ID_CARD_48x48 = "ID_CARD_48x48";
|
||||
public static final String IM_AVAILABLE_STALE_IMAGE = "IM_AVAILABLE_STALE_IMAGE";
|
||||
public static final String IM_AWAY = "IM_AWAY";
|
||||
@ -189,8 +183,6 @@ public class SparkRes {
|
||||
public static final String MINUS_SIGN = "MINUS_SIGN";
|
||||
public static final String MOBILE_PHONE_IMAGE = "MOBILE_PHONE_IMAGE";
|
||||
public static final String MODERATOR_IMAGE = "MODERATOR_IMAGE";
|
||||
public static final String MSN_TRANSPORT_ACTIVE_IMAGE = "MSN_TRANSPORT_ACTIVE_IMAGE";
|
||||
public static final String MSN_TRANSPORT_INACTIVE_IMAGE = "MSN_TRANSPORT_INACTIVE_IMAGE";
|
||||
public static final String MYSPACE_TRANSPORT_ACTIVE_IMAGE = "MYSPACE_TRANSPORT_ACTIVE_IMAGE";
|
||||
public static final String MYSPACE_TRANSPORT_INACTIVE_IMAGE = "MYSPACE_TRANSPORT_INACTIVE_IMAGE";
|
||||
public static final String NOTEBOOK_IMAGE = "NOTEBOOK_IMAGE";
|
||||
@ -330,8 +322,6 @@ public class SparkRes {
|
||||
public static final String WORKGROUP_QUEUE = "WORKGROUP_QUEUE";
|
||||
public static final String XMPP_TRANSPORT_ACTIVE_IMAGE = "XMPP_TRANSPORT_ACTIVE_IMAGE";
|
||||
public static final String XMPP_TRANSPORT_INACTIVE_IMAGE = "XMPP_TRANSPORT_INACTIVE_IMAGE";
|
||||
public static final String YAHOO_TRANSPORT_ACTIVE_IMAGE = "YAHOO_TRANSPORT_ACTIVE_IMAGE";
|
||||
public static final String YAHOO_TRANSPORT_INACTIVE_IMAGE = "YAHOO_TRANSPORT_INACTIVE_IMAGE";
|
||||
public static final String YELLOW_BALL = "YELLOW_BALL";
|
||||
public static final String YELLOW_FLAG_16x16 = "YELLOW_FLAG_16x16";
|
||||
public static final String EXECUTABLE_NAME = "EXECUTABLE_NAME";
|
||||
|
||||
@ -33,6 +33,7 @@ import org.jivesoftware.spark.component.VerticalFlowLayout;
|
||||
|
||||
import org.jivesoftware.spark.plugin.Plugin;
|
||||
import org.jivesoftware.spark.ui.*;
|
||||
import org.jivesoftware.spark.util.StringUtils;
|
||||
import org.jivesoftware.spark.util.SwingWorker;
|
||||
import org.jivesoftware.spark.util.log.Log;
|
||||
import org.jivesoftware.sparkimpl.plugin.gateways.transports.*;
|
||||
@ -130,22 +131,7 @@ public class GatewayPlugin implements Plugin, ContactItemHandler {
|
||||
DiscoverItems discoItems = SparkManager.getSessionManager().getDiscoveredItems();
|
||||
for (DiscoverItems.Item item : discoItems.getItems()) {
|
||||
String entityName = item.getEntityID().toString();
|
||||
if (entityName.startsWith("aim.")) {
|
||||
AIMTransport aim = new AIMTransport(item.getEntityID().asDomainBareJid());
|
||||
TransportUtils.addTransport(item.getEntityID().asDomainBareJid(), aim);
|
||||
} else if (entityName.startsWith("msn.")) {
|
||||
MSNTransport msn = new MSNTransport(item.getEntityID().asDomainBareJid());
|
||||
TransportUtils.addTransport(item.getEntityID().asDomainBareJid(), msn);
|
||||
} else if (entityName.startsWith("yahoo.")) {
|
||||
YahooTransport yahoo = new YahooTransport(item.getEntityID().asDomainBareJid());
|
||||
TransportUtils.addTransport(item.getEntityID().asDomainBareJid(), yahoo);
|
||||
} else if (entityName.startsWith("icq.")) {
|
||||
ICQTransport icq = new ICQTransport(item.getEntityID().asDomainBareJid());
|
||||
TransportUtils.addTransport(item.getEntityID().asDomainBareJid(), icq);
|
||||
} else if (entityName.startsWith("gtalk.")) {
|
||||
GTalkTransport gtalk = new GTalkTransport(item.getEntityID().asDomainBareJid());
|
||||
TransportUtils.addTransport(item.getEntityID().asDomainBareJid(), gtalk);
|
||||
} else if (entityName.startsWith("xmpp.")) {
|
||||
if (entityName.startsWith("xmpp.")) {
|
||||
XMPPTransport xmppTransport = new XMPPTransport(item.getEntityID().asDomainBareJid());
|
||||
TransportUtils.addTransport(item.getEntityID().asDomainBareJid(), xmppTransport);
|
||||
} else if (entityName.startsWith("irc.")) {
|
||||
|
||||
@ -1,83 +0,0 @@
|
||||
/**
|
||||
* Copyright (C) 2004-2011 Jive Software. All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkimpl.plugin.gateways.transports;
|
||||
|
||||
import org.jivesoftware.resource.SparkRes;
|
||||
import org.jxmpp.jid.DomainBareJid;
|
||||
import org.jivesoftware.resource.Res;
|
||||
|
||||
import javax.swing.Icon;
|
||||
|
||||
/**
|
||||
*/
|
||||
public class AIMTransport implements Transport {
|
||||
|
||||
private DomainBareJid serviceName;
|
||||
|
||||
public AIMTransport(DomainBareJid serviceName){
|
||||
this.serviceName = serviceName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTitle(){
|
||||
return Res.getString("title.aim.registration");
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getInstructions() {
|
||||
return Res.getString("message.enter.aim");
|
||||
}
|
||||
|
||||
@Override
|
||||
public Icon getIcon() {
|
||||
return SparkRes.getImageIcon(SparkRes.AIM_TRANSPORT_ACTIVE_IMAGE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Icon getInactiveIcon() {
|
||||
return SparkRes.getImageIcon(SparkRes.AIM_TRANSPORT_INACTIVE_IMAGE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DomainBareJid getXMPPServiceDomain() {
|
||||
return serviceName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName(){
|
||||
return "AIM";
|
||||
}
|
||||
|
||||
public void setServiceName(DomainBareJid serviceName) {
|
||||
this.serviceName = serviceName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean requiresUsername() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean requiresPassword() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean requiresNickname() {
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
@ -1,83 +0,0 @@
|
||||
/**
|
||||
* Copyright (C) 2004-2011 Jive Software. All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkimpl.plugin.gateways.transports;
|
||||
|
||||
import org.jivesoftware.resource.Res;
|
||||
import org.jivesoftware.resource.SparkRes;
|
||||
import org.jxmpp.jid.DomainBareJid;
|
||||
|
||||
import javax.swing.Icon;
|
||||
|
||||
/**
|
||||
*/
|
||||
public class GTalkTransport implements Transport {
|
||||
|
||||
private DomainBareJid serviceName;
|
||||
|
||||
public GTalkTransport(DomainBareJid serviceName) {
|
||||
this.serviceName = serviceName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTitle() {
|
||||
return Res.getString("title.gtalk.registration");
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getInstructions() {
|
||||
return Res.getString("message.enter.gtalk");
|
||||
}
|
||||
|
||||
@Override
|
||||
public Icon getIcon() {
|
||||
return SparkRes.getImageIcon(SparkRes.GTALK_TRANSPORT_ACTIVE_IMAGE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Icon getInactiveIcon() {
|
||||
return SparkRes.getImageIcon(SparkRes.GTALK_TRANSPORT_INACTIVE_IMAGE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DomainBareJid getXMPPServiceDomain() {
|
||||
return serviceName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
return "GTalk";
|
||||
}
|
||||
|
||||
public void setServiceName(DomainBareJid serviceName) {
|
||||
this.serviceName = serviceName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean requiresUsername() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean requiresPassword() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean requiresNickname() {
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
@ -1,84 +0,0 @@
|
||||
/**
|
||||
* Copyright (C) 2004-2011 Jive Software. All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkimpl.plugin.gateways.transports;
|
||||
|
||||
import org.jivesoftware.resource.Res;
|
||||
import org.jivesoftware.resource.SparkRes;
|
||||
import org.jxmpp.jid.DomainBareJid;
|
||||
|
||||
import javax.swing.Icon;
|
||||
|
||||
/**
|
||||
*/
|
||||
public class ICQTransport implements Transport {
|
||||
|
||||
private DomainBareJid serviceName;
|
||||
|
||||
public ICQTransport(DomainBareJid serviceName){
|
||||
this.serviceName = serviceName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTitle(){
|
||||
return Res.getString("title.icq.registration");
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getInstructions() {
|
||||
return Res.getString("message.enter.icq");
|
||||
}
|
||||
|
||||
@Override
|
||||
public Icon getIcon() {
|
||||
return SparkRes.getImageIcon(SparkRes.ICQ_TRANSPORT_ACTIVE_IMAGE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Icon getInactiveIcon() {
|
||||
return SparkRes.getImageIcon(SparkRes.ICQ_TRANSPORT_INACTIVE_IMAGE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName(){
|
||||
return "ICQ";
|
||||
}
|
||||
|
||||
@Override
|
||||
public DomainBareJid getXMPPServiceDomain() {
|
||||
return serviceName;
|
||||
}
|
||||
|
||||
public void setServiceName(DomainBareJid serviceName) {
|
||||
this.serviceName = serviceName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean requiresUsername() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean requiresPassword() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean requiresNickname() {
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,83 +0,0 @@
|
||||
/**
|
||||
* Copyright (C) 2004-2011 Jive Software. All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkimpl.plugin.gateways.transports;
|
||||
|
||||
import org.jivesoftware.resource.SparkRes;
|
||||
import org.jxmpp.jid.DomainBareJid;
|
||||
import org.jivesoftware.resource.Res;
|
||||
|
||||
import javax.swing.Icon;
|
||||
|
||||
/**
|
||||
*/
|
||||
public class MSNTransport implements Transport {
|
||||
|
||||
private DomainBareJid serviceName;
|
||||
|
||||
public MSNTransport(DomainBareJid serviceName) {
|
||||
this.serviceName = serviceName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTitle() {
|
||||
return Res.getString("title.msn.registration");
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getInstructions() {
|
||||
return Res.getString("message.enter.msn");
|
||||
}
|
||||
|
||||
@Override
|
||||
public Icon getIcon() {
|
||||
return SparkRes.getImageIcon(SparkRes.MSN_TRANSPORT_ACTIVE_IMAGE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Icon getInactiveIcon() {
|
||||
return SparkRes.getImageIcon(SparkRes.MSN_TRANSPORT_INACTIVE_IMAGE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DomainBareJid getXMPPServiceDomain() {
|
||||
return serviceName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName(){
|
||||
return "MSN";
|
||||
}
|
||||
|
||||
public void setServiceName(DomainBareJid serviceName) {
|
||||
this.serviceName = serviceName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean requiresUsername() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean requiresPassword() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean requiresNickname() {
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
@ -1,79 +0,0 @@
|
||||
/**
|
||||
* Copyright (C) 2004-2011 Jive Software. All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkimpl.plugin.gateways.transports;
|
||||
|
||||
import org.jivesoftware.resource.SparkRes;
|
||||
import org.jxmpp.jid.DomainBareJid;
|
||||
import org.jivesoftware.resource.Res;
|
||||
|
||||
import javax.swing.Icon;
|
||||
|
||||
/**
|
||||
*/
|
||||
public class YahooTransport implements Transport {
|
||||
|
||||
private final DomainBareJid serviceName;
|
||||
|
||||
public YahooTransport(DomainBareJid serviceName) {
|
||||
this.serviceName = serviceName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTitle() {
|
||||
return Res.getString("title.yahoo.registration");
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getInstructions() {
|
||||
return Res.getString("message.enter.yahoo");
|
||||
}
|
||||
|
||||
@Override
|
||||
public Icon getIcon() {
|
||||
return SparkRes.getImageIcon(SparkRes.YAHOO_TRANSPORT_ACTIVE_IMAGE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Icon getInactiveIcon() {
|
||||
return SparkRes.getImageIcon(SparkRes.YAHOO_TRANSPORT_INACTIVE_IMAGE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DomainBareJid getXMPPServiceDomain() {
|
||||
return serviceName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName(){
|
||||
return "Yahoo";
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean requiresUsername() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean requiresPassword() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean requiresNickname() {
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
@ -527,25 +527,20 @@ message.downloading = Downloading {0}
|
||||
message.downloading.spark.plug = Downloading Spark-Plug
|
||||
message.end.chat = Would you like to end this chat?
|
||||
message.end.conversation = Would you like to end this session?
|
||||
message.enter.aim = Enter your AIM username and password below
|
||||
message.enter.broadcast.message = Enter message to broadcast to selected users
|
||||
message.enter.gadugadu = Enter your GaduGadu username and password below
|
||||
message.enter.gtalk = Enter your GTalk username and password below
|
||||
message.enter.icq = Enter your ICQ username and password below
|
||||
message.enter.irc = Enter your IRC username, password and nickname below
|
||||
message.enter.sametime = Enter your Sametime username and password below
|
||||
message.enter.facebook = Enter your Facebook username and password below
|
||||
message.enter.myspace = Enter your MySpace username and password below
|
||||
message.enter.jabber.id = Enter Jabber ID
|
||||
message.enter.message.to.broadcast = Enter message to broadcast to your entire roster list
|
||||
message.enter.msn = Enter your MSN username and password below
|
||||
message.enter.new.subject = Enter new subject
|
||||
message.enter.qq = Enter your QQ Number and password below
|
||||
message.enter.room.password = Enter room password
|
||||
message.enter.simple = Enter your SIMPLE username and password below
|
||||
message.enter.valid.jid = Enter a valid Jabber ID
|
||||
message.enter.xmpp = Enter your XMPP username and password below
|
||||
message.enter.yahoo = Enter your username and password to connect to Yahoo
|
||||
message.error.during.file.transfer = There was an error during file transfer
|
||||
message.error.must.use.reserved.nick = You must use your reserved room nick.
|
||||
message.error.nickname.in.use = Your desired nickname is in use or reserved by someone else.
|
||||
@ -846,11 +841,8 @@ title.general.media = Media settings
|
||||
title.general.chat.settings = General chat settings
|
||||
title.group.chat = Group chat
|
||||
title.group.chat.settings = Group chat settings
|
||||
title.gtalk.registration = GTalk account credentials
|
||||
title.history.for = Conversation history for {0}
|
||||
title.icq.registration = ICQ account credentials
|
||||
title.irc.registration = IRC account credentials
|
||||
title.aim.registration = AIM account credentials
|
||||
title.sametime.registration = Sametime account credentials
|
||||
title.facebook.registration = Facebook account credentials
|
||||
title.myspace.registration = MySpace account credentials
|
||||
@ -867,7 +859,6 @@ title.login.error = Login error
|
||||
title.login.settings = Login settings
|
||||
title.login.no.account = Unable to determine
|
||||
title.lookup.profile = Lookup profile
|
||||
title.msn.registration = MSN account credentials
|
||||
title.name = Name
|
||||
title.new.client.available = New client available
|
||||
title.new.roster.group = New roster group
|
||||
@ -914,7 +905,6 @@ title.view.room.information = View room information
|
||||
title.waiting.to.call = Waiting to place call
|
||||
title.warning = Warning
|
||||
title.xmpp.registration = XMPP account credentials
|
||||
title.yahoo.registration = Yahoo account credentials
|
||||
title.appearance.showVCards = Show &VCards in the contact list
|
||||
title.subscription.request = Subscription request
|
||||
title.certificate = Certificate
|
||||
|
||||
@ -348,12 +348,7 @@ message.you.have.sent = Poslal jste soubor {0}.
|
||||
message.file.transfer.rejected = Přenos souborů nebyl odsouhlasen {0}.
|
||||
message.disable.transport = Odstranit přihlašovací informace z {0}?
|
||||
message.register.transports = Registrovat s těmito možnýmy transporty.
|
||||
message.enter.aim = Zadejte svoje AIM uživatelské jméno a heslo níže.
|
||||
message.enter.msn = Zadejte svoje MSN uživatelské jméno a heslo níže.
|
||||
message.enter.gtalk = Zadejte svoje GTalk uživatelské jméno a heslo níže.
|
||||
message.enter.xmpp = Zadejte svoje XMPP uživatelské jméno a heslo níže.
|
||||
message.enter.yahoo = Zadejte svoje uživatelské jméno a heslo na připojení k Yahoo.
|
||||
message.enter.icq = Zadejte svoje ICQ uživatelské jméno a heslo níže.
|
||||
message.enter.irc = Zadejte svoje IRC uživatelské jméno, heslo a přezdívku níže.
|
||||
message.enter.simple = Zadejte svoje SIMPLE uživatelské jméno a heslo níže.
|
||||
message.enter.gadugadu = Zadejte svoje GaduGadu uživatelské jméno a heslo níže.
|
||||
@ -468,12 +463,7 @@ title.file.exists = Soubor Existuje
|
||||
title.disable.transport = Odstranit Přihlašovací Informace
|
||||
title.available.transports = Dostupné Transporty
|
||||
title.transports = Trasnporty
|
||||
title.aim.registration = AIM Přihlašovací Údaje
|
||||
title.gtalk.registration = GTalk Přihlašovací Údaje
|
||||
title.xmpp.registration = XMPP Přihlašovací Údaje
|
||||
title.msn.registration = MSN Přihlašovací Údaje
|
||||
title.yahoo.registration = Yahoo Přihlašovací Údaje
|
||||
title.icq.registration = ICQ Přihlašovací Údaje
|
||||
title.irc.registration = IRC Přihlašovací Údaje
|
||||
title.simple.registration = SIMPLE Přihlašovací Údaje
|
||||
title.gadugadu.registration = GaduGadu Přihlašovací Údaje
|
||||
|
||||
@ -576,10 +576,6 @@ message.you.have.sent = Datei wurde an {0} gesendet.
|
||||
message.file.transfer.rejected = Der Dateitransfer wurde von {0} abgelehnt.
|
||||
message.disable.transport = Soll der aktive Transport unterbunden werden?
|
||||
message.register.transports = Bei den verfügbaren Transportprotokollen registrieren.
|
||||
message.enter.aim = Geben Sie Ihr AIM-Anmeldung und Passwort ein.
|
||||
message.enter.msn = Geben Sie Ihr MSN-Anmeldung und Passwort ein.
|
||||
message.enter.yahoo = Geben Sie Ihre Anmeldung und Passwort für Yahoo ein.
|
||||
message.enter.icq = Geben Sie Ihre Anmeldung und Passwort für ICQ ein.
|
||||
message.enter.sametime = Geben Sie Ihre Anmeldung und Passwort für Sametime ein.
|
||||
message.enter.facebook = Geben Sie Ihre Anmeldung und Passwort für Facebook ein.
|
||||
message.enter.myspace = Geben Sie Ihre Anmeldung und Passwort für MySpace ein.
|
||||
@ -694,10 +690,6 @@ title.file.exists = Datei existiert
|
||||
title.disable.transport = Transport deaktivieren
|
||||
title.available.transports = Verfügbare Transportprotokolle
|
||||
title.transports = Transporte
|
||||
title.aim.registration = AIM-Registrierung
|
||||
title.msn.registration = MSN-Registrierung
|
||||
title.yahoo.registration = Yahoo-Registrierung
|
||||
title.icq.registration = ICQ-Registrierung
|
||||
title.facebook.registration = Facebook-Registrierung
|
||||
title.myspace.registration = MySpace-Registrierung
|
||||
title.sametime.registration = Sametime-Registrierung
|
||||
@ -784,7 +776,6 @@ message = Nachricht
|
||||
message.alert.notify = Warnungsbenachrichtigung
|
||||
message.disconnected.shutdown = Ihre Verbindung wurde unterbrochen, weil der Server heruntergefahren wurde
|
||||
message.enter.gadugadu = GaduGadu-Benutzername und -Passwort eingeben
|
||||
message.enter.gtalk = GTalk-Benutzername und -Passwort eingeben
|
||||
message.enter.irc = IRC-Benutzername und -Passwort eingeben
|
||||
message.enter.qq = QQ-Benutzername und -Passwort eingeben
|
||||
message.enter.simple = SIMPLE-Benutzername und -Passwort eingeben
|
||||
@ -820,7 +811,6 @@ title.appearance = Erscheinung
|
||||
title.delete.file = Möchten Sie diese Datei wirklich löschen?
|
||||
title.gadugadu.registration = GaduGadu-Kontoinformationen
|
||||
title.general.media = Medieneinstellungen
|
||||
title.gtalk.registration = GTalk-Kontoinformationen
|
||||
title.irc.registration = IRC-Kontoinformationen
|
||||
title.login.error = Anmeldefehler
|
||||
title.no.updates = Keine Aktualisierungen
|
||||
|
||||
@ -383,22 +383,17 @@ message.downloading = Descargando {0}
|
||||
message.downloading.spark.plug = Descargando Spark-Plug
|
||||
message.end.chat = ¿Desea finalizar esta conversación?
|
||||
message.end.conversation = ¿Desea finalizar esta sesión?
|
||||
message.enter.aim = Ingrese su usuario de AIM y contraseña.
|
||||
message.enter.broadcast.message = Ingrese un mensaje para difundir a los usuarios seleccionados.
|
||||
message.enter.gadugadu = Ingrese su usuario y contraseña de de GaduGadu.
|
||||
message.enter.gtalk = Ingrese su usuario y contraseña de Gtalk.
|
||||
message.enter.icq = Ingrese su usuario y contraseña de ICQ.
|
||||
message.enter.irc = Ingrese su usuario, contraseña y apodo de IRC.
|
||||
message.enter.jabber.id = Ingrese un Jabber ID
|
||||
message.enter.message.to.broadcast = Ingresar mensaje para difundir a su lista de contactos.
|
||||
message.enter.msn = Ingrese su usuario de MSN y contraseña.
|
||||
message.enter.new.subject = Ingrese un tema
|
||||
message.enter.qq = Ingrese su número QQ y contraseña.
|
||||
message.enter.room.password = Ingresar la contraseña de cuarto
|
||||
message.enter.simple = Ingrese su usuario y contraseña de SIMPLE.
|
||||
message.enter.valid.jid = Ingrese un Jabber ID válido
|
||||
message.enter.xmpp = Ingrese su usuario y contraseña de XMPP.
|
||||
message.enter.yahoo = Ingrese su usuario y contraseña para conectarse a Yahoo.
|
||||
message.error.during.file.transfer = Hubo un error transfiriendo el archivo.
|
||||
message.file.exists.question = El archivo ya existe. ¿Sobreescribir?
|
||||
message.file.size = Tamaño del archivo: {0}
|
||||
@ -648,9 +643,7 @@ title.gadugadu.registration = Credenciales de cuentas GaduGadu
|
||||
title.general.chat.settings = Configuración General de Chat
|
||||
title.group.chat = Grupo de chat
|
||||
title.group.chat.settings = Configuraciones de Chat grupal
|
||||
title.gtalk.registration = Credenciales de cuenta GTalk
|
||||
title.history.for = Historial de conversación Con {0}
|
||||
title.icq.registration = Registro de cuenta ICQ
|
||||
title.incoming.call = Llamada entrante
|
||||
title.input.fileexplorer = Por favor ingrese el nombre del Explorador de Archivos
|
||||
title.input.newname = Por favor ingrese el nuevo nombre:
|
||||
@ -664,7 +657,6 @@ title.login = Ingresar
|
||||
title.login.error = Error de inicio de sesión
|
||||
title.login.settings = Configuración de Login
|
||||
title.lookup.profile = Buscar Perfil
|
||||
title.msn.registration = Credenciales de cuentas MSN
|
||||
title.name = Nombre
|
||||
title.new.client.available = Nuevo Cliente disponible
|
||||
title.new.roster.group = Nuevo grupo de contactos
|
||||
@ -708,7 +700,6 @@ title.view.profile.for = Viendo Perfil De {0}
|
||||
title.view.room.information = Ver Información del cuarto
|
||||
title.waiting.to.call = Esperando para hacer llamado
|
||||
title.xmpp.registration = Credenciales de cuenta XMPP
|
||||
title.yahoo.registration = Credenciales de cuenta Yahoo
|
||||
|
||||
tooltip.appearance = Cambiar la apariencia de sus conversaciones.
|
||||
tooltip.file.transfer = Preferencias de transferencia de archivos.
|
||||
@ -785,7 +776,6 @@ title.client.logs = Client logs
|
||||
title.bookmarks = Bookmarks
|
||||
title.advanced.connection.usesso = Use Single Sign-On (SSO) via GSSAPI
|
||||
title.general.media = Media settings
|
||||
title.aim.registration = AIM account credentials
|
||||
title.sametime.registration = Sametime account credentials
|
||||
title.facebook.registration = Facebook account credentials
|
||||
title.myspace.registration = MySpace account credentials
|
||||
|
||||
@ -422,10 +422,6 @@ message.you.have.sent = Olet lähettänyt tiedoston käyttäjälle {0}.
|
||||
message.file.transfer.rejected = Tiedostonsiirto käyttäjälle {0} hylättiin.
|
||||
message.disable.transport = Poista kirjautumistiedot {0}?
|
||||
message.register.transports = Rekisteröidy näihin siirtoprotokolliin
|
||||
message.enter.aim = Anna AIM käyttäjänimi ja salasana.
|
||||
message.enter.msn = Anna MSN käyttäjänimi ja salasana.
|
||||
message.enter.yahoo = Anna Yahoo käyttäjänimi ja salasana.
|
||||
message.enter.icq = Anna ICQ käyttäjänimi ja salasana.
|
||||
message.enter.simple = Anna SIMPLE käyttäjänimi ja salasana
|
||||
message.enter.irc = Anna IRC käyttäjänimi ja salasana
|
||||
message.enter.gadugadu = Anna GaduGadu käyttäjänimi ja salasana.
|
||||
@ -488,7 +484,6 @@ message.server.unavailable = Palvelimeen ei saada yhteyttä, virheellinen nimi t
|
||||
message.unrecoverable.error = Virheellinen käyttäjänimi tai salasana.
|
||||
message.waiting.for.user.to.join = Odotellaan käyttäjän {0} liittymistä.
|
||||
message.invite.to.groupchat = {0} pyytää sinua liittymään ryhmäkeskusteluun
|
||||
message.enter.gtalk = Anna GTalk tunnus ja salasana alla
|
||||
message.enter.sametime = Anna Sametime tunnus ja salasana alla
|
||||
message.enter.facebook = Anna Facebook tunnus ja salasana alla
|
||||
message.enter.myspace = Anna MySpace tunnus ja salasana alla
|
||||
@ -565,11 +560,7 @@ title.file.exists = Tiedosto on olemassa
|
||||
title.disable.transport = Poista kirjautumistunnukset
|
||||
title.available.transports = Käytössä olevat siirtoprotokollat
|
||||
title.transports = Siirtoprotokollat
|
||||
title.aim.registration = AIM Tilitiedot
|
||||
title.msn.registration = MSN Tilitiedot
|
||||
title.qq.registration = QQ Tilitiedot
|
||||
title.yahoo.registration = Yahoo Tilitiedot
|
||||
title.icq.registration = ICQ Tilitiedot
|
||||
title.simple.registration = SIMPLE Tilitiedot
|
||||
title.irc.registration = IRC Tilitiedot
|
||||
title.gadugadu.registration = GaduGadu Tilitiedot
|
||||
@ -632,7 +623,6 @@ title.file = Tiedosto
|
||||
title.filesize = Koko
|
||||
title.general.media = Media-asetukset
|
||||
title.group.chat.settings = Ryhmäkeskusteluasetukset
|
||||
title.gtalk.registration = GTalk tunnuksen tiedott
|
||||
title.sametime.registration = Sametime tunnuksen tiedot
|
||||
title.facebook.registration = Facebook tunnuksen tiedot
|
||||
title.myspace.registration = MySpace tunnuksen tiedot
|
||||
|
||||
@ -490,16 +490,12 @@ message.downloading = Téléchargement de {0} en cours
|
||||
message.downloading.spark.plug = Téléchargement du Spark-Plug
|
||||
message.end.chat = Voulez-vous en finir avec ce chat?
|
||||
message.end.conversation = Voulez-vous en finir avec cette session?
|
||||
message.enter.aim = Entrez votre nom d'utilisateur et mot de passe AIM.
|
||||
message.enter.broadcast.message = Entrez le message groupé à envoyer aux utilisateurs selectionnés.
|
||||
message.enter.facebook = Indiquez votre identifiant et mot de passe Facebook ci-dessous
|
||||
message.enter.gadugadu = Indiquez votre identifiant et mot de passe GaduGadu ci-dessous
|
||||
message.enter.gtalk = Indiquez votre identifiant et mot de passe GTalk ci-dessous
|
||||
message.enter.icq = Entrez votre nom d'utilisateur ICQ et votre mot de passe.
|
||||
message.enter.irc = Indiquez votre identifiant et mot de passe IRC ci-dessous
|
||||
message.enter.jabber.id = Entrez votre Jabber ID
|
||||
message.enter.message.to.broadcast = Entrez le message groupé qui sera envoyé à tous vos Contacts.
|
||||
message.enter.msn = Entrez votre nom d'utilisateur et mot de passe MSN.
|
||||
message.enter.myspace = Indiquez votre identifiant et mot de passe MySpace ci-dessous
|
||||
message.enter.new.subject = Entrez un nouveau sujet
|
||||
message.enter.qq = Indiquez votre identifiant et mot de passe QQ ci-dessous
|
||||
@ -508,7 +504,6 @@ message.enter.sametime = Indiquez votre identifiant et mot de passe Sametime ci-
|
||||
message.enter.simple = Indiquez votre identifiant et mot de passe SIMPLE ci-dessous
|
||||
message.enter.valid.jid = Entrez un JID valide
|
||||
message.enter.xmpp = Indiquez votre identifiant et mot de passe XMPP ci-dessous
|
||||
message.enter.yahoo = Entrez votre nom d'utilisateur et mot de passe Yahoo.
|
||||
message.error.during.file.transfer = Erreur s'est produite durant le transfert de fichier.
|
||||
message.file.exists.question = Le fichier existe déjà. Ecrire par dessus?
|
||||
message.file.size = Taille du Fichier\: {0}
|
||||
@ -753,7 +748,6 @@ title.advanced.connection.sso.account = Ceci utilisera le compte du bureau pour
|
||||
title.advanced.connection.sso.noprincipal = Spark est incapable de trouver le principal à utiliser pour le Single Sign-On. Ceci empêche SSO de fonctionner.
|
||||
title.advanced.connection.sso.unable = Impossible de connecter en utilisant le Single Sign-On. SVP vérifiez votre principal et les paramètres du serveur.
|
||||
title.advanced.connection.usesso = Se connecter via GSSAPI (SSO)
|
||||
title.aim.registration = Compte AIM
|
||||
title.alert = Alerte
|
||||
title.appearance = Apparence
|
||||
title.appearance.preferences = Personnalisation
|
||||
@ -808,9 +802,7 @@ title.general.chat.settings = Paramètres de Chat
|
||||
title.general.media = Réglages Multimedia
|
||||
title.group.chat = Conférence
|
||||
title.group.chat.settings = Réglages des groupes de discussion
|
||||
title.gtalk.registration = Identifiants GTalk
|
||||
title.history.for = Historique de conversation de {0}
|
||||
title.icq.registration = Compte ICQ
|
||||
title.incoming.call = Appel Entrant
|
||||
title.input.fileexplorer = Saisissez le nom de votre navigateur:
|
||||
title.input.newname = Saisissez le nouveau nom\:
|
||||
@ -825,7 +817,6 @@ title.login.error = Erreur de connexion
|
||||
title.login.no.account = Impossible de déterminer
|
||||
title.login.settings = Paramètres de Login
|
||||
title.lookup.profile = Voir Profil
|
||||
title.msn.registration = Compte MSN
|
||||
title.myspace.registration = Identifiants MySpace
|
||||
title.name = Nom
|
||||
title.new.client.available = Nouveau Client disponible
|
||||
@ -874,7 +865,6 @@ title.view.profile.for = Voir le Profil de {0}
|
||||
title.view.room.information = Voir les Infos du Salon
|
||||
title.waiting.to.call = Attente
|
||||
title.xmpp.registration = Identifiants XMPP
|
||||
title.yahoo.registration = Compte Yahoo
|
||||
|
||||
tooltip.appearance = Changer l'apparence des conversations
|
||||
tooltip.file.transfer = Préférences pour le transfert de fichiers
|
||||
|
||||
@ -480,25 +480,20 @@ message.downloading = Download di {0} in corso
|
||||
message.downloading.spark.plug = Download di Spark-Plug in corso
|
||||
message.end.chat = Terminare questa chat?
|
||||
message.end.conversation = Terminare questa sessione?
|
||||
message.enter.aim = Digita nei campi sottostanti il tuo nome utente e password per AIM.
|
||||
message.enter.broadcast.message = Inserisci il messaggio broadcast per gli utenti selezionati.
|
||||
message.enter.gadugadu = Digita nei campi sottostanti il tuo nome utente e password per GaduGadu.
|
||||
message.enter.gtalk = Digita nei campi sottostanti il tuo nome utente e password per GTalk.
|
||||
message.enter.icq = Digita nei campi sottostanti il tuo nome utente e password per ICQ.
|
||||
message.enter.irc = Digita nei campi sottostanti l'username, la password, e il nickname per IRC.
|
||||
message.enter.sametime = Inserisci qua sotto il tuo username e password Sametime
|
||||
message.enter.facebook = Inserisci qua sotto il tuo username e password Facebook
|
||||
message.enter.myspace = Inserisci qua sotto il tuo username e password MySpace
|
||||
message.enter.jabber.id = Digita Jabber ID
|
||||
message.enter.message.to.broadcast = Inserisci il messaggio broadcast da inviare al tuo elenco.
|
||||
message.enter.msn = Digita nei campi sottostanti il tuoi nome utente e password per MSN.
|
||||
message.enter.new.subject = Digita un nuovo argomento
|
||||
message.enter.qq = Inserisci qua sotto il tuo numero e password QQ
|
||||
message.enter.room.password = Digita la Password della stanza
|
||||
message.enter.simple = Digita nei campi sottostanti il tuo nome utente e password per SIMPLE.
|
||||
message.enter.valid.jid = Inserisci un Jabber ID valido
|
||||
message.enter.xmpp = Digita nei campi sottostanti il tuoi nome utente e password per XMPP.
|
||||
message.enter.yahoo = Digita nei campi sottostanti il tuoi nome utente e password per Yahoo.
|
||||
message.error.during.file.transfer = Si è verificato un errore durante il trasferimento di un file.
|
||||
message.file.exists.question = Il file esiste già. Vuoi sovrascriverlo?
|
||||
message.file.size = Dimensione File: {0}
|
||||
@ -773,11 +768,8 @@ title.general.media = Impostazioni media
|
||||
title.general.chat.settings = Impostazioni generali per la chat
|
||||
title.group.chat = Chat di gruppo
|
||||
title.group.chat.settings = Impostazioni chat di gruppo
|
||||
title.gtalk.registration = Credenziali account GTalk
|
||||
title.history.for = Cronologia delle conversazioni per {0}
|
||||
title.icq.registration = Credenziali account ICQ
|
||||
title.irc.registration = Credenziali account IRC
|
||||
title.aim.registration = Credenziali account AIM
|
||||
title.sametime.registration = Credenziali account Sametime
|
||||
title.facebook.registration = Credenziali account Facebook
|
||||
title.myspace.registration = Credenziali account MySpace
|
||||
@ -794,7 +786,6 @@ title.login.error = Errore di login
|
||||
title.login.no.account = Impossibile trovare account
|
||||
title.login.settings = Parametri di login
|
||||
title.lookup.profile = Ricerca del profilo
|
||||
title.msn.registration = Credenziali account MSN
|
||||
title.name = Nome
|
||||
title.new.client.available = Nuovo client disponibile
|
||||
title.new.roster.group = Nuovo gruppo di elenco
|
||||
@ -840,7 +831,6 @@ title.view.profile.for = Visualizzazione Profilo Per {0}
|
||||
title.view.room.information = Visualizza informazioni sulla stanza
|
||||
title.waiting.to.call = In attesa di effettuare la chiamata
|
||||
title.xmpp.registration = Credenziali Account XMPP
|
||||
title.yahoo.registration = Credenziali Account Yahoo
|
||||
title.appearance.showVCards = Mostra &VCards nella lista dei contatti
|
||||
title.subscription.request = Richiesta di sottoscrizione
|
||||
|
||||
|
||||
@ -347,10 +347,6 @@ message.you.have.sent = {0}にファイルを送信しました。
|
||||
message.file.transfer.rejected = {0}はファイル転送を拒否しています。
|
||||
message.disable.transport = {0}のログイン情報を削除してよろしいですか?
|
||||
message.register.transports = 利用可能な通信を設定してください。
|
||||
message.enter.aim = AIMのユーザ名とパスワードを入力してください。
|
||||
message.enter.msn = MSNのユーザ名とパスワードを入力してください。
|
||||
message.enter.yahoo = Yahooのユーザ名とパスワードを入力してください。
|
||||
message.enter.icq = ICQのユーザ名とパスワードを入力してください。
|
||||
message.username.password.error = ユーザ名とパスワードを設定する必要があります。
|
||||
message.registration.transport.failed = ゲートウエイの登録が出来ません。
|
||||
message.client.information = {0}のクライアント情報
|
||||
@ -454,10 +450,6 @@ title.file.exists = ファイルが存在
|
||||
title.disable.transport = ログイン情報を破棄
|
||||
title.available.transports = 利用可能な通信
|
||||
title.transports = 通信
|
||||
title.aim.registration = AIM アカウント証明書
|
||||
title.msn.registration = MSN アカウント証明書
|
||||
title.yahoo.registration = Yahoo アカウント証明書
|
||||
title.icq.registration = ICQ アカウント証明書
|
||||
title.registration.error = 登録エラー
|
||||
title.jabber.browser = ブラウザ
|
||||
title.version.and.time = バージョンと時間
|
||||
|
||||
@ -440,25 +440,20 @@ message.downloading = {0} 다운로드 중
|
||||
message.downloading.spark.plug = 플러그 다운로드중
|
||||
message.end.chat = 이 채팅을 종료하시겠습니까?
|
||||
message.end.conversation = 지금 세션을 종료하길 원하세요?
|
||||
message.enter.aim = AIM 사용자명과 비밀번호를 아래에 입력하세요.
|
||||
message.enter.broadcast.message = 선택된 친구들에게 브로드케스트 메시지 보내기
|
||||
message.enter.gadugadu = GaduGadu 사용자명과 비밀번호를 아래에 입력하세요.
|
||||
message.enter.gtalk = GTalik 사용자명과 비밀번호를 아래에 입력하세요
|
||||
message.enter.icq = ICQ 사용자명과 비밀번호를 아래에 입력하세요.
|
||||
message.enter.irc = IRC 사용자명과 비밀번호를 아래에 입력하세요.
|
||||
message.enter.sametime = SameTime 사용자명과 비밀번호를 아래에 입력하세요.
|
||||
message.enter.facebook = FaceBook 사용자명과 비밀번호를 아래에 입력하세요.
|
||||
message.enter.myspace = Myspace 사용자명과 비밀번호를 아래에 입력하세요.
|
||||
message.enter.jabber.id = Jabber 사용자명을 아래에 입력하세요.
|
||||
message.enter.message.to.broadcast = 주소록의 모두에게 전체알림 할 메시지를 입력하세요..
|
||||
message.enter.msn = MSN 사용자명과 비밀번호를 아래에 입력하세요.
|
||||
message.enter.new.subject = 새로운 주제를 입력하세요
|
||||
message.enter.qq = QQ 번호와 비밀번호를 아래에 입력하세요
|
||||
message.enter.room.password = 방 비밀번호를 입력하세요
|
||||
message.enter.simple = Simple에 접속하기 위해 당신의 사용자명과 비밀번호를 입력하세요.
|
||||
message.enter.valid.jid = 유효한 Jabber ID 입력
|
||||
message.enter.xmpp = XMPP에 접속하기 위해 당신의 사용자명과 비밀번호를 입력하세요.
|
||||
message.enter.yahoo = Yahoo에 접속하기 위해 당신의 사용자명과 비밀번호를 입력하세요.
|
||||
message.error.during.file.transfer = 파일 전송중 에러가 발생했습니다.
|
||||
message.file.exists.question = 파일이 존재합니다. 덮어쓰시겠습니까?
|
||||
message.file.size = 파일 크기: {0}
|
||||
@ -703,9 +698,7 @@ title.general.media = 미디어 설정
|
||||
title.general.chat.settings = 일반 대화 설정
|
||||
title.group.chat = 그룹 대화
|
||||
title.group.chat.settings = 그룹 대화 설정
|
||||
title.gtalk.registration = G talk 계정인증
|
||||
title.history.for = {0} 을 위한 대화내용
|
||||
title.icq.registration = ICQ 계정인증
|
||||
title.irc.registration = IRC 계정 인증
|
||||
title.sametime.registration = Sametime 계정인증
|
||||
title.facebook.registration = Facebook 계정인증
|
||||
@ -722,7 +715,6 @@ title.login = 로그인
|
||||
title.login.error = 로그인 실패
|
||||
title.login.settings = 로그인 설정
|
||||
title.lookup.profile = 프로필 검색
|
||||
title.msn.registration = MSN 계정 인증
|
||||
title.name = 이름
|
||||
title.new.client.available = 새로운 클라이언트 사용가능
|
||||
title.new.roster.group = 새 그룹
|
||||
@ -766,7 +758,6 @@ title.view.profile.for = {0} 프로필
|
||||
title.view.room.information = 방정보 보기
|
||||
title.waiting.to.call = 전화연결을 위해 기다려주십시오.
|
||||
title.xmpp.registration = xmpp 계정인증
|
||||
title.yahoo.registration = 야후 계정 인증
|
||||
title.appearance.showVCards = 친구 리스트에서 프로필 정보 보이기
|
||||
title.subscription.request= 구독이 필요합니다.
|
||||
|
||||
|
||||
@ -398,16 +398,12 @@ message.downloading={0} жүктөөлүп жатат
|
||||
message.downloading.spark.plug=Spark-Plug жүктөлүп жатат
|
||||
message.end.chat= Чатты аяктоо?
|
||||
message.end.conversation= Сүйлөшүүнү аяктоо?
|
||||
message.enter.aim=AIM колдонуучу атын жана сырсөзүн кириңизимя и пароль.
|
||||
message.enter.broadcast.message= Тандалган колдонуучулар үчүн көптүк кабарламаны киргизиңиз.
|
||||
message.enter.facebook=Facebook колдонуучу атын жана сырсөзүн кириңиз.
|
||||
message.enter.gadugadu=GaduGadu колдонуучу атын жана сырсөзүн кириңиз.
|
||||
message.enter.gtalk=GTalk коолонуучу атын жана сырсөзүн кириңиз и пароль.
|
||||
message.enter.icq=ICQ номерин жана сырсөзүн кириңиз.
|
||||
message.enter.irc=IRC колдонуучу атын, сырсөзүн жана такма ысымыңызы кириңиз.
|
||||
message.enter.jabber.id=Jabber ID'ни кириңиз
|
||||
message.enter.message.to.broadcast= Контакт тизмесинде бардык колдонуучуларга жөнөтүлүүчү көптүк кабарламаны кириңиз.
|
||||
message.enter.msn=MSN колдонуучу атын жана сырсөзүн кириңиз.
|
||||
message.enter.myspace=MySpace колдонуучу атын жана сырсөзүн кириңиз.
|
||||
message.enter.new.subject= Введите тему
|
||||
message.enter.qq=QQ номерин жана сырсөзүн кириңиз.
|
||||
@ -416,7 +412,6 @@ message.enter.sametime=Sametime колдонуучу атын жана сырс
|
||||
message.enter.simple=SIMPLE колдонуучу атын жана сырсөзүн кириңиз.
|
||||
message.enter.valid.jid=Туура Jabber ID кириңиз
|
||||
message.enter.xmpp=XMPP колдонуучу атын жана сырсөзүн кириңиз.
|
||||
message.enter.yahoo=Yahoo колдонуучу атын жана сырсөзүн кириңиз.
|
||||
message.error.during.file.transfer= Файлды жөнөтүүдө ката чыкты.
|
||||
message.file.exists.question= Мындай файл бар. Үстүнөн жазылсынбы?
|
||||
message.file.size=Файлдын өлчөмү: {0}
|
||||
@ -672,9 +667,7 @@ title.general.chat.settings=Негизги чат ырастоолору
|
||||
title.general.media=Медия ырастоолору
|
||||
title.group.chat=Группалык чат
|
||||
title.group.chat.settings=Группалык чат ырастоолору
|
||||
title.gtalk.registration= GTalk маалыматтары
|
||||
title.history.for={0} сүйлөшүү тарыхы
|
||||
title.icq.registration= ICQ маалыматтары
|
||||
title.incoming.call= Жаңы чалуу
|
||||
title.input.fileexplorer=Файл аралагыч атын киргизиңиз:
|
||||
title.input.newname=Жаңы атын киргизиңиз:
|
||||
@ -688,7 +681,6 @@ title.login=Байланыш
|
||||
title.login.error=Кирүү катасы
|
||||
title.login.settings= Колдонуучу кирүү ырастоолору
|
||||
title.lookup.profile=Профилдин көрүнүшү
|
||||
title.msn.registration= MSN маалыматтары
|
||||
title.myspace.registration= MySpace маалыматтары
|
||||
title.name=Аты
|
||||
title.new.client.available= Жаңы клиент бар
|
||||
@ -736,7 +728,6 @@ title.view.profile.for={0} профили
|
||||
title.view.room.information=Конференция маалыматы
|
||||
title.waiting.to.call=Чалуу күтүлүүдө
|
||||
title.xmpp.registration= XMPP маалыматтары
|
||||
title.yahoo.registration= Yahoo маалыматтары
|
||||
tooltip.appearance=Сүйлөшүү көрүнүшүн өзгөртүү.
|
||||
tooltip.file.transfer=Файл жөнөтүү ырастоолору.
|
||||
tooltip.notifications= Келген чаттар үчүн билдирүү ырастоолору.
|
||||
|
||||
@ -522,25 +522,20 @@ message.downloading = Parsiunčiama {0}
|
||||
message.downloading.spark.plug = Parsiunčiamas „Spark“ programos priedas.
|
||||
message.end.chat = Ar jau baigsite pokalbį?
|
||||
message.end.conversation = Ar jau baigsite šią diskusiją?
|
||||
message.enter.aim = Žemiau įveskite tinklo „AIM“ abonento vardą ir slaptažodį.
|
||||
message.enter.broadcast.message = Įrašykite žinią, kurią transliuosite pasirinktiems abonentams.
|
||||
message.enter.gadugadu = Įveskite „GaduGadu“ tinklo abonento vardą ir slaptažodį.
|
||||
message.enter.gtalk = Žemiau įveskite „GTalk“ tinklo abonento vardą ir slaptažodį.
|
||||
message.enter.icq = Žemiau įveskite „ICQ“ tinklo abonento vardą ir slaptažodį.
|
||||
message.enter.irc = Žemiau įveskite „IRC“ tinklo abonento vardą ir slaptažodį.
|
||||
message.enter.sametime = Žemiau įveskite „Sametime“ tinklo abonento vardą ir slaptažodį.
|
||||
message.enter.facebook = Žemiau įveskite „Facebook“ tinklo abonento vardą ir slaptažodį.
|
||||
message.enter.myspace = Žemiau įveskite „MySpace“ tinklo abonento vardą ir slaptažodį.
|
||||
message.enter.jabber.id = Įveskite „Jabber“ tinklo identifikatorių (JID)
|
||||
message.enter.message.to.broadcast = Įveskite žinią, kurią transliuosite visam abonentų sąrašui.
|
||||
message.enter.msn = Žemiau įveskite „MSN“ tinklo abonento vardą ir slaptažodį.
|
||||
message.enter.new.subject = Įveskite naują temą
|
||||
message.enter.qq = Žemiau įveskite „QQ“ tinklo numerį.
|
||||
message.enter.room.password = Įveskite kambario slaptažodį
|
||||
message.enter.simple = Žemiau įveskite „SIMPLE“ tinklo abonento vardą ir slaptažodį.
|
||||
message.enter.valid.jid = Įveskite teisingą „Jabber“ tinklo identifikatorių (JID)
|
||||
message.enter.xmpp = Žemiau įveskite „XMPP“ tinklo abonento vardą ir slaptažodį.
|
||||
message.enter.yahoo = Įveskite „YAHOO“ tinklo abonento vardą ir slaptažodį.
|
||||
message.error.during.file.transfer = Dėl siuntimo klaidos bylos išsiųsti nepavyko.
|
||||
message.error.must.use.reserved.nick = Turite naudoti pseudonimą rezervuotą šiam kambariui.
|
||||
message.error.nickname.in.use = Pasirinktas pseudonimas jau yra panaudotas arba rezervuotas kito vartotojo.
|
||||
@ -816,11 +811,8 @@ title.general.media = Medijos nuostatos
|
||||
title.general.chat.settings = Bendrosios pokalbių nuostatos
|
||||
title.group.chat = Grupiniai pokalbiai
|
||||
title.group.chat.settings = Grupinių pokalbių nuostatos
|
||||
title.gtalk.registration = GTalk paskyros kredencialai
|
||||
title.history.for = Pokalbio su {0} žurnalas
|
||||
title.icq.registration = ICQ paskyros kredencialai
|
||||
title.irc.registration = IRC paskyros kredencialai
|
||||
title.aim.registration = AIM paskyros kredencialai
|
||||
title.sametime.registration = Sametime paskyros kredencialai
|
||||
title.facebook.registration = Facebook paskyros kredencialai
|
||||
title.myspace.registration = MySpace paskyros kredencialai
|
||||
@ -837,7 +829,6 @@ title.login.error = Prisijungimo klaida
|
||||
title.login.settings = Prisij&ungimo nuostatos
|
||||
title.login.no.account = Nepavyksta nustatyti
|
||||
title.lookup.profile = Ieškoti profilio
|
||||
title.msn.registration = MSN paskyros kredencialai
|
||||
title.name = Vardas
|
||||
title.new.client.available = Galimas naujas klientas
|
||||
title.new.roster.group = Nauja viso sąrašo grupė
|
||||
@ -882,7 +873,6 @@ title.view.room.information = Informacija apie kambarį
|
||||
title.waiting.to.call = Laukiama skambučio
|
||||
title.warning = Perspėjimas
|
||||
title.xmpp.registration = XMPP paskyros kredencialai
|
||||
title.yahoo.registration = Yahoo paskyros kredencialai
|
||||
title.appearance.showVCards = Vizitinių kortelių „VCards“ rodymas adresatų sąraše
|
||||
title.subscription.request = Prenumeratos prašymas
|
||||
title.certificate = Sertifikatas
|
||||
|
||||
@ -526,25 +526,20 @@ message.downloading = Bezig met downloaden van {0}
|
||||
message.downloading.spark.plug = Spark-Plug downloaden
|
||||
message.end.chat = Deze conversatie beëindigen?
|
||||
message.end.conversation = Deze sessie beëindigen?
|
||||
message.enter.aim = Geef AIM gebruikersnaam en wachtwoord.
|
||||
message.enter.broadcast.message = Bericht om aan geselecteerde gebruikers te versturen:
|
||||
message.enter.gadugadu = Voer uw GaduGadu gebruikersnaam en wachtwoord hieronder in.
|
||||
message.enter.gtalk = Geef GTalk gebruikersnaam en wachtwoord.
|
||||
message.enter.icq = Geef ICQ gebruikersnaam en wachtwoord.
|
||||
message.enter.irc = Voer uw IRC gebruikersnaam, wachtwoord en bijnaam hieronder in
|
||||
message.enter.sametime = Voer uw Sametime gebruikersnaam en wachtwoord hieronder in
|
||||
message.enter.facebook = Voer uw Facetime gebruikersnaam en wachtwoord hieronder in
|
||||
message.enter.myspace = Voer uw MySpace gebruikersnaam en wachtwoord hieronder in
|
||||
message.enter.jabber.id = Geef Jabber ID
|
||||
message.enter.message.to.broadcast = Geef bericht om naar de hele contactlijst te versturen.
|
||||
message.enter.msn = Geef MSN gebruikersnaam en wachtwoord.
|
||||
message.enter.new.subject = Geef het nieuwe onderwerp
|
||||
message.enter.qq = Voer uw QQ gebruikersnaam en wachtwoord hieronder in
|
||||
message.enter.room.password = Geef wachtwoord voor de ruimte
|
||||
message.enter.simple = Voer uw SIMPLE gebruikersnaam en wachtwoord hieronder in
|
||||
message.enter.valid.jid = Geef een geldige Jabber ID op.
|
||||
message.enter.xmpp = Geef XMPP gebruikersnaam en wachtwoord.
|
||||
message.enter.yahoo = Geef gebruikersnaam en wachtwoord om verbinding met Yahoo te maken.
|
||||
message.error.during.file.transfer = Er was een fout gedurende de overdracht.
|
||||
message.error.must.use.reserved.nick = In deze ruimte moet een gereserveerde bijnaam gebruikt worden.
|
||||
message.error.nickname.in.use = Uw gewenste bijnaam is al in gebruik of gereserveerd door iemand anders.
|
||||
@ -845,11 +840,8 @@ title.general.media = Media-instellingen
|
||||
title.general.chat.settings = Algemene conversatie instellingen
|
||||
title.group.chat = Groepsconversatie
|
||||
title.group.chat.settings = Groepsgesprek-instellingen
|
||||
title.gtalk.registration = GTalk Aanmeldingsgegevens
|
||||
title.history.for = Conversatiegeschiedenis met {0}
|
||||
title.icq.registration = ICQ Aanmeldingsgegevens
|
||||
title.irc.registration = Inloggegevens IRC
|
||||
title.aim.registration = AIM Aanmeldingsgegevens
|
||||
title.sametime.registration = Inloggegevens Sametime
|
||||
title.facebook.registration = Inloggegevens Facebook
|
||||
title.myspace.registration = Inloggegevens MySpace
|
||||
@ -866,7 +858,6 @@ title.login.error = Fout bij aanmelden
|
||||
title.login.settings = Instellingen aanmelden
|
||||
title.login.no.account = Niet in staat om te bepalen
|
||||
title.lookup.profile = Zoek profiel op
|
||||
title.msn.registration = MSN Aanmeldingsgegevens
|
||||
title.name = Naam
|
||||
title.new.client.available = Nieuwe client beschikbaar
|
||||
title.new.roster.group = Nieuwe contactgroep
|
||||
@ -913,7 +904,6 @@ title.view.room.information = Ruimte informatie
|
||||
title.waiting.to.call = Wacht met bellen
|
||||
title.warning = Waarschuwing
|
||||
title.xmpp.registration = XMPP Aanmeldingsgegevens
|
||||
title.yahoo.registration = Yahoo Aanmeldingsgegevens
|
||||
title.appearance.showVCards = Toon &VCards in de contactlijst
|
||||
title.subscription.request = Abonnementsverzoek
|
||||
title.certificate = Certificaat
|
||||
|
||||
@ -521,25 +521,20 @@ message.downloading = Pobieranie {0}
|
||||
message.downloading.spark.plug = Pobieranie wtyczki
|
||||
message.end.chat = Czy chcesz zakończyć tą rozmowę?
|
||||
message.end.conversation = Czy chcesz zakończyć tą sesję?
|
||||
message.enter.aim = Podaj login i hasło AIM
|
||||
message.enter.broadcast.message = Wpisz wiadomość do wysłania dla określonych użytkowników
|
||||
message.enter.gadugadu = Podaj numer i hasło usługi Gadu-Gadu
|
||||
message.enter.gtalk = Podaj login i hasło usługi Gtalk
|
||||
message.enter.icq = Podaj login i hasło usługi ICQ
|
||||
message.enter.irc = Podaj login i hasło usługi IRC
|
||||
message.enter.sametime = Podaj login i hasło usługi Sametime
|
||||
message.enter.facebook = Podaj login i hasło usługi Facebook
|
||||
message.enter.myspace = Podaj login i hasło usługi MySpace
|
||||
message.enter.jabber.id = Podaj Jabber ID
|
||||
message.enter.message.to.broadcast = Wpisz wiadomość do wysłania do wszystkich
|
||||
message.enter.msn = Podaj login i hasło usługi MSN
|
||||
message.enter.new.subject = Wpisz nowy temat
|
||||
message.enter.qq = Podaj login i hasło usługi QQ
|
||||
message.enter.room.password = Podaj hasło dostępu do pokoju
|
||||
message.enter.simple = Podaj login i hasło usługi SIMPLE
|
||||
message.enter.valid.jid = Wpisz poprawny Jabber ID
|
||||
message.enter.xmpp = Podaj login i hasło usługi XMPP
|
||||
message.enter.yahoo = Podaj login i hasło usługi Yahoo
|
||||
message.error.during.file.transfer = Wystąpił błąd podczas wysyłania pliku
|
||||
message.error.must.use.reserved.nick = Musisz użyć zarezerwowanego nicku dla tego pokoju.
|
||||
message.error.nickname.in.use = Ten nick jest już zajęty przez innego użytkownika.
|
||||
@ -774,7 +769,6 @@ title.advanced.connection.sso.noprincipal = Spark nie może znaleźć ogólnych
|
||||
title.advanced.connection.sso.smack3compat = Tryb kompatybilności Smack 3
|
||||
title.advanced.connection.sso.unable = Nie można połączyć używając Single Sign-On. Sprawdź ustawienia.
|
||||
title.advanced.connection.usesso = Użyj metody Single Sign-On (SSO) via GSSAPI
|
||||
title.aim.registration = Ustawienia konta AIM
|
||||
title.alert = Alert
|
||||
title.appearance = Wygląd
|
||||
title.appearance.preferences = Dostosuj
|
||||
@ -829,9 +823,7 @@ title.general.chat.settings = Ustawienia rozmowy
|
||||
title.general.media = Ustawienia audio
|
||||
title.group.chat = Rozmowa grupowa
|
||||
title.group.chat.settings = Ustawienia rozmowy grupowej
|
||||
title.gtalk.registration = Ustawienia konta Gtalk
|
||||
title.history.for = Historia rozmów dla {0}
|
||||
title.icq.registration = Ustawienia konta ICQ
|
||||
title.incoming.call = Połączenie przychodzące
|
||||
title.input.fileexplorer = Wstaw nazwę przeglądarki plików:
|
||||
title.input.newname = Wpisz nową nazwę:
|
||||
@ -846,7 +838,6 @@ title.login.error = Błąd logowania
|
||||
title.login.no.account = Nie można określić
|
||||
title.login.settings = Ustawienia logowania
|
||||
title.lookup.profile = Przeglądaj profil
|
||||
title.msn.registration = Ustawienia konta MSN
|
||||
title.myspace.registration = Ustawienia konta MySpace
|
||||
title.name = Nazwa
|
||||
title.new.client.available = Dostępna nowa wersja klienta
|
||||
@ -895,7 +886,6 @@ title.view.room.information = Pokaż informację o pokoju
|
||||
title.waiting.to.call = Oczekiwanie na rozmowę głosową
|
||||
title.warning = Ostrzeżenie
|
||||
title.xmpp.registration = Ustawienia konta XMPP
|
||||
title.yahoo.registration = Ustawienia konta Yahoo
|
||||
title.subscription.request = Prośba o dodanie
|
||||
title.certificate = Certyfikat
|
||||
|
||||
|
||||
@ -343,9 +343,6 @@ message.you.have.sent = Você enviou um arquivo para {0}.
|
||||
message.file.transfer.rejected = A transferência de arquivo não é aceita por {0}.
|
||||
message.disable.transport = Você deseja desabilitar os transportes?
|
||||
message.register.transports = Registrar com os transportes instalados.
|
||||
message.enter.aim = Entre com seu usuário e senha do AIM abaixo.
|
||||
message.enter.msn = Entre com seu usuário e senha do MSN abaixo.
|
||||
message.enter.yahoo = Entre com seu usuário e senha do Yahoo.
|
||||
message.username.password.error = Usuário e Senha não necessitam ser informados.
|
||||
message.registration.transport.failed = Não foi possível registrar com transporte.
|
||||
message.client.information = Informação do cliente para {0}
|
||||
@ -443,9 +440,6 @@ title.file.exists = Arquivo encontrado
|
||||
title.disable.transport = Disabilitar transporte
|
||||
title.available.transports = Transportes disponíveis
|
||||
title.transports = Transportes
|
||||
title.aim.registration = Registro AIM
|
||||
title.msn.registration = Registro MSN
|
||||
title.yahoo.registration = Registro Yahoo
|
||||
title.registration.error = Erro ao registrar
|
||||
title.jabber.browser = Listar
|
||||
title.version.and.time = Versão e Hora
|
||||
@ -765,8 +759,6 @@ message.invite.to.groupchat = {0} está convidando você para juntar-se a um Cha
|
||||
message.disconnected.group.chat.error = Sua conexão foi fechada devido a um erro. Você terá que juntar-se novamente a esta sala depois de reconectar
|
||||
message.disconnected.shutdown = Sua conexão foi fechada porque o servidor foi desligado
|
||||
message.enter.gadugadu = Entre com o seu usuário e senha do GaduGadu abaixo
|
||||
message.enter.gtalk = Entre com o seu usuário e senha do GTalk abaixo
|
||||
message.enter.icq = Entre com o seu usuário e senha do ICQ abaixo
|
||||
message.enter.irc = Entre com o seu nome de usuário IRC, senha e apelido abaixo
|
||||
message.enter.sametime = Entre com o seu usuário e senha do Sametime abaixo
|
||||
message.enter.facebook = Entre com o seu usuário e senha do Facebook abaixo
|
||||
@ -810,8 +802,6 @@ title.filesize = Tamanho
|
||||
title.gadugadu.registration = Credenciais da conta GaduGadu
|
||||
title.general.media = Configurações de mídia
|
||||
title.group.chat.settings = Configurações de Chat em grupo
|
||||
title.gtalk.registration = Credenciais da conta do GTalk
|
||||
title.icq.registration = Credenciais da conta ICQ
|
||||
title.irc.registration = Credenciais da conta IRC
|
||||
title.sametime.registration = Credenciais da conta do Sametime
|
||||
title.facebook.registration = Credenciais da conta do Facebook
|
||||
|
||||
@ -527,25 +527,20 @@ message.downloading = Загружено {0}
|
||||
message.downloading.spark.plug = Загружается Spark-Plug
|
||||
message.end.chat = Закрыть этот чат?
|
||||
message.end.conversation = Закрыть эту беседу?
|
||||
message.enter.aim = Введите Ваше AIM имя и пароль.
|
||||
message.enter.broadcast.message = Введите сообщение для выбранных пользователей.
|
||||
message.enter.gadugadu = Введите Ваше имя в GaduGadu и пароль.
|
||||
message.enter.gtalk = Введите Ваше имя в GTalk и пароль.
|
||||
message.enter.icq = Введите Ваш номер ICQ и пароль.
|
||||
message.enter.irc = Введите Ваше имя в IRC и пароль.
|
||||
message.enter.sametime = Введите Ваше имя в Sametime и пароль.
|
||||
message.enter.facebook = Введите Ваше имя в Facebook и пароль.
|
||||
message.enter.myspace = Введите Ваше имя в MySpace и пароль.
|
||||
message.enter.jabber.id = Введите Jabber ID.
|
||||
message.enter.message.to.broadcast = Введите текст сообщения для рассылки для всех в Вашем контакт листе.
|
||||
message.enter.msn = ведите Ваше имя в MSN и пароль.
|
||||
message.enter.new.subject = Введите тему
|
||||
message.enter.qq = Введите Ваше номер в QQ и пароль.
|
||||
message.enter.room.password = Введите пароль для комнаты
|
||||
message.enter.simple = Введите Ваше имя в SIMPLE и пароль.
|
||||
message.enter.valid.jid = Введите корректный Jabber ID
|
||||
message.enter.xmpp = Введите Ваше имя в XMPP и пароль.
|
||||
message.enter.yahoo = Введите Ваше имя в Yahoo и пароль.
|
||||
message.error.during.file.transfer = Ошибка во время передачи файла.
|
||||
message.error.must.use.reserved.nick = Вы должны использовать зарезервированной комнатой ник.
|
||||
message.error.nickname.in.use = Ваш желаемый ник уже используется или зарезервирован кем-то другим.
|
||||
@ -846,11 +841,8 @@ title.general.media = Настройки медиа
|
||||
title.general.chat.settings = Настройки Группового Чата
|
||||
title.group.chat = Групповой чат
|
||||
title.group.chat.settings = Настройки Группового Чата
|
||||
title.gtalk.registration = GTalk данные
|
||||
title.history.for = История для {0}
|
||||
title.icq.registration = ICQ данные
|
||||
title.irc.registration = IRC данные
|
||||
title.aim.registration = AIM данные
|
||||
title.sametime.registration = Учетные данные Sametime
|
||||
title.facebook.registration = Учетные данные Facebook
|
||||
title.myspace.registration = Учетные данные MySpace
|
||||
@ -867,7 +859,6 @@ title.login.error = Ошибка входа
|
||||
title.login.settings = Настройки учетной записи
|
||||
title.login.no.account = Невозможно определить
|
||||
title.lookup.profile = Просмотр профиля
|
||||
title.msn.registration = MSN данные
|
||||
title.name = Имя
|
||||
title.new.client.available = Доступен новый клиент
|
||||
title.new.roster.group = Новая группа
|
||||
@ -914,7 +905,6 @@ title.view.room.information = Информация о конференции
|
||||
title.waiting.to.call = Ожидание звонка
|
||||
title.warning = Предупреждение
|
||||
title.xmpp.registration = XMPP данные
|
||||
title.yahoo.registration = Yahoo данные
|
||||
title.appearance.showVCards = Показывать VCards в списке контактов
|
||||
title.subscription.request = Запрос авторизации
|
||||
title.certificate = Сертификат
|
||||
|
||||
@ -351,12 +351,7 @@ message.you.have.sent = You have sent a file to {0}.
|
||||
message.file.transfer.rejected = The file transfer was not accepted by {0}.
|
||||
message.disable.transport = Remove login information from {0}?
|
||||
message.register.transports = Register with these available transports.
|
||||
message.enter.aim = Ange ditt AIM användardnamn och lösenord nedan.
|
||||
message.enter.msn = Ange ditt MSN användardnamn och lösenord nedan.
|
||||
message.enter.gtalk = Ange ditt GTalk användardnamn och lösenord nedan.
|
||||
message.enter.xmpp = Ange ditt XMPP användardnamn och lösenord nedan.
|
||||
message.enter.yahoo = Ange ditt användardnamn och lösenord nedan till Yahoo.
|
||||
message.enter.icq = Ange ditt ICQ användardnamn och lösenord nedan.
|
||||
message.enter.irc = Ange ditt IRC användardnamn,smeknamn och lösenord nedan.
|
||||
message.enter.simple = Ange ditt SIMPLE användardnamn och lösenord nedan.
|
||||
message.enter.gadugadu = Enter your GaduGadu username and password below.
|
||||
@ -473,12 +468,7 @@ title.file.exists = Fil finns redan
|
||||
title.disable.transport = Ta bort login information
|
||||
title.available.transports = Tillgängliga transportgateways
|
||||
title.transports = Transportgateways
|
||||
title.aim.registration = AIM konton uppgifter
|
||||
title.gtalk.registration = GTalk konton uppgifter
|
||||
title.xmpp.registration = XMPP konton uppgifter
|
||||
title.msn.registration = MSN konton uppgifter
|
||||
title.yahoo.registration = Yahoo konton uppgifter
|
||||
title.icq.registration = ICQ konton uppgifter
|
||||
title.irc.registration = IRC konton uppgifter
|
||||
title.simple.registration = SIMPLE konton uppgifter
|
||||
title.gadugadu.registration = GaduGadu konton uppgifter
|
||||
|
||||
@ -406,22 +406,17 @@ message.downloading = {0} indiriliyor
|
||||
message.downloading.spark.plug = Spark-Plug indiriliyor
|
||||
message.end.chat = Bu sohbeti sonlandırmak istiyor musunuz?
|
||||
message.end.conversation = Bu oturumu sonlandırmak istiyor musunuz?
|
||||
message.enter.aim = AIM kullanıcı adınızı ve parolanızı aşağıya girin.
|
||||
message.enter.broadcast.message = Seçilen kullanıcılara yayınlanacak mesajı girin.
|
||||
message.enter.gadugadu = GaduGadu kullanıcı adınızı ve parolanızı aşağıya girin.
|
||||
message.enter.gtalk = Gtalk kullanıcı adınızı ve parolanızı aşağıya girin.
|
||||
message.enter.icq = ICQ kullanıcı adınızı ve parolanızı aşağıya girin.
|
||||
message.enter.irc = IRC kullanıcı adınızı, parolanızı ve takma adınızı aşağıya girin.
|
||||
message.enter.jabber.id = Jabber ID girin
|
||||
message.enter.message.to.broadcast = Tüm görev listenize yayınlanacak mesajı girin.
|
||||
message.enter.msn = MSN kullanıcı adınızı ve parolanızı aşağıya girin.
|
||||
message.enter.new.subject = Yeni konuyu girin
|
||||
message.enter.qq = QQ Numaranızı ve parolanızı aşağıya girin.
|
||||
message.enter.room.password = Oda parolasını girin
|
||||
message.enter.simple = SIMPLE Sunucusu için kullanıcı adınızı ve parolanızı aşağıya girin.
|
||||
message.enter.valid.jid = Geçerli bir Jabber ID girin.
|
||||
message.enter.xmpp = XMPP Sunucusu için kullanıcı adınızı ve parolanızı aşağıya girin.
|
||||
message.enter.yahoo = Kullanıcı adınızı ve parolanızın girerek Yahoo’ya bağlanın.
|
||||
message.error.during.file.transfer = Dosya aktarımı sırasında bir hata oluştu.
|
||||
message.file.exists.question = Dosya zaten mevcut, üzerine yazılsın mı?
|
||||
message.file.size = Dosya boyutu: {0}
|
||||
@ -656,9 +651,7 @@ title.gadugadu.registration = GaduGadu Hesap kimliği
|
||||
title.general.chat.settings = Genel sohbet ayarları
|
||||
title.group.chat = Grup sohbeti
|
||||
title.group.chat.settings = Grup sohbeti ayarları
|
||||
title.gtalk.registration = GTalk Hesap kimliği
|
||||
title.history.for = {0} için sohbet geçmişi
|
||||
title.icq.registration = ICQ Hesap kimliği
|
||||
title.irc.registration = IRC Hesap kimliği
|
||||
title.incoming.call = Gelen arama
|
||||
title.input.fileexplorer = Lütfen dosya tarayıcınızın adını girin:
|
||||
@ -672,7 +665,6 @@ title.login = Oturum aç
|
||||
title.login.error = Oturum açma hatası
|
||||
title.login.settings = Oturum açma ayarları
|
||||
title.lookup.profile = Profile bak
|
||||
title.msn.registration = MSN Hesap kimliği
|
||||
title.name = İsim
|
||||
title.new.client.available = Yeni istemci kullanılabilir
|
||||
title.new.roster.group = Yeni liste grubu
|
||||
@ -716,7 +708,6 @@ title.view.profile.for = {0} Profili görüntüleniyor
|
||||
title.view.room.information = Oda bilgisini görüntüle
|
||||
title.waiting.to.call = Çağrı için bekleniyor
|
||||
title.xmpp.registration = XMPP Hesap kimliği
|
||||
title.yahoo.registration = Yahoo hesap kimliği
|
||||
title.appearance.showVCards = Bağlantı listesinde VCard'ları görüntüle
|
||||
|
||||
tooltip.appearance = Sohbetinizin görünümünü değiştirin.
|
||||
|
||||
@ -671,16 +671,12 @@ message.downloading = Завантажується {0}
|
||||
message.downloading.spark.plug = Завантажується додаток Spark
|
||||
message.end.chat = Закінчити цю розмову?
|
||||
message.end.conversation = Закінчити цю сесію?
|
||||
message.enter.aim = Введи ім'я і пароль AIM внизу
|
||||
message.enter.broadcast.message = Введи повідомлення для транслювання вибраним користувачам
|
||||
message.enter.facebook = Введи ім'я і пароль Facebook внизу
|
||||
message.enter.gadugadu = Введи ім'я і пароль GaduGadu внизу
|
||||
message.enter.gtalk = Введи ім'я і пароль GTalk внизу
|
||||
message.enter.icq = Введи ім'я і пароль ICQ внизу
|
||||
message.enter.irc = Введи ім'я і пароль IRC внизу
|
||||
message.enter.jabber.id = Введи Jabber-ідентифікатор
|
||||
message.enter.message.to.broadcast = Введи повідомлення для транслювання по всьому списку
|
||||
message.enter.msn = Введи ім'я і пароль MSN внизу
|
||||
message.enter.myspace = Введи ім'я і пароль MySpace внизу
|
||||
message.enter.new.subject = Введи нову тему
|
||||
message.enter.qq = Введи номер і пароль QQ внизу
|
||||
@ -689,7 +685,6 @@ message.enter.sametime = Введи ім'я і пароль
|
||||
message.enter.simple = Введи ім'я і пароль SIMPLE внизу
|
||||
message.enter.valid.jid = Введи дійсний Jabber-ідентифікатор
|
||||
message.enter.xmpp = Введи ім'я і пароль XMPP внизу
|
||||
message.enter.yahoo = Введи ім'я і пароль для з'єднання з Yahoo
|
||||
message.error.during.file.transfer = Помилка підчас передачі файлу
|
||||
message.error.must.use.reserved.nick = Ти мусиш використовувати зарезервований псевдонім кімнати.
|
||||
message.error.nickname.in.use = Бажаний псевдонім уже використовується або зарезервований кимось іншим.
|
||||
@ -1006,7 +1001,6 @@ title.advanced.connection.sso.noprincipal = Spark не може знайти о
|
||||
title.advanced.connection.sso.smack3compat = Режим сумісності Smack 3
|
||||
title.advanced.connection.sso.unable = Неможливо з'єднатись, використовуючи єдиний вхід (Single Sign-On). Перевірте свої облікові дані та серверні налаштування.
|
||||
title.advanced.connection.usesso = Використання єдиного входу (Single Sign-On, SSO) через GSSAPI
|
||||
title.aim.registration = Дані облікового запису AIM
|
||||
title.alert = Засторога
|
||||
title.appearance = Вигляд
|
||||
title.appearance.preferences = Налаштування
|
||||
@ -1063,9 +1057,7 @@ title.general.chat.settings = Загальні налаштува
|
||||
title.general.media = Налаштування середовища
|
||||
title.group.chat = Груповий чат
|
||||
title.group.chat.settings = Налаштування групового чату
|
||||
title.gtalk.registration = Дані облікового запису GTalk
|
||||
title.history.for = Минулі розмови з {0}
|
||||
title.icq.registration = Дані облікового записву ICQ
|
||||
title.incoming.call = Вхідний дзвінок
|
||||
title.input.fileexplorer = Введи назву твого файлового оглядача:
|
||||
title.input.newname = Введи нове ім'я:
|
||||
@ -1080,7 +1072,6 @@ title.login.error = Помилка входу
|
||||
title.login.no.account = Неможливо визначити
|
||||
title.login.settings = Налаштування входу
|
||||
title.lookup.profile = Пошук профілю
|
||||
title.msn.registration = Дані облікового запису MSN
|
||||
title.myspace.registration = Дані облікового запису MySpace
|
||||
title.name = Ім'я
|
||||
title.new.client.available = Доступний новий клієнт
|
||||
@ -1130,7 +1121,6 @@ title.view.room.information = Преглянути інфо кі
|
||||
title.waiting.to.call = Очікування дзвінка
|
||||
title.warning = Попередження
|
||||
title.xmpp.registration = Дані облікового запису XMPP
|
||||
title.yahoo.registration = Дані облікового запису Yahoo
|
||||
|
||||
tooltip.appearance = Змінити вигляд розмови
|
||||
tooltip.encryptionmode.disabled = Шифрування вимкнене, використовуватимуться лише нешифровані з'єднання. Якщо сервер вимагає шифрування, то з'єднатися не вдасться.
|
||||
|
||||
@ -527,25 +527,20 @@ message.downloading = 正在下载 {0}
|
||||
message.downloading.spark.plug = 正在下载 Spark 插件
|
||||
message.end.chat = 是否要结束此聊天?
|
||||
message.end.conversation = 是否要结束此会话?
|
||||
message.enter.aim = 在下方输入您的 AIM 用户名和密码
|
||||
message.enter.broadcast.message = 输入要广播给所选用户的消息
|
||||
message.enter.gadugadu = 在下方输入您的 GaduGadu 用户名和密码
|
||||
message.enter.gtalk = 在下方输入您的 GTalk 用户名和密码
|
||||
message.enter.icq = 在下方输入您的 ICQ 用户名和密码
|
||||
message.enter.irc = 在下方输入您的 IRC 用户名、密码和昵称
|
||||
message.enter.sametime = 在下方输入您的 Sametime 用户名和密码
|
||||
message.enter.facebook = 在下方输入您的 Facebook 用户名和密码
|
||||
message.enter.myspace = 在下方输入您的 MySpace 用户名和密码
|
||||
message.enter.jabber.id = 输入 Jabber ID
|
||||
message.enter.message.to.broadcast = 输入要广播到您的整个联系人列表的消息
|
||||
message.enter.msn = 在下方输入您的 MSN 用户名和密码
|
||||
message.enter.new.subject = 输入新的主题
|
||||
message.enter.qq = 在下方输入您的 QQ 号码和密码
|
||||
message.enter.room.password = 输入群聊密码
|
||||
message.enter.simple = 在下方输入您的 SIMPLE 用户名和密码
|
||||
message.enter.valid.jid = 请输入有效的 Jabber ID
|
||||
message.enter.xmpp = 在下方输入您的 XMPP 用户名和密码
|
||||
message.enter.yahoo = 请输入您的用户名和密码以连接到 Yahoo
|
||||
message.error.during.file.transfer = 文件传输过程中出错
|
||||
message.error.must.use.reserved.nick = 您必须使用您预留的群聊昵称。
|
||||
message.error.nickname.in.use = 您想要的昵称正在使用或已被其他人保留。
|
||||
@ -846,11 +841,8 @@ title.general.media = 媒体设置
|
||||
title.general.chat.settings = 常规聊天设置
|
||||
title.group.chat = 群聊
|
||||
title.group.chat.settings = 群聊设置
|
||||
title.gtalk.registration = GTalk 账号凭据
|
||||
title.history.for = {0} 的对话历史记录
|
||||
title.icq.registration = ICQ 账号凭据
|
||||
title.irc.registration = IRC 账号凭据
|
||||
title.aim.registration = AIM 账号凭据
|
||||
title.sametime.registration = Sametime 账号凭据
|
||||
title.facebook.registration = Facebook 账号凭据
|
||||
title.myspace.registration = MySpace 账号凭据
|
||||
@ -867,7 +859,6 @@ title.login.error = 登录错误
|
||||
title.login.settings = 登录设置
|
||||
title.login.no.account = 无法确定
|
||||
title.lookup.profile = 查看个人资料
|
||||
title.msn.registration = MSN 账号凭据
|
||||
title.name = 名称
|
||||
title.new.client.available = 新客户端可用
|
||||
title.new.roster.group = 新联系人列表组
|
||||
@ -914,7 +905,6 @@ title.view.room.information = 查看群聊信息
|
||||
title.waiting.to.call = 正在等待拨号
|
||||
title.warning = 警告
|
||||
title.xmpp.registration = XMPP 账号凭据
|
||||
title.yahoo.registration = Yahoo 账号凭据
|
||||
title.appearance.showVCards = 在联系人列表中显示电子名片(&V)
|
||||
title.subscription.request = 订阅请求
|
||||
title.certificate = 证书
|
||||
|
||||
@ -477,25 +477,20 @@ message.downloading = 下載中
|
||||
message.downloading.spark.plug = 下載 Spark 插件
|
||||
message.end.chat = 你想結束這場聊天嗎?
|
||||
message.end.conversation = 你想結束這場會議嗎?
|
||||
message.enter.aim = 在下方輸入您的 AIM 用戶名稱和密碼
|
||||
message.enter.broadcast.message = 輸入訊息廣播到選定的用戶
|
||||
message.enter.gadugadu = 以下輸入您的 GaduGadu 用戶名稱和密碼
|
||||
message.enter.gtalk = 以下輸入您的 GTalk 用戶名稱和密碼
|
||||
message.enter.icq = 以下輸入您的 ICQ 用戶名稱和密碼
|
||||
message.enter.irc = 以下輸入您的 IRC 用戶名稱, 密碼和暱稱
|
||||
message.enter.sametime = 以下輸入您的 Sametime 用戶名稱和密碼
|
||||
message.enter.facebook = 以下輸入您的 Facebook 用戶名稱和密碼
|
||||
message.enter.myspace = 以下輸入您的 MySpace 用戶名稱和密碼
|
||||
message.enter.jabber.id = 輸入 Jabber ID
|
||||
message.enter.message.to.broadcast = 輸入訊息廣播到整個名單列表
|
||||
message.enter.msn = 以下輸入您的 MSN 用戶名稱和密碼
|
||||
message.enter.new.subject = 輸入新的主題
|
||||
message.enter.qq = 以下輸入您的 QQ 號碼和密碼
|
||||
message.enter.room.password = 輸入會議室密碼
|
||||
message.enter.simple = 以下輸入您的 SIMPLE 用戶名稱和密碼
|
||||
message.enter.valid.jid = 輸入一個有效的 Jabber ID
|
||||
message.enter.xmpp = 以下輸入您的 XMPP 用戶名稱和密碼
|
||||
message.enter.yahoo = 輸入您的用戶名稱和密碼連接到 Yahoo
|
||||
message.error.during.file.transfer = 文件傳送過程中有錯誤發生
|
||||
message.file.exists.question = 此檔案已經存在,確定取代它嗎?
|
||||
message.file.size = 文件大小 :
|
||||
@ -756,10 +751,6 @@ title.file.exists = 檔案存在
|
||||
title.disable.transport = 刪除登入資訊
|
||||
title.available.transports = 可用的傳輸方式
|
||||
title.transports = 傳輸方式
|
||||
title.aim.registration = AIM 帳號設置
|
||||
title.msn.registration = MSN 帳號設置
|
||||
title.yahoo.registration = Yahoo 帳戶憑證
|
||||
title.icq.registration = ICQ 帳號設置
|
||||
title.registration.error = 註冊錯誤
|
||||
title.jabber.browser = 瀏覽器
|
||||
title.version.and.time = 版本和時間
|
||||
@ -818,7 +809,6 @@ title.filesize = 大小
|
||||
title.gadugadu.registration = GaduGadu 帳號設置
|
||||
title.general.media = 媒體設置
|
||||
title.group.chat.settings = 群聊設定
|
||||
title.gtalk.registration = GTalk 帳戶憑證
|
||||
title.irc.registration = IRC 帳號設置
|
||||
title.sametime.registration = Sametime 帳號設置
|
||||
title.facebook.registration = Facebook 帳號設置
|
||||
|
||||
|
Before Width: | Height: | Size: 124 B |
|
Before Width: | Height: | Size: 124 B |
|
Before Width: | Height: | Size: 569 B |
|
Before Width: | Height: | Size: 644 B |
|
Before Width: | Height: | Size: 657 B |
|
Before Width: | Height: | Size: 756 B |
|
Before Width: | Height: | Size: 655 B |
|
Before Width: | Height: | Size: 858 B |
|
Before Width: | Height: | Size: 799 B |
|
Before Width: | Height: | Size: 968 B |
|
Before Width: | Height: | Size: 443 B |
|
Before Width: | Height: | Size: 465 B |
@ -299,16 +299,6 @@ END_BUTTON_24x24 = images/end_button_24x24.png
|
||||
POWERED_BY_IMAGE = images/powered_by.png
|
||||
|
||||
# Transport images
|
||||
AIM_TRANSPORT_ACTIVE_IMAGE = images/aim.gif
|
||||
AIM_TRANSPORT_INACTIVE_IMAGE = images/aim-gray.gif
|
||||
MSN_TRANSPORT_ACTIVE_IMAGE = images/msn.png
|
||||
MSN_TRANSPORT_INACTIVE_IMAGE = images/msn-gray.png
|
||||
YAHOO_TRANSPORT_ACTIVE_IMAGE = images/yahoo.png
|
||||
YAHOO_TRANSPORT_INACTIVE_IMAGE = images/yahoo-gray.png
|
||||
ICQ_TRANSPORT_ACTIVE_IMAGE = images/icq.png
|
||||
ICQ_TRANSPORT_INACTIVE_IMAGE = images/icq-gray.png
|
||||
GTALK_TRANSPORT_ACTIVE_IMAGE = images/gtalk.png
|
||||
GTALK_TRANSPORT_INACTIVE_IMAGE = images/gtalk-gray.png
|
||||
XMPP_TRANSPORT_ACTIVE_IMAGE = images/xmpp.png
|
||||
XMPP_TRANSPORT_INACTIVE_IMAGE = images/xmpp-gray.png
|
||||
IRC_TRANSPORT_ACTIVE_IMAGE = images/irc.png
|
||||
|
||||