From 9d64e530640f3809ff4dbf518ef127af219ccd08 Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Fri, 22 May 2020 08:19:22 +0200 Subject: [PATCH] remove central server selection combo box in settings dialog --- ChangeLog | 3 +- src/clientsettingsdlg.cpp | 74 +-------- src/clientsettingsdlg.h | 3 - src/clientsettingsdlgbase.ui | 18 +-- src/res/translation/translation_de_DE.ts | 185 +++++++++++++--------- src/res/translation/translation_es_ES.ts | 185 +++++++++++++--------- src/res/translation/translation_fr_FR.ts | 185 +++++++++++++--------- src/res/translation/translation_it_IT.ts | 167 ++++++++++---------- src/res/translation/translation_nl_NL.ts | 187 +++++++++++++---------- src/res/translation/translation_pt_PT.ts | 187 +++++++++++++---------- 10 files changed, 652 insertions(+), 542 deletions(-) diff --git a/ChangeLog b/ChangeLog index 58cabe49..6b9f8d5d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -21,8 +21,7 @@ TODO fix .tar.gz Linux release 3.5.3 on Sourceforge (gives compile errors) -TODO remove central server selection combo box in settings dialog - +TODO fix whats this help for server list selection combo box (in client and server) diff --git a/src/clientsettingsdlg.cpp b/src/clientsettingsdlg.cpp index c3aec7a9..eb938a21 100755 --- a/src/clientsettingsdlg.cpp +++ b/src/clientsettingsdlg.cpp @@ -243,17 +243,14 @@ CClientSettingsDlg::CClientSettingsDlg ( CClient* pNCliP, QWidget* parent, edtNewClientLevel->setAccessibleName ( tr ( "New client level edit box" ) ); // central server address - QString strCentrServAddr = "" + tr ( "Central Server Address" ) + ": " + - tr ( "The central server address is the IP address or URL of the central server " - "at which the server list of the connection dialog is managed. With the " - "central server address type either the local region can be selected of " - "the default central servers or a manual address can be specified." ); + QString strCentrServAddr = "" + tr ( "Custom Central Server Address" ) + ": " + + tr ( "The custom central server address is the IP address or URL of the central " + "server at which the server list of the connection dialog is managed. This " + "address is only used if the custom server list is selected in the connection " + "dialog." ); lblCentralServerAddress->setWhatsThis ( strCentrServAddr ); - cbxCentServAddrType->setWhatsThis ( strCentrServAddr ); edtCentralServerAddress->setWhatsThis ( strCentrServAddr ); - - cbxCentServAddrType->setAccessibleName ( tr ( "Default central server type combo box" ) ); edtCentralServerAddress->setAccessibleName ( tr ( "Central server address line edit" ) ); // current connection status parameter @@ -344,15 +341,8 @@ CClientSettingsDlg::CClientSettingsDlg ( CClient* pNCliP, QWidget* parent, cbxAudioQuality->addItem ( tr ( "High" ) ); // AQ_HIGH cbxAudioQuality->setCurrentIndex ( static_cast ( pClient->GetAudioQuality() ) ); - // central server address type combo box - cbxCentServAddrType->clear(); - cbxCentServAddrType->addItem ( csCentServAddrTypeToString ( AT_DEFAULT ) ); - cbxCentServAddrType->addItem ( csCentServAddrTypeToString ( AT_ALL_GENRES ) ); - cbxCentServAddrType->addItem ( csCentServAddrTypeToString ( AT_GENRE_ROCK ) ); - cbxCentServAddrType->addItem ( csCentServAddrTypeToString ( AT_GENRE_JAZZ ) ); - cbxCentServAddrType->addItem ( csCentServAddrTypeToString ( AT_CUSTOM ) ); - cbxCentServAddrType->setCurrentIndex ( static_cast ( pClient->GetCentralServerAddressType() ) ); - UpdateCentralServerDependency(); + // custom central server address + edtCentralServerAddress->setText ( pClient->GetServerListCentralServerAddress() ); // update new client fader level edit box edtNewClientLevel->setText ( QString::number ( pClient->iNewClientFaderLevel ) ); @@ -433,9 +423,6 @@ CClientSettingsDlg::CClientSettingsDlg ( CClient* pNCliP, QWidget* parent, QObject::connect ( cbxAudioQuality, SIGNAL ( activated ( int ) ), this, SLOT ( OnAudioQualityActivated ( int ) ) ); - QObject::connect ( cbxCentServAddrType, SIGNAL ( activated ( int ) ), - this, SLOT ( OnCentServAddrTypeActivated ( int ) ) ); - // buttons QObject::connect ( butDriverSetup, SIGNAL ( clicked() ), this, SLOT ( OnDriverSetupClicked() ) ); @@ -445,10 +432,6 @@ CClientSettingsDlg::CClientSettingsDlg ( CClient* pNCliP, QWidget* parent, SIGNAL ( buttonClicked ( QAbstractButton* ) ), this, SLOT ( OnSndCrdBufferDelayButtonGroupClicked ( QAbstractButton* ) ) ); - QObject::connect ( pClient, - SIGNAL ( CentralServerAddressTypeChanged() ), - this, SLOT ( OnCentralServerAddressTypeChanged() ) ); - // Timers ------------------------------------------------------------------ // start timer for status bar @@ -585,40 +568,6 @@ void CClientSettingsDlg::UpdateSoundChannelSelectionFrame() #endif } -void CClientSettingsDlg::UpdateCentralServerDependency() -{ - const bool bCurUseDefCentServAddr = ( pClient->GetCentralServerAddressType() != AT_CUSTOM ); - - // update server type combo box (because the value may have ben changed - // by a control in another dialog, e.g., the connect dialog), - // since it is just an update, do not fire signals for the update - cbxCentServAddrType->blockSignals ( true ); - cbxCentServAddrType->setCurrentIndex ( static_cast ( pClient->GetCentralServerAddressType() ) ); - cbxCentServAddrType->blockSignals ( false ); - - // make sure the line edit does not fire signals when we update the text - edtCentralServerAddress->blockSignals ( true ); - { - if ( bCurUseDefCentServAddr ) - { - // if the default central server is used, just show a text of the - // server name - edtCentralServerAddress->setText ( tr ( "Predefined Address" ) ); - } - else - { - // show the current user defined server address - edtCentralServerAddress->setText ( - pClient->GetServerListCentralServerAddress() ); - } - } - edtCentralServerAddress->blockSignals ( false ); - - // the line edit of the central server address is only enabled, if not the - // default address is used - edtCentralServerAddress->setEnabled ( !bCurUseDefCentServAddr ); -} - void CClientSettingsDlg::OnDriverSetupClicked() { pClient->OpenSndCrdDriverSetup(); @@ -692,15 +641,6 @@ void CClientSettingsDlg::OnAudioQualityActivated ( int iQualityIdx ) UpdateDisplay(); // upload rate will be changed } -void CClientSettingsDlg::OnCentServAddrTypeActivated ( int iTypeIdx ) -{ - // apply new setting to the client - pClient->SetCentralServerAddressType ( static_cast ( iTypeIdx ) ); - - // update GUI dependencies - UpdateCentralServerDependency(); -} - void CClientSettingsDlg::OnAutoJitBufStateChanged ( int value ) { pClient->SetDoAutoSockBufSize ( value == Qt::Checked ); diff --git a/src/clientsettingsdlg.h b/src/clientsettingsdlg.h index 5d199a7e..fd377492 100755 --- a/src/clientsettingsdlg.h +++ b/src/clientsettingsdlg.h @@ -73,7 +73,6 @@ protected: void UpdateJitterBufferFrame(); void UpdateSoundCardFrame(); void UpdateSoundChannelSelectionFrame(); - void UpdateCentralServerDependency(); QString GenSndCrdBufferDelayString ( const int iFrameSize, const QString strAddText = "" ); @@ -101,8 +100,6 @@ protected: void OnROutChanActivated ( int iChanIdx ); void OnAudioChannelsActivated ( int iChanIdx ); void OnAudioQualityActivated ( int iQualityIdx ); - void OnCentServAddrTypeActivated ( int iTypeIdx ); - void OnCentralServerAddressTypeChanged() { UpdateCentralServerDependency(); } void OnDriverSetupClicked(); signals: diff --git a/src/clientsettingsdlgbase.ui b/src/clientsettingsdlgbase.ui index 170ed677..7f625fde 100755 --- a/src/clientsettingsdlgbase.ui +++ b/src/clientsettingsdlgbase.ui @@ -555,18 +555,11 @@ - - - - - Central Server Address: - - - - - - - + + + Custom Central Server Address: + + @@ -735,7 +728,6 @@ edtNewClientLevel chbGUIDesignFancy chbDisplayChannelLevels - cbxCentServAddrType edtCentralServerAddress diff --git a/src/res/translation/translation_de_DE.ts b/src/res/translation/translation_de_DE.ts index c1aebbbc..287c6bc9 100644 --- a/src/res/translation/translation_de_DE.ts +++ b/src/res/translation/translation_de_DE.ts @@ -1107,86 +1107,93 @@ - Central Server Address - Zentralserveradresse + Custom Central Server Address + + The custom central server address is the IP address or URL of the central server at which the server list of the connection dialog is managed. This address is only used if the custom server list is selected in the connection dialog. + + + + Central Server Address + Zentralserveradresse + + The central server address is the IP address or URL of the central server at which the server list of the connection dialog is managed. With the central server address type either the local region can be selected of the default central servers or a manual address can be specified. - Die Zentralserveradresse ist die IP-Adresse oder URL des Zentralservers, der die Serverliste organisiert und bereitstellt. Mit der Zentralserveradresse kann entweder die örtliche Region festgelegt werden (durch Auswahl des entsprechenden vorgegebenen Zentralservers) oder man gibt eine beliebige Adresse manuell ein. + Die Zentralserveradresse ist die IP-Adresse oder URL des Zentralservers, der die Serverliste organisiert und bereitstellt. Mit der Zentralserveradresse kann entweder die örtliche Region festgelegt werden (durch Auswahl des entsprechenden vorgegebenen Zentralservers) oder man gibt eine beliebige Adresse manuell ein. - Default central server type combo box - Voreingestellter Zentralservertyp Auswahlbox + Voreingestellter Zentralservertyp Auswahlbox - + Central server address line edit Zentralserveradresse Eingabefeld - + Current Connection Status Parameter Verbindungsstatus Parameter - + The ping time is the time required for the audio stream to travel from the client to the server and back again. This delay is introduced by the network. This delay should be as low as 20-30 ms. If this delay is higher (e.g., 50-60 ms), your distance to the server is too large or your internet connection is not sufficient. Die Ping-Zeit ist die Zeit, die der Audiodatenstrom benötigt, um von der Applikation zum Server und zurück zu kommen. Diese Verzögerung wird vom Netzwerk hervorgerufen. Diese Verzögerung sollte so um die 20-30 ms sein. Falls die Verzögerung größer ist (z.B. 50-60 ms), der Abstand zum Server ist zu groß oder die Internetverbindung ist nicht ausreichend. - + The overall delay is calculated from the current ping time and the delay which is introduced by the current buffer settings. Die Gesamtverzögerung setzt sich zusammen aus der Ping-Zeit und die Verzögerung, die durch die Puffergrößen verursacht wird. - + The upstream rate depends on the current audio packet size and the audio compression setting. Make sure that the upstream rate is not higher than the available rate (check the upstream capabilities of your internet connection by, e.g., using speedtest.net). Die Upload-Rate hängt von der Soundkartenpuffergröße und die Audiokomprimierung ab. Man muss sicher stellen, dass die Upload-Rate immer kleiner ist als die Rate, die die Internetverbindung zur Verfügung stellt (man kann die Upload-Rate des Internetproviders z.B. mit speedtest.net überprüfen). - + If this LED indicator turns red, you will not have much fun using the Wenn diese LED rot leuchtet, dann wirst du keinen Spaß haben mit der - + software. Software. - + ASIO Setup ASIO-Einstellung - + Mono - + Mono-in/Stereo-out Mono-In/Stereo-Out - + Stereo - + Low Niedrig - + Normal Normal - + High Hoch @@ -1224,43 +1231,42 @@ Standard (Nordamerika) - + preferred bevorzugt - - + + Size: Größe: - + Buffer Delay Puffergröße - + Buffer Delay: Puffergröße: - Predefined Address - Vordefinierte Adresse + Vordefinierte Adresse - + The selected audio device could not be used because of the following error: Das ausgewählte Audiogerät kann aus folgendem Grund nicht verwendet werden: - + The previous driver will be selected. Der vorherige Treiber wird wieder ausgewählt. - + Ok @@ -1396,29 +1402,33 @@ Zeige Signalpegel - - Central Server Address: - Zentralserveradresse: + + Custom Central Server Address: + - + Central Server Address: + Zentralserveradresse: + + + Audio Stream Rate Netzwerkrate - - - + + + val Wert - + Ping Time Ping-Zeit - + Overall Delay Gesamtverzögerung @@ -1476,32 +1486,47 @@ Enthält die aktuelle Server-IP-Adresse oder URL. Es speichert auch alte URLs in der Auswahlliste. - + + Server List Selection + + + + + Selects the server list to be shown. + + + + + Server list selection combo box + + + + Filter Filter - + The server list is filtered by the given text. Note that the filter is case insensitive. Die Serverliste kann mit dem eingegebenen Text gefiltert werden, d.h. es werden nur Einträge angezeigt, die dem Filtertext entsprechen. Die Groß- und Kleinschreibung des Filtertexts wird dabei nicht beachtet. - + Filter edit box Filtereingabefeld - + Show All Musicians Zeige alle Musiker - + If you check this check box, the musicians of all servers are shown. If you uncheck the check box, all list view items are collapsed. Ist diese Einstellung angehakt, dann werden alle Musiker auf allen Servern angezeigt. Wird der Haken entfernt, dann werden alle Listeneinträge eingeklappt und die verbundenen Musikernamen werden verborgen. - + Show all musicians check box Zeige alle Musiker Schalter @@ -2050,105 +2075,113 @@ Registrierungsstatus - If the Make My Server Public check box is checked, this will show whether registration with the central server is successful. - Wenn der eigene Server veröffentlicht wurde, dann zeigt der Registrierungsstatus and, ob die Registrierung erfolgreich war oder nicht. + Wenn der eigene Server veröffentlicht wurde, dann zeigt der Registrierungsstatus and, ob die Registrierung erfolgreich war oder nicht. - + Central Server Address Zentralserveradresse - The Central server address is the IP address or URL of the central server at which this server is registered. With the central server address type either the local region can be selected of the default central servers or a manual address can be specified. - Die Zentralserveradrees ist die IP-Adresse oder URL des Zentralservers bei dem man sich registrieren möchte. Mit dem Zentralservertyp legt man die Region fest, in der man sich befindet. Außerdem kann eine freie Adresse eingetragen werden. + Die Zentralserveradrees ist die IP-Adresse oder URL des Zentralservers bei dem man sich registrieren möchte. Mit dem Zentralservertyp legt man die Region fest, in der man sich befindet. Außerdem kann eine freie Adresse eingetragen werden. - + + If the Make My Server Public check box is checked, this will show whether registration with the central server is successful. If the registration failed, please choose another server list. + + + + + The Central server address is the IP address or URL of the central server at which this server is registered. Pre-defined server addresses are available + + + + Default central server type combo box Voreingestellter Zentralservertyp Auswahlbox - + Central server address line edit Zentralserveradresse Eingabefeld - + Server Name Servername - + The server name identifies your server in the connect dialog server list at the clients. If no name is given, the IP address is shown instead. Der Servername identifiziert deinen Server in der Serverliste. Falls kein Name angegeben wurde, dann wird die IP-Adresse stattdessen angezeigt. - + Server name line edit Servername Eingabefeld - + Location City Standort Stadt - + The city in which this server is located can be set here. If a city name is entered, it will be shown in the connect dialog server list at the clients. Hier kann man die Stadt angeben, in der sich der Server befindet. Falls eine Stadt angegeben wurde, dann wird die in der Serverliste angezeigt. - + City where the server is located line edit Stadt in der sich der Server befindet Eingabefeld - + Location country Standort Land - + The country in which this server is located can be set here. If a country is entered, it will be shown in the connect dialog server list at the clients. Hier kann man das Land eingeben, in dem sich der Server befindet. Falls ein Land angegeben wurde, dann wird das in der Serverliste angezeigt. - + Country where the server is located combo box Land in dem sich der Server befindet Auswahlbox - - + + E&xit &Beenden - + &Hide &Ausblenden vom - - - + + + server -Server - + &Open Ö&ffne den - + server Server - + Predefined Address Vordefinierte Adresse @@ -2165,12 +2198,12 @@ Standard (Nordamerika) - + Server - + &Window &Fenster @@ -2249,14 +2282,18 @@ Veröffentliche meinen Server in der Serverliste - + STATUS - + + Custom Central Server Address: + + + Central Server Address: - Zentralserveradresse + Zentralserveradresse diff --git a/src/res/translation/translation_es_ES.ts b/src/res/translation/translation_es_ES.ts index 0c6f2db6..3c0564b4 100644 --- a/src/res/translation/translation_es_ES.ts +++ b/src/res/translation/translation_es_ES.ts @@ -1111,86 +1111,93 @@ - Central Server Address - Dirección Servidor Central + Custom Central Server Address + + The custom central server address is the IP address or URL of the central server at which the server list of the connection dialog is managed. This address is only used if the custom server list is selected in the connection dialog. + + + + Central Server Address + Dirección Servidor Central + + The central server address is the IP address or URL of the central server at which the server list of the connection dialog is managed. With the central server address type either the local region can be selected of the default central servers or a manual address can be specified. - La dirección del servidor central es la dirección IP o URL del servidor central en el que se gestiona la lista de servidores en la ventana de conexión. Aquí se puede escoger la región local de entre los servidores centrales por defecto o se puede especificar una dirección manualmente. + La dirección del servidor central es la dirección IP o URL del servidor central en el que se gestiona la lista de servidores en la ventana de conexión. Aquí se puede escoger la región local de entre los servidores centrales por defecto o se puede especificar una dirección manualmente. - Default central server type combo box - Selección servidor central + Selección servidor central - + Central server address line edit Dirección servidor central - + Current Connection Status Parameter Parámetro Estado Conexión Actual - + The ping time is the time required for the audio stream to travel from the client to the server and back again. This delay is introduced by the network. This delay should be as low as 20-30 ms. If this delay is higher (e.g., 50-60 ms), your distance to the server is too large or your internet connection is not sufficient. El ping es el tiempo que requiere el flujo de audio para viajar desde el cliente al servidor y volver. Este retardo lo determina la red. Esta cifra debería ser de unos 20-30 ms. Si este retardo es mayor (por ej. 50-60 ms), la distancia al servidor es demasiado grande o tu conexión a internet no es óptima. - + The overall delay is calculated from the current ping time and the delay which is introduced by the current buffer settings. El retardo total se calcula con el ping y el retardo ocasionado por la configuración de buffers. - + The upstream rate depends on the current audio packet size and the audio compression setting. Make sure that the upstream rate is not higher than the available rate (check the upstream capabilities of your internet connection by, e.g., using speedtest.net). La tasa de subida depende del tamaño actual de paquetes de audio y la configuración de compresión de audio. Asegúrate de que la tasa de subida no es mayor que la tasa disponible (comprueba la tasa de subida de tu conexión a internet, por ej. con speedtest.net). - + If this LED indicator turns red, you will not have much fun using the Si este indicador LED se vuelve rojo, no te divertirás demasiado utilizando el software - + software. . - + ASIO Setup Configuración ASIO - + Mono Mono - + Mono-in/Stereo-out Entrada mono/Salida estéreo - + Stereo Estéreo - + Low Baja - + Normal Normal - + High Alta @@ -1228,43 +1235,42 @@ Por defecto (Norteamérica) - + preferred aconsejado - - + + Size: Tamaño: - + Buffer Delay Retardo Buffer - + Buffer Delay: Retardo Buffer: - Predefined Address - Dirección Preestablecida + Dirección Preestablecida - + The selected audio device could not be used because of the following error: El dispositivo de audio seleccionado no puede utilizarse a causa del siguiente error: - + The previous driver will be selected. Se utilizará el driver anterior. - + Ok Ok @@ -1400,29 +1406,33 @@ Mostrar Nivel Canales - - Central Server Address: - Dirección Servidor Central: + + Custom Central Server Address: + - + Central Server Address: + Dirección Servidor Central: + + + Audio Stream Rate Tasa Muestreo Audio - - - + + + val val - + Ping Time Tiempo Ping - + Overall Delay Retardo Total @@ -1484,32 +1494,47 @@ Contiene la dirección IP o URL actual del servidor. También guarda viejas URL en la lista. - + + Server List Selection + + + + + Selects the server list to be shown. + + + + + Server list selection combo box + + + + Filter Filtro - + The server list is filtered by the given text. Note that the filter is case insensitive. La lista de servidores se filtra con el texto introducido. El filtro no es sensible a mayúsculas/minúsculas. - + Filter edit box Campo filtro - + Show All Musicians Mostrar Todos los Músicos - + If you check this check box, the musicians of all servers are shown. If you uncheck the check box, all list view items are collapsed. Si activas esta opción, se mostrarán los músicos de todos los servidores. Si lo desactivas, se colapsan todas las listas. - + Show all musicians check box Selección Mostrar todos los músicos @@ -2058,105 +2083,113 @@ Estado Registro Servidor - If the Make My Server Public check box is checked, this will show whether registration with the central server is successful. - Si se ha activado Mi Servidor es Público, esto mostrará si se ha registrado en el servidor central con éxito. + Si se ha activado Mi Servidor es Público, esto mostrará si se ha registrado en el servidor central con éxito. - + Central Server Address Dirección Servidor Central - The Central server address is the IP address or URL of the central server at which this server is registered. With the central server address type either the local region can be selected of the default central servers or a manual address can be specified. - La dirección del Servidor Central es la dirección IP o URL del servidor central en el que se ha registrado este servidor. Aquí se puede escoger la región local de entre los servidores centrales por defecto o se puede especificar una dirección manualmente. + La dirección del Servidor Central es la dirección IP o URL del servidor central en el que se ha registrado este servidor. Aquí se puede escoger la región local de entre los servidores centrales por defecto o se puede especificar una dirección manualmente. - + + If the Make My Server Public check box is checked, this will show whether registration with the central server is successful. If the registration failed, please choose another server list. + + + + + The Central server address is the IP address or URL of the central server at which this server is registered. Pre-defined server addresses are available + + + + Default central server type combo box Selección servidor central - + Central server address line edit Dirección servidor central - + Server Name Nombre Servidor - + The server name identifies your server in the connect dialog server list at the clients. If no name is given, the IP address is shown instead. El nombre del servidor identifica a tu servidor en la lista de conexión de servidores de los clientes. Si no se especifica un nombre, se muestra la dirección IP en su lugar. - + Server name line edit Nombre del servidor - + Location City Ubicación Ciudad - + The city in which this server is located can be set here. If a city name is entered, it will be shown in the connect dialog server list at the clients. Aquí se puede especificar la ciudad en donde se ubica el servidor. Si se introduce una ciudad, se mostrará en la lista de conexión de servidores de los clientes. - + City where the server is located line edit Ciudad en donde se encuentra en servidor - + Location country Ubicación país - + The country in which this server is located can be set here. If a country is entered, it will be shown in the connect dialog server list at the clients. Aquí se puede especificar el país en donde se ubica el servidor. Si se introduce un país, se mostrará en la lista de conexión de servidores de los clientes. - + Country where the server is located combo box País en donde se encuentra el servidor - - + + E&xit S&alir - + &Hide &Ocultar servidor - - - + + + server - + &Open &Abrir servidor - + server - + Predefined Address Dirección Preestablecida @@ -2173,12 +2206,12 @@ Por defecto (Norteamérica) - + Server : Servidor - + &Window &Ventana @@ -2257,14 +2290,18 @@ Mi Servidor es Público (Registra Mi Servidor en la Lista de Servidores) - + STATUS ESTADO - + + Custom Central Server Address: + + + Central Server Address: - Dirección Servidor Central: + Dirección Servidor Central: diff --git a/src/res/translation/translation_fr_FR.ts b/src/res/translation/translation_fr_FR.ts index ab6a0432..11683af0 100644 --- a/src/res/translation/translation_fr_FR.ts +++ b/src/res/translation/translation_fr_FR.ts @@ -1119,86 +1119,93 @@ - Central Server Address - Adresse du serveur central + Custom Central Server Address + + The custom central server address is the IP address or URL of the central server at which the server list of the connection dialog is managed. This address is only used if the custom server list is selected in the connection dialog. + + + + Central Server Address + Adresse du serveur central + + The central server address is the IP address or URL of the central server at which the server list of the connection dialog is managed. With the central server address type either the local region can be selected of the default central servers or a manual address can be specified. - L'adresse du serveur central est l'adresse IP ou l'URL du serveur central sur lequel la liste des serveurs du dialogue de connexion est gérée. Avec le type d'adresse du serveur central, on peut soit sélectionner la région de localisation parmi les serveurs centraux par défaut, soit spécifier une adresse manuelle. + L'adresse du serveur central est l'adresse IP ou l'URL du serveur central sur lequel la liste des serveurs du dialogue de connexion est gérée. Avec le type d'adresse du serveur central, on peut soit sélectionner la région de localisation parmi les serveurs centraux par défaut, soit spécifier une adresse manuelle. - Default central server type combo box - Choix déroulant de type de serveur central par défaut + Choix déroulant de type de serveur central par défaut - + Central server address line edit Ligne d'édition pour l'adresse du serveur central - + Current Connection Status Parameter Paramètre de l'état de la connexion actuelle - + The ping time is the time required for the audio stream to travel from the client to the server and back again. This delay is introduced by the network. This delay should be as low as 20-30 ms. If this delay is higher (e.g., 50-60 ms), your distance to the server is too large or your internet connection is not sufficient. Le temps de ping est le temps nécessaire pour que le flux audio voyage du client au serveur et vice-versa. Ce délai est introduit par le réseau. Ce délai doit être de 20 ou 30 ms. Si ce délai est supérieur (par exemple 50-60 ms), la distance qui vous sépare du serveur est trop importante ou votre connexion internet n'est pas suffisante. - + The overall delay is calculated from the current ping time and the delay which is introduced by the current buffer settings. Le délai global est calculé à partir du temps de ping actuel et du délai qui est introduit par les paramètres actuels de la mémoire tampon. - + The upstream rate depends on the current audio packet size and the audio compression setting. Make sure that the upstream rate is not higher than the available rate (check the upstream capabilities of your internet connection by, e.g., using speedtest.net). Le débit montant dépend de la taille actuelle du paquet audio et du réglage de la compression audio. Assurez-vous que le débit montant n'est pas supérieur au débit disponible (vérifiez les capacités montant de votre connexion internet en utilisant, par exemple, speedtest.net). - + If this LED indicator turns red, you will not have much fun using the Si ce voyant devient rouge, vous n'aurez pas beaucoup de plaisir à utiliser le logiciel - + software. . - + ASIO Setup Paramètres ASIO - + Mono Mono - + Mono-in/Stereo-out Mono-entrée/stéréo-sortie - + Stereo Stéréo - + Low Basse - + Normal Normale - + High Haute @@ -1236,43 +1243,42 @@ Défaut (Amérique du Nord) - + preferred préféré - - + + Size: Taille : - + Buffer Delay Délai de temporisation - + Buffer Delay: Délai de temporisation : - Predefined Address - Adresse prédéfinie + Adresse prédéfinie - + The selected audio device could not be used because of the following error: Le périphérique audio sélectionné n'a pas pu être utilisé en raison de l'erreur suivante : - + The previous driver will be selected. Le pilote précédent sera sélectionné. - + Ok Ok @@ -1408,29 +1414,33 @@ Afficher les niveaux des canaux - - Central Server Address: - Adresse du serveur central : + + Custom Central Server Address: + - + Central Server Address: + Adresse du serveur central : + + + Audio Stream Rate Débit du flux audio - - - + + + val val - + Ping Time Temps de réponse - + Overall Delay Délai global @@ -1488,32 +1498,47 @@ - + + Server List Selection + + + + + Selects the server list to be shown. + + + + + Server list selection combo box + + + + Filter Filtre - + The server list is filtered by the given text. Note that the filter is case insensitive. La liste des serveurs est filtrée par le texte donné. Notez que le filtre n'est pas sensible à la casse. - + Filter edit box Dialogue d'édition de filtre - + Show All Musicians Afficher tous les musiciens - + If you check this check box, the musicians of all servers are shown. If you uncheck the check box, all list view items are collapsed. Si vous cochez cette case, les musiciens de tous les serveurs sont affichés. Si vous décochez la case, tous les éléments de la vue en liste sont regroupés. - + Show all musicians check box Case-à-cocher pour afficher tous les musiciens @@ -2062,105 +2087,113 @@ État du serveur inscrit - If the Make My Server Public check box is checked, this will show whether registration with the central server is successful. - Si la case Rendre mon serveur public est cochée, cela indiquera le succès de l'enregistrement auprès du serveur central. + Si la case Rendre mon serveur public est cochée, cela indiquera le succès de l'enregistrement auprès du serveur central. - + Central Server Address Adresse du serveur central - The Central server address is the IP address or URL of the central server at which this server is registered. With the central server address type either the local region can be selected of the default central servers or a manual address can be specified. - L'adresse du serveur central est l'adresse IP ou l'URL du serveur central auquel ce serveur est inscrit. Avec le type d'adresse du serveur central, on peut soit sélectionner la région locale parmi les serveurs centraux par défaut, soit spécifier une adresse manuelle. + L'adresse du serveur central est l'adresse IP ou l'URL du serveur central auquel ce serveur est inscrit. Avec le type d'adresse du serveur central, on peut soit sélectionner la région locale parmi les serveurs centraux par défaut, soit spécifier une adresse manuelle. - + + If the Make My Server Public check box is checked, this will show whether registration with the central server is successful. If the registration failed, please choose another server list. + + + + + The Central server address is the IP address or URL of the central server at which this server is registered. Pre-defined server addresses are available + + + + Default central server type combo box Choix déroulant de type de serveur central par défaut - + Central server address line edit Ligne d'édition pour l'adresse du serveur central - + Server Name Nom du serveur - + The server name identifies your server in the connect dialog server list at the clients. If no name is given, the IP address is shown instead. Le nom du serveur identifie votre serveur dans la liste des serveurs du dialogue de connexion chez les clients. Si aucun nom n'est donné, l'adresse IP est affichée à la place. - + Server name line edit Ligne d'édition pour le nom du serveur - + Location City Ville de localisation - + The city in which this server is located can be set here. If a city name is entered, it will be shown in the connect dialog server list at the clients. La ville dans laquelle ce serveur est situé peut être définie ici. Si un nom de ville est saisi, il sera affiché dans la liste des serveurs du dialogue de connexion chez les clients. - + City where the server is located line edit Ligne d'édition pour la ville où est situé le serveur - + Location country Pays de localisation - + The country in which this server is located can be set here. If a country is entered, it will be shown in the connect dialog server list at the clients. Le pays dans lequel ce serveur est situé peut être défini ici. Si un pays est saisi, il sera affiché dans la liste des serveurs du dialogue de connexion chez les clients. - + Country where the server is located combo box Choix déroulant du pays où le serveur est situé - - + + E&xit &Quitter - + &Hide Cac&hé - - - + + + server serveur - + &Open &Ouvrir - + server serveur - + Predefined Address Adresse prédéfinie @@ -2177,12 +2210,12 @@ Défaut (Amérique du nord) - + Server serveur - + &Window &Fenêtre @@ -2261,14 +2294,18 @@ Rendre mon serveur public (inscrire mon serveur dans la liste des serveurs) - + STATUS ÉTAT - + + Custom Central Server Address: + + + Central Server Address: - Adresse du serveur central : + Adresse du serveur central : diff --git a/src/res/translation/translation_it_IT.ts b/src/res/translation/translation_it_IT.ts index b8f8378f..66f20053 100644 --- a/src/res/translation/translation_it_IT.ts +++ b/src/res/translation/translation_it_IT.ts @@ -1107,127 +1107,117 @@ - Central Server Address + Custom Central Server Address - The central server address is the IP address or URL of the central server at which the server list of the connection dialog is managed. With the central server address type either the local region can be selected of the default central servers or a manual address can be specified. + The custom central server address is the IP address or URL of the central server at which the server list of the connection dialog is managed. This address is only used if the custom server list is selected in the connection dialog. - - Default central server type combo box - - - - + Central server address line edit - + Current Connection Status Parameter - + The ping time is the time required for the audio stream to travel from the client to the server and back again. This delay is introduced by the network. This delay should be as low as 20-30 ms. If this delay is higher (e.g., 50-60 ms), your distance to the server is too large or your internet connection is not sufficient. - + The overall delay is calculated from the current ping time and the delay which is introduced by the current buffer settings. - + The upstream rate depends on the current audio packet size and the audio compression setting. Make sure that the upstream rate is not higher than the available rate (check the upstream capabilities of your internet connection by, e.g., using speedtest.net). - + If this LED indicator turns red, you will not have much fun using the - + software. - + ASIO Setup - + Mono - + Mono-in/Stereo-out - + Stereo - + Low - + Normal - + High - + preferred - - + + Size: - + Buffer Delay - + Buffer Delay: - - Predefined Address - - - - + The selected audio device could not be used because of the following error: - + The previous driver will be selected. - + Ok @@ -1388,29 +1378,29 @@ - - Central Server Address: + + Custom Central Server Address: - + Audio Stream Rate - - - + + + val - + Ping Time - + Overall Delay @@ -1468,32 +1458,47 @@ - + + Server List Selection + + + + + Selects the server list to be shown. + + + + + Server list selection combo box + + + + Filter - + The server list is filtered by the given text. Note that the filter is case insensitive. - + Filter edit box - + Show All Musicians - + If you check this check box, the musicians of all servers are shown. If you uncheck the check box, all list view items are collapsed. - + Show all musicians check box @@ -2042,115 +2047,115 @@ - - If the Make My Server Public check box is checked, this will show whether registration with the central server is successful. - - - - + Central Server Address - - The Central server address is the IP address or URL of the central server at which this server is registered. With the central server address type either the local region can be selected of the default central servers or a manual address can be specified. + + If the Make My Server Public check box is checked, this will show whether registration with the central server is successful. If the registration failed, please choose another server list. - + + The Central server address is the IP address or URL of the central server at which this server is registered. Pre-defined server addresses are available + + + + Default central server type combo box - + Central server address line edit - + Server Name - + The server name identifies your server in the connect dialog server list at the clients. If no name is given, the IP address is shown instead. - + Server name line edit - + Location City - + The city in which this server is located can be set here. If a city name is entered, it will be shown in the connect dialog server list at the clients. - + City where the server is located line edit - + Location country - + The country in which this server is located can be set here. If a country is entered, it will be shown in the connect dialog server list at the clients. - + Country where the server is located combo box - - + + E&xit - + &Hide - - - + + + server - + &Open - + server - + Server - + &Window - + Predefined Address @@ -2229,13 +2234,13 @@ - + STATUS - - Central Server Address: + + Custom Central Server Address: diff --git a/src/res/translation/translation_nl_NL.ts b/src/res/translation/translation_nl_NL.ts index 6ecb5296..6aa23d17 100644 --- a/src/res/translation/translation_nl_NL.ts +++ b/src/res/translation/translation_nl_NL.ts @@ -1107,86 +1107,93 @@ - Central Server Address - Centraal Serveradres + Custom Central Server Address + + The custom central server address is the IP address or URL of the central server at which the server list of the connection dialog is managed. This address is only used if the custom server list is selected in the connection dialog. + + + + Central Server Address + Centraal Serveradres + + The central server address is the IP address or URL of the central server at which the server list of the connection dialog is managed. With the central server address type either the local region can be selected of the default central servers or a manual address can be specified. - Het centrale serveradres is het IP-adres of de URL van de centrale server waarop de serverlijst van het verbindingsdialoogvenster wordt beheerd. Met het centraal serveradrestype kan ofwel de lokale regio worden geselecteerd van de standaard centrale servers, ofwel kan een handmatig adres worden opgegeven. + Het centrale serveradres is het IP-adres of de URL van de centrale server waarop de serverlijst van het verbindingsdialoogvenster wordt beheerd. Met het centraal serveradrestype kan ofwel de lokale regio worden geselecteerd van de standaard centrale servers, ofwel kan een handmatig adres worden opgegeven. - Default central server type combo box - Centraal serveradrestype combo box + Centraal serveradrestype combo box - + Central server address line edit Centraal serveradres bewerking van de lijn - + Current Connection Status Parameter Huidige verbindingsstatus-parameter - + The ping time is the time required for the audio stream to travel from the client to the server and back again. This delay is introduced by the network. This delay should be as low as 20-30 ms. If this delay is higher (e.g., 50-60 ms), your distance to the server is too large or your internet connection is not sufficient. De ping-tijd is de tijd die nodig is voor de audiostream om van de client naar de server en terug te reizen. Deze vertraging wordt geïntroduceerd door het netwerk. Deze vertraging moet zo laag zijn als 20-30 ms. Als deze vertraging hoger is (bijv. 50-60 ms), is uw afstand tot de server te groot of is uw internetverbinding niet toereikend. - + The overall delay is calculated from the current ping time and the delay which is introduced by the current buffer settings. De totale vertraging wordt berekend op basis van de huidige ping-tijd en de vertraging die door de huidige bufferinstellingen wordt veroorzaakt. - + The upstream rate depends on the current audio packet size and the audio compression setting. Make sure that the upstream rate is not higher than the available rate (check the upstream capabilities of your internet connection by, e.g., using speedtest.net). De upstreamsnelheid is afhankelijk van de huidige grootte van het audiopakket en de instelling van de audiocompressie. Zorg ervoor dat de upstreamsnelheid niet hoger is dan de beschikbare snelheid (controleer de upstreammogelijkheden van uw internetverbinding door bijvoorbeeld speedtest.net te gebruiken). - + If this LED indicator turns red, you will not have much fun using the Als deze LED-indicator rood wordt, zult u niet veel plezier beleven aan het gebruik van de - + software. software. - + ASIO Setup ASIO-instelling - + Mono Mono - + Mono-in/Stereo-out Mono-in/Stereo-out - + Stereo Stereo - + Low Laag - + Normal Normaal - + High Hoog @@ -1224,43 +1231,38 @@ Standaard (Noord-Amerika) - + preferred gewenst - - + + Size: Size: - + Buffer Delay Buffervertraging - + Buffer Delay: Buffervertraging: - - Predefined Address - - - - + The selected audio device could not be used because of the following error: Het geselecteerde audioapparaat kon niet worden gebruikt vanwege de volgende fout: - + The previous driver will be selected. Het vorige stuurprogramma wordt geselecteerd. - + Ok Ok @@ -1396,29 +1398,33 @@ Weergave Kanaalniveaus - - Central Server Address: - Centraal Serveradres: + + Custom Central Server Address: + - + Central Server Address: + Centraal Serveradres: + + + Audio Stream Rate Audio Stream Rate - - - + + + val val - + Ping Time Ping-tijd - + Overall Delay Algehele vertraging @@ -1476,32 +1482,47 @@ Bevat het huidige server-IP-adres of de URL. Het slaat ook oude URL's op in de comboboxlijst. - + + Server List Selection + + + + + Selects the server list to be shown. + + + + + Server list selection combo box + + + + Filter Filter - + The server list is filtered by the given text. Note that the filter is case insensitive. De serverlijst wordt gefilterd met de gegeven tekst. Merk op dat het filter ongevoelig is voor hoofdletters. - + Filter edit box Filter bewerkingsvak - + Show All Musicians Toon alle muzikanten - + If you check this check box, the musicians of all servers are shown. If you uncheck the check box, all list view items are collapsed. Als u dit selectievakje aanvinkt, worden de muzikanten van alle servers getoond. Als u het selectievakje uitvinkt, worden alle items van de lijstweergave samengevouwen. - + Show all musicians check box Toon alle muzikanten checkbox @@ -2050,105 +2071,113 @@ Tabblad Serverstatus - If the Make My Server Public check box is checked, this will show whether registration with the central server is successful. - Als het selectievakje Maak Mijn Server Openbaar is aangevinkt, zal dit het succes van de registratie bij de centrale server laten zien. + Als het selectievakje Maak Mijn Server Openbaar is aangevinkt, zal dit het succes van de registratie bij de centrale server laten zien. - + Central Server Address Centrale Serveradres - The Central server address is the IP address or URL of the central server at which this server is registered. With the central server address type either the local region can be selected of the default central servers or a manual address can be specified. - Het adres van de centrale server is het IP-adres of de URL van de centrale server waarop deze server is geregistreerd. Met het type centraal serveradres kan ofwel de lokale regio worden geselecteerd van de standaard centrale servers of kan een handmatig adres worden opgegeven. + Het adres van de centrale server is het IP-adres of de URL van de centrale server waarop deze server is geregistreerd. Met het type centraal serveradres kan ofwel de lokale regio worden geselecteerd van de standaard centrale servers of kan een handmatig adres worden opgegeven. - + + If the Make My Server Public check box is checked, this will show whether registration with the central server is successful. If the registration failed, please choose another server list. + + + + + The Central server address is the IP address or URL of the central server at which this server is registered. Pre-defined server addresses are available + + + + Default central server type combo box Standaard centrale server type combo box - + Central server address line edit Centrale server adresbewerking van de lijn - + Server Name Servernaam - + The server name identifies your server in the connect dialog server list at the clients. If no name is given, the IP address is shown instead. De naam van de server identificeert uw server in de lijst van de connect-dialoog-server bij de clients. Als er geen naam wordt gegeven, wordt in plaats daarvan het IP-adres getoond. - + Server name line edit Servernaam lijnbewerking - + Location City Locatie Stad - + The city in which this server is located can be set here. If a city name is entered, it will be shown in the connect dialog server list at the clients. De stad waar deze server zich bevindt kan hier worden ingesteld. Als er een plaatsnaam wordt ingevoerd, wordt deze getoond in de lijst van de connect-dialoog-server bij de clients. - + City where the server is located line edit Stad waar de server zich bevindt lijnbewerking - + Location country Land van locatie - + The country in which this server is located can be set here. If a country is entered, it will be shown in the connect dialog server list at the clients. Het land waarin deze server zich bevindt kan hier worden ingesteld. Als er een land is ingevoerd, wordt dit getoond in de lijst van de verbindingsserver bij de clients. - + Country where the server is located combo box Land waar de server zich bevindt combo box - - + + E&xit &Sluiten - + &Hide Verbergen - - - + + + server server - + &Open &Open - + server server - + Predefined Address @@ -2165,12 +2194,12 @@ Standaard (Noord-Amerika) - + Server Server - + &Window &Window @@ -2249,14 +2278,18 @@ Maak mijn server openbaar (Registreer mijn server in de lijst met servers) - + STATUS STATUS - + + Custom Central Server Address: + + + Central Server Address: - Adres Centrale Server: + Adres Centrale Server: diff --git a/src/res/translation/translation_pt_PT.ts b/src/res/translation/translation_pt_PT.ts index 4b044c41..4d28d06d 100644 --- a/src/res/translation/translation_pt_PT.ts +++ b/src/res/translation/translation_pt_PT.ts @@ -1119,86 +1119,93 @@ - Central Server Address - Endereço do servidor central + Custom Central Server Address + + The custom central server address is the IP address or URL of the central server at which the server list of the connection dialog is managed. This address is only used if the custom server list is selected in the connection dialog. + + + + Central Server Address + Endereço do servidor central + + The central server address is the IP address or URL of the central server at which the server list of the connection dialog is managed. With the central server address type either the local region can be selected of the default central servers or a manual address can be specified. - O endereço do servidor central é o endereço IP ou URL do servidor central a partir do qual é gerida a lista de servidores do diálogo de ligação. Com a configuração do endereço do servidor central, é possível selecionar um dos servidores centrais padrão ou especificar um endereço manual. + O endereço do servidor central é o endereço IP ou URL do servidor central a partir do qual é gerida a lista de servidores do diálogo de ligação. Com a configuração do endereço do servidor central, é possível selecionar um dos servidores centrais padrão ou especificar um endereço manual. - Default central server type combo box - Seletor de servidor central padrão + Seletor de servidor central padrão - + Central server address line edit Caixa de edição do endereço do servidor central - + Current Connection Status Parameter Parâmetros do Estado da Ligação - + The ping time is the time required for the audio stream to travel from the client to the server and back again. This delay is introduced by the network. This delay should be as low as 20-30 ms. If this delay is higher (e.g., 50-60 ms), your distance to the server is too large or your internet connection is not sufficient. A latência da ligação é o tempo necessário para o fluxo de áudio viajar do cliente para o servidor e vice-versa. Esta latência é introduzida pela rede. Esta latência deve ser tão baixa quanto 20-30 ms. Se esta latência for maior (por exemplo, 50-60 ms), a distância até ao servidor é muito grande ou sua ligação à Internet não é suficiente. - + The overall delay is calculated from the current ping time and the delay which is introduced by the current buffer settings. A latência geral é calculada a partir da latência da ligação atual e do atraso introduzido pelas configurações do buffer. - + The upstream rate depends on the current audio packet size and the audio compression setting. Make sure that the upstream rate is not higher than the available rate (check the upstream capabilities of your internet connection by, e.g., using speedtest.net). A taxa de transmissão depende do tamanho do pacote de áudio e da configuração de compactação de áudio. Verifique se a taxa de transmissão não é maior que a taxa disponível (verifique a taxa de upload da sua ligação à Internet usando, por exemplo, o speedtest.net). - + If this LED indicator turns red, you will not have much fun using the Se este indicador LED ficar vermelho, não se irá divertir muito ao usar o - + software. . - + ASIO Setup Configuração ASIO - + Mono Mono - + Mono-in/Stereo-out Entrada Mono/Saída Estéreo - + Stereo Estéreo - + Low Baixa - + Normal Normal - + High Alta @@ -1236,43 +1243,38 @@ Servidor Padrão (America do Norte) - + preferred preferido - - + + Size: Tamanho: - + Buffer Delay Atraso do buffer - + Buffer Delay: Atraso do buffer: - - Predefined Address - - - - + The selected audio device could not be used because of the following error: O dispositivo de áudio selecionado não pôde ser usado devido ao seguinte erro: - + The previous driver will be selected. O driver anterior será selecionado. - + Ok Ok @@ -1408,29 +1410,33 @@ Mostrar Níveis de Canais - - Central Server Address: - Endereço do Servidor Central: + + Custom Central Server Address: + - + Central Server Address: + Endereço do Servidor Central: + + + Audio Stream Rate Taxa de Transmissão de Áudio - - - + + + val val - + Ping Time Latência da Ligação - + Overall Delay Latência Geral @@ -1488,32 +1494,47 @@ Contém o endereço IP ou URL do servidor atual. Também armazena URLs antigos na lista do seletor. - + + Server List Selection + + + + + Selects the server list to be shown. + + + + + Server list selection combo box + + + + Filter Filtro - + The server list is filtered by the given text. Note that the filter is case insensitive. A lista de servidores é filtrada pelo texto fornecido. Note que o filtro não diferencia maiúsculas de minúsculas. - + Filter edit box Caixa de edição do filtro - + Show All Musicians Mostrar Todos os Músicos - + If you check this check box, the musicians of all servers are shown. If you uncheck the check box, all list view items are collapsed. Se marcar esta caixa de seleção, os músicos de todos os servidores serão mostrados. Se desmarcar a caixa de seleção, todos os itens em exibição na lista serão recolhidos. - + Show all musicians check box Caixa de seleção para mostrar músicos @@ -2062,105 +2083,113 @@ Estado de Registo do Servidor - If the Make My Server Public check box is checked, this will show whether registration with the central server is successful. - Se a caixa de seleção Tornar Servidor Público estiver marcada, isto mostrará o sucesso ou insucesso do registo no servidor central. + Se a caixa de seleção Tornar Servidor Público estiver marcada, isto mostrará o sucesso ou insucesso do registo no servidor central. - + Central Server Address Endereço do servidor central - The Central server address is the IP address or URL of the central server at which this server is registered. With the central server address type either the local region can be selected of the default central servers or a manual address can be specified. - O endereço do servidor central é o endereço IP ou o URL do servidor central no qual esse servidor será registado. Com o menu dos servidores centrais, é possível selecionar um dos servidores centrais padrão ou especificar um endereço manual. + O endereço do servidor central é o endereço IP ou o URL do servidor central no qual esse servidor será registado. Com o menu dos servidores centrais, é possível selecionar um dos servidores centrais padrão ou especificar um endereço manual. - + + If the Make My Server Public check box is checked, this will show whether registration with the central server is successful. If the registration failed, please choose another server list. + + + + + The Central server address is the IP address or URL of the central server at which this server is registered. Pre-defined server addresses are available + + + + Default central server type combo box Seletor do servidor central padrão - + Central server address line edit Caixa de edição do endereço do servidor central - + Server Name Nome do Servidor - + The server name identifies your server in the connect dialog server list at the clients. If no name is given, the IP address is shown instead. O nome do servidor identifica o servidor na lista do diálogo de ligação exibido nos clientes. Se nenhum nome for fornecido, o endereço IP será mostrado. - + Server name line edit Caixa de edição do nome do servidor - + Location City ;Localização: Cidade - + The city in which this server is located can be set here. If a city name is entered, it will be shown in the connect dialog server list at the clients. A cidade onde este servidor está localizado pode ser definida aqui. Se um nome de cidade for inserido, este será mostrado na lista do diálogo de ligação dos clientes. - + City where the server is located line edit Caixa de edição da cidade onde o servidor se encontra - + Location country Localização: País - + The country in which this server is located can be set here. If a country is entered, it will be shown in the connect dialog server list at the clients. O país em que este servidor está localizado pode ser definido aqui. Se um país for inserido, ele será mostrado na lista do diálogo de logação dos clientes. - + Country where the server is located combo box Seletor do país onde o servidor de encontra - - + + E&xit &Sair - + &Hide &Esconder servidor - - - + + + server - + &Open &Abrir servidor - + server - + Predefined Address @@ -2177,12 +2206,12 @@ Servidor Padrão (America do Norte) - + Server - Servidor - + &Window &Janela @@ -2261,14 +2290,18 @@ Tornar Servidor Público (Registar na Lista de Servidores) - + STATUS ESTADO - + + Custom Central Server Address: + + + Central Server Address: - Endereço do Servidor Central: + Endereço do Servidor Central: