diff --git a/src/mainscreen.py b/src/mainscreen.py
index 36da54a..e992d75 100644
--- a/src/mainscreen.py
+++ b/src/mainscreen.py
@@ -19,10 +19,10 @@ class MessageArea(QtGui.QPlainTextEdit):
if modifiers & QtCore.Qt.ControlModifier or modifiers & QtCore.Qt.ShiftModifier:
self.appendPlainText('')
else:
- self.parent.send_message()
if self.timer.isActive():
self.timer.stop()
self.parent.profile.send_typing(False)
+ self.parent.send_message()
elif event.key() == QtCore.Qt.Key_Up and not self.toPlainText():
self.appendPlainText(Profile.get_instance().get_last_message())
else:
@@ -357,7 +357,8 @@ class MainWindow(QtGui.QMainWindow):
def send_file(self):
if self.profile.is_active_online(): # active friend exists and online
- choose = QtGui.QApplication.translate("MainWindow", "Choose file", None, QtGui.QApplication.UnicodeUTF8)
+ choose_file = QtGui.QApplication.translate("MainWindow", 'Choose file', None, QtGui.QApplication.UnicodeUTF8)
+ choose = QtGui.QApplication.translate("MainWindow", choose_file, None, QtGui.QApplication.UnicodeUTF8)
name = QtGui.QFileDialog.getOpenFileName(self, choose)
if name[0]:
self.profile.send_file(name[0])
@@ -433,8 +434,7 @@ class MainWindow(QtGui.QMainWindow):
if value:
settings['auto_accept_from_friends'].append(tox_id)
else:
- index = settings['auto_accept_from_friends'].index(tox_id)
- del settings['auto_accept_from_friends'][index]
+ settings['auto_accept_from_friends'].remove(tox_id)
settings.save()
# -----------------------------------------------------------------------------------------------------------------
diff --git a/src/translations/en_GB.qm b/src/translations/en_GB.qm
index a1c614f..66a5e10 100644
Binary files a/src/translations/en_GB.qm and b/src/translations/en_GB.qm differ
diff --git a/src/translations/en_GB.ts b/src/translations/en_GB.ts
index ee1a663..ff56d4b 100644
--- a/src/translations/en_GB.ts
+++ b/src/translations/en_GB.ts
@@ -27,154 +27,164 @@
Send request
-
+
IPv6
-
+
UDP
-
+
Proxy
-
+
IP:
-
+
Port:
-
+
Online contacts
+
+
+
+ HTTP
+
MainWindow
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ Choose file
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Enter new alias for friend {} or leave empty to use friend's name:
-
+
Audio
+
+
+
+ Find contact
+
NetworkSettings
-
+
Network settings
-
+
Restart Tox core
@@ -225,17 +235,17 @@
audioSettingsForm
-
+
Audio settings
-
+
Input device:
-
+
Output device:
@@ -243,12 +253,12 @@
incoming_call
-
+
Incoming video call
-
+
Incoming audio call
@@ -256,17 +266,17 @@
interfaceForm
-
+
-
+
-
+
@@ -274,42 +284,42 @@
login
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -322,22 +332,22 @@
notificationsForm
-
+
-
+
-
+
-
+
@@ -345,77 +355,77 @@
privacySettings
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Blocked users:
-
+
Unblock
-
+
Block user
-
+
Add to friend list
-
+
Do you want to add this user to friend list?
-
+
Block by TOX ID:
diff --git a/src/translations/fr_FR.ts b/src/translations/fr_FR.ts
index 5e5ef6d..ead4d23 100644
--- a/src/translations/fr_FR.ts
+++ b/src/translations/fr_FR.ts
@@ -26,154 +26,164 @@
Envoyer une demande
-
+
IPv6
-
+
UDP
-
+
Proxy
-
+
IP :
-
+
Port :
-
+
Contacts connectés
+
+
+
+
+
MainWindow
-
+
Profile
-
+
Paramêtres
-
+
À Propos
-
+
Rajouter un contact
-
+
Confidentialité
-
+
Interface
-
+
Notifications
-
+
Réseau
-
+
À propos du programme
-
+
L'Utilisateur {} veut vout rajouter à sa liste de contacts. Message : {}
-
+
Demande d'amis
-
+
Toxygen est un client Tox écris en Python 2.7. Version :
-
+
Choisir un fichier
-
+
Désactiver l'auto-réception
-
+
Activer l'auto-réception
-
+
Définir un alias
-
+
Vider l'historique
-
+
Copier la clé publique
-
+
Retirer un ami
-
+
-
+
+
+
+
+
+
NetworkSettings
-
+
Paramêtres réseaux
-
+
@@ -224,17 +234,17 @@
audioSettingsForm
-
+
-
+
-
+
@@ -242,12 +252,12 @@
incoming_call
-
+
-
+
@@ -255,17 +265,17 @@
interfaceForm
-
+
Paramêtres de l'interface
-
+
Thème :
-
+
Langue :
@@ -273,42 +283,42 @@
login
-
+
Se connecter
-
+
Créer
-
+
Nom du profil :
-
+
Charger le profil
-
+
Utiliser par défaut
-
+
Charger un profil existant
-
+
Créer un nouveau profil
-
+
toxygen
@@ -321,22 +331,22 @@
notificationsForm
-
+
Paramêtres de notification
-
+
Activer les notifications
-
+
Activer les sons d'appel
-
+
Activer les sons de notifications
@@ -344,77 +354,77 @@
privacySettings
-
+
Paramêtres de confidentialité
-
+
Sauvegarder l'historique du chat
-
+
Autoriser les fichier automatiquement
-
+
Notifier la frappe
-
+
Chemin d'accès des fichiers acceptés automatiquement :
-
+
Modifier
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/src/translations/ru_RU.qm b/src/translations/ru_RU.qm
index fbdc886..1328cce 100644
Binary files a/src/translations/ru_RU.qm and b/src/translations/ru_RU.qm differ
diff --git a/src/translations/ru_RU.ts b/src/translations/ru_RU.ts
index 8b5844f..9a6be14 100644
--- a/src/translations/ru_RU.ts
+++ b/src/translations/ru_RU.ts
@@ -27,155 +27,165 @@
Отправить запрос
-
+
IPv6
-
+
UDP
-
+
Прокси
-
+
IP:
-
+
Порт:
-
+
Контакты в сети
+
+
+
+ HTTP
+
MainWindow
-
+
Профиль
-
+
Настройки
-
+
О программе
-
+
Добавить контакт
-
+
Приватность
-
+
Интерфейс
-
+
Уведомления
-
+
Сеть
-
+
О программе
-
+
Пользователь {} хочет добавить Вас в список контактов. Сообщение:
{}
-
+
Запрос на добавление в друзья
-
+
Toxygen - клиент для мессенджера Tox, написанный на Python 2.7. Версия:
-
+
Выберите файл
-
+
Запретить автоматическое получение файлов
-
+
Разрешить автоматическое получение файлов
-
+
Изменить псевдоним
-
+
Очистить историю
-
+
Копировать публичный ключ
-
+
Удалить друга
-
+
Введите новый псевдоним для друга {} или оставьте пустым для использования его имени:
-
+
Аудио
+
+
+
+ Найти контакт
+
NetworkSettings
-
+
Настройки сети
-
+
Перезапустить ядро TOX
@@ -231,17 +241,17 @@
audioSettingsForm
-
+
Настройки аудио
-
+
Устройство ввода:
-
+
Устройство вывода:
@@ -249,12 +259,12 @@
incoming_call
-
+
Входящий видеозвонок
-
+
Входящий аудиозвонок
@@ -262,17 +272,17 @@
interfaceForm
-
+
Настройки интерфейса
-
+
Тема:
-
+
Язык:
@@ -280,42 +290,42 @@
login
-
+
Вход
-
+
Создать
-
+
Имя профиля:
-
+
Загрузить профиль
-
+
По умолчанию
-
+
Загрузить профиль
-
+
Создать новый профиль
-
+
toxygen
@@ -328,22 +338,22 @@
notificationsForm
-
+
Настройки уведомлений
-
+
Включить уведомления
-
+
Включить звук звонка
-
+
Включить звуковые уведомления
@@ -352,77 +362,77 @@
privacySettings
-
+
Настройки приватности
-
+
Сохранять историю переписки
-
+
Разрешить автополучение файлов
-
+
Посылать уведомления о наборе текста
-
+
Путь автоприема файлов:
-
+
Изменить
-
+
Разрешать инлайны
-
+
История чата
-
+
История переписки будет очищена! Продолжить?
-
+
Заблокированные пользователи:
-
+
Разблокировать
-
+
Заблокировать пользователя
-
+
Добавить в список друзей
-
+
Добавить этого пользователя в список друзей?
-
+
Блокировать по TOX ID: