Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Brötzmann <mailtrash@posteo.de>2021-05-04 09:49:43 +0300
committerlovetox <philipp@hoerist.com>2021-07-24 22:57:04 +0300
commitb62ffa870bbf0dc884784e87f7f8b8553ef3692c (patch)
treeb94912e886dbd90deefb9ba2711487eba61f62f0
parent6bc96cafc43072197f436d72ff65fd63d15b74ed (diff)
Preferences: Fix STUN Server label
-rw-r--r--gajim/gtk/preferences.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gajim/gtk/preferences.py b/gajim/gtk/preferences.py
index f2ba543c1..3cc4e239c 100644
--- a/gajim/gtk/preferences.py
+++ b/gajim/gtk/preferences.py
@@ -796,7 +796,7 @@ class Server(PreferenceBox):
settings = [
Setting(SettingKind.USE_STUN_SERVER,
- _('Use Stun Server'),
+ _('Use STUN Server'),
SettingType.DIALOG,
desc=_('Helps to establish calls through firewalls'),
props={'dialog': StunServerDialog}),
@@ -812,7 +812,7 @@ class StunServerDialog(SettingsDialog):
settings = [
Setting(SettingKind.SWITCH,
- _('Use Stun Server'),
+ _('Use STUN Server'),
SettingType.CONFIG,
'use_stun_server'),
@@ -823,7 +823,7 @@ class StunServerDialog(SettingsDialog):
bind='use_stun_server')
]
- SettingsDialog.__init__(self, parent, _('Auto Away Settings'),
+ SettingsDialog.__init__(self, parent, _('STUN Server Settings'),
Gtk.DialogFlags.MODAL, settings, account)