Skip to content

Commit

Permalink
Improve label for delay before inactivity
Browse files Browse the repository at this point in the history
  • Loading branch information
CoBC committed Oct 20, 2020
1 parent 3aa4da3 commit e54a859
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ChangeLog.txt
Expand Up @@ -6,7 +6,7 @@ Accessible Windows Client:
- Specific TTS events when sending a private or channel message
- Option to join channel immediately in create channel dialog
- Users logged in/out display in chat history
- Fix some labels on server properties dialog
- Fix some labels on server properties dialog and preferences
- Correctly move focus to first field visible with tab when opening server properties dialog
Default QT Client:
- Option to join channel immediately in create channel dialog
Expand Down
1 change: 1 addition & 0 deletions Client/TeamTalkClassic/TeamTalk.rc
Expand Up @@ -2379,6 +2379,7 @@ BEGIN
IDS_ABOUT_TRANSLATORS "Translators"
IDS_ABOUT_LIB "Libraries"
IDS_ABOUT_LIBUSE "TeamTalk use the following libraries:"
IDS_INACTDELAYLAB "Define away status after %d seconds"
END

STRINGTABLE
Expand Down
3 changes: 3 additions & 0 deletions Client/TeamTalkClassic/gui/GeneralPage.cpp
Expand Up @@ -93,6 +93,9 @@ BOOL CGeneralPage::OnInitDialog()
CPropertyPage::OnInitDialog();

TRANSLATE(*this, IDD);
CString Lab1;
Lab1.Format(LoadText(IDS_INACTDELAYLAB, _T("Define away status after %d seconds")), m_nInactivity);
SetAccessibleName(m_wndInactivity, Lab1);

m_KeyEdit.SetWindowText(CKeyCompDlg::GetHotkeyString(m_Hotkey));

Expand Down
1 change: 1 addition & 0 deletions Client/TeamTalkClassic/lng_classic/English.lng
Expand Up @@ -426,6 +426,7 @@
<item id="562">Translators</item>
<item id="563">Libraries</item>
<item id="564">TeamTalk uses the following libraries:</item>
<item id="566">Define away status after %d seconds</item>
<item id="1006">Files list</item>
<item id="1009">Auto join root channel upon connection</item>
<item id="1012">Host TCP port</item>
Expand Down
1 change: 1 addition & 0 deletions Client/TeamTalkClassic/lng_classic/French.lng
Expand Up @@ -426,6 +426,7 @@
<item id="562">Traducteurs</item>
<item id="563">Librairies</item>
<item id="564">TeamTalk utilise les librairies suivantes:</item>
<item id="566">Définir le statut absent après %d secondes</item>
<item id="1006">Liste des fichiers</item>
<item id="1009">Rejoindre le canal principal lors de la connexion</item>
<item id="1012">Port TCP de l&apos;hôte</item>
Expand Down
3 changes: 2 additions & 1 deletion Client/TeamTalkClassic/resource.h
Expand Up @@ -465,6 +465,7 @@
#define IDS_ABOUT_TRANSLATORS 562
#define IDS_ABOUT_LIB 563
#define IDS_ABOUT_LIBUSE 564
#define IDS_INACTDELAYLAB 566
#define IDC_SLIDER_VOICEACT 1001
#define IDC_SLIDER_VOLUME 1002
#define IDC_EDIT_HOSTTCPPORT 1003
Expand Down Expand Up @@ -1079,7 +1080,7 @@
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 565
#define _APS_NEXT_RESOURCE_VALUE 567
#define _APS_NEXT_COMMAND_VALUE 32955
#define _APS_NEXT_CONTROL_VALUE 1602
#define _APS_NEXT_SYMED_VALUE 413
Expand Down

0 comments on commit e54a859

Please sign in to comment.