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

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorvald Natvig <slicer@users.sourceforge.net>2010-02-09 18:54:57 +0300
committerThorvald Natvig <slicer@users.sourceforge.net>2010-02-09 18:54:57 +0300
commite2412af574ca37151aaa274bd1d97f08d7459ee5 (patch)
tree4c73c828434259fa2aa299c6508d1b2e23f196e2
parentb2cd5de424aee6ae89cd11725cf2ac898925f30b (diff)
Indent, changelog, submodule and language update1.2.2
-rw-r--r--CHANGES34
-rw-r--r--plugins/mumble_plugin_win32.h8
-rw-r--r--plugins/sto/sto.cpp76
-rw-r--r--src/mumble/AudioOutput.cpp12
-rw-r--r--src/mumble/mumble_cs.ts83
-rw-r--r--src/mumble/mumble_da.ts71
-rw-r--r--src/mumble/mumble_de.ts105
-rw-r--r--src/mumble/mumble_en.ts75
-rw-r--r--src/mumble/mumble_es.ts93
-rw-r--r--src/mumble/mumble_fr.ts79
-rw-r--r--src/mumble/mumble_it.ts71
-rw-r--r--src/mumble/mumble_ja.ts89
-rw-r--r--src/mumble/mumble_pl.ts3074
-rw-r--r--src/mumble/mumble_ru.ts89
-rw-r--r--src/mumble/mumble_zh_CN.ts71
-rw-r--r--src/mumble/mumble_zh_TW.ts71
-rw-r--r--src/mumble11x/mumble_cs.ts2
-rw-r--r--src/mumble11x/mumble_de.ts2
-rw-r--r--src/mumble11x/mumble_en.ts2
-rw-r--r--src/mumble11x/mumble_es.ts2
-rw-r--r--src/mumble11x/mumble_fr.ts2
-rw-r--r--src/mumble11x/mumble_it.ts2
-rw-r--r--src/mumble11x/mumble_ja.ts2
-rw-r--r--src/mumble11x/mumble_pl.ts2
-rw-r--r--src/mumble11x/mumble_ru.ts2
-rw-r--r--src/mumble11x/mumble_zh_CN.ts2
-rw-r--r--src/mumble11x/mumble_zh_TW.ts2
27 files changed, 1929 insertions, 2194 deletions
diff --git a/CHANGES b/CHANGES
index 62b83145e..41ef44284 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,34 @@
+2010-02-09
+ Mikkel Krautz <mikkel@krautz.dk>
+ b2cd5de Do not add menus to user/channel context menus on OSX. Menus
+ that are added to the global menu bar on Cocoa/OSX must not be
+ added to other menus or menu bars, according to the Qt docs.
+ b303856 Disable unified toolbar on OSX. Too buggy at the moment. Get
+ rid of graphical artifacts on launch.
+
+ Thorvald Natvig <slicer@users.sourceforge.net>
+ c41a192 Zap commenthash when switching servers
+
+2010-02-08
+ Martin Skilnand <cybknight@users.sourceforge.net>
+ 1e36860 Placeholder default_avatar.svg
+
+ Stefan Hacker <dd0t@users.sourceforge.net>
+ 070692d Small style fixes in some plugins
+ dfaa2d5 Zero camera position if manual plugin is deactivated
+
+ Thorvald Natvig <slicer@users.sourceforge.net>
+ 3938ebe Move plugin system-level includes to common header
+ 99366f3 Disable config/about buttons if plugin doesn't have that, and
+ add a generic_unlock
+ de21a22 Update STO plugin and add common initialize() function
+ effc993 Template helpers for Win32 plugins
+ e207ef6 Zero camera positions in plugins' fetch()
+ 5271bc0 Disable PLUGIN_DEBUG as the console spams breaks up audio
+ 33b90aa Spawn state for STO
+ f1c66fb STO plugin, and use camera position for positional audio and
+ rotate top vector properly
+
2010-02-07
Thorvald Natvig <slicer@users.sourceforge.net>
5595aba Add vertical space for empty lines and add some space around
@@ -6,6 +37,9 @@
on-demand loaded avatars, so always on
8a1705d Work around colors lost when application style lost
+ Żukowski Michał <zuczeq@gmail.com>
+ 1ec8726 Small fixes in Polish translation
+
2010-02-06
Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
cf75490 Updated Spanish translation
diff --git a/plugins/mumble_plugin_win32.h b/plugins/mumble_plugin_win32.h
index 30f69b884..2ede24305 100644
--- a/plugins/mumble_plugin_win32.h
+++ b/plugins/mumble_plugin_win32.h
@@ -106,19 +106,19 @@ T peekProc(VOID *base) {
static void inline u8(std::wstring &dst, const std::string &src) {
int len = MultiByteToWideChar(CP_UTF8, 0, src.data(), src.length(), NULL, 0);
-
+
wchar_t *wbuff = reinterpret_cast<wchar_t *>(_alloca(sizeof(wchar_t) * len));
MultiByteToWideChar(CP_UTF8, 0, src.data(), src.length(), wbuff, len);
-
+
dst.assign(wbuff, len);
}
static void inline u8(std::wstring &dst, const char *src, int srclen) {
int len = MultiByteToWideChar(CP_UTF8, 0, src, srclen, NULL, 0);
-
+
wchar_t *wbuff = reinterpret_cast<wchar_t *>(_alloca(sizeof(wchar_t) * len));
MultiByteToWideChar(CP_UTF8, 0, src, srclen, wbuff, len);
-
+
dst.assign(wbuff, len);
}
diff --git a/plugins/sto/sto.cpp b/plugins/sto/sto.cpp
index 57eea6d19..cf5776f65 100644
--- a/plugins/sto/sto.cpp
+++ b/plugins/sto/sto.cpp
@@ -35,63 +35,63 @@ static BYTE *contextptr;
static BYTE *posptr;
static int fetch(float *avatar_pos, float *avatar_front, float *avatar_top, float *camera_pos, float *camera_front, float *camera_top, std::string &context, std::wstring &identity) {
- char identblock[0x200];
- char contextblock[0x80];
- float posblock[64];
-
- if (! peekProc(identptr, identblock) ||
- ! peekProc(contextptr, contextblock) ||
- ! peekProc(posptr, posblock))
- return false;
-
- std::string ident = std::string(identblock+0x188, strnlen(identblock + 0x188, 0x78)) + std::string("@") + std::string(identblock, strnlen(identblock, 0x80));
- u8(identity, ident);
+ char identblock[0x200];
+ char contextblock[0x80];
+ float posblock[64];
+
+ if (! peekProc(identptr, identblock) ||
+ ! peekProc(contextptr, contextblock) ||
+ ! peekProc(posptr, posblock))
+ return false;
+
+ std::string ident = std::string(identblock+0x188, strnlen(identblock + 0x188, 0x78)) + std::string("@") + std::string(identblock, strnlen(identblock, 0x80));
+ u8(identity, ident);
#ifdef PLUGIN_DEBUG
- printf("%ls\n", identity.c_str());
+ printf("%ls\n", identity.c_str());
#endif
- context.assign(reinterpret_cast<char *>(contextblock + 0x30), 4);
+ context.assign(reinterpret_cast<char *>(contextblock + 0x30), 4);
#ifdef PLUGIN_DEBUG
- DWORD *ctx = reinterpret_cast<DWORD *>(contextblock + 0x30);
- printf("%08x\n", *ctx);
+ DWORD *ctx = reinterpret_cast<DWORD *>(contextblock + 0x30);
+ printf("%08x\n", *ctx);
#endif
-
+
#ifdef PLUGIN_DEBUG
- printf("Avatar %8.3f %8.3f %8.3f\n", posblock[0], posblock[1], posblock[2]);
- printf("AvatarF %8.3f %8.3f %8.3f\n", posblock[15], posblock[16], posblock[17]);
- printf("Camera %8.3f %8.3f %8.3f\n", posblock[3], posblock[4], posblock[5]);
- printf("CameraF %8.3f %8.3f %8.3f\n", posblock[18], posblock[19], posblock[20]);
- printf("SpawnST %d\n", * reinterpret_cast<DWORD *>(& posblock[52]));
+ printf("Avatar %8.3f %8.3f %8.3f\n", posblock[0], posblock[1], posblock[2]);
+ printf("AvatarF %8.3f %8.3f %8.3f\n", posblock[15], posblock[16], posblock[17]);
+ printf("Camera %8.3f %8.3f %8.3f\n", posblock[3], posblock[4], posblock[5]);
+ printf("CameraF %8.3f %8.3f %8.3f\n", posblock[18], posblock[19], posblock[20]);
+ printf("SpawnST %d\n", * reinterpret_cast<DWORD *>(& posblock[52]));
#endif
- if (* reinterpret_cast<DWORD *>(& posblock[52]) == 1) {
- for(int i=0;i<3;++i) {
- avatar_pos[i] = posblock[i];
- avatar_front[i] = posblock[i+15];
- camera_pos[i] = posblock[i+3];
- camera_front[i] = posblock[i+18];
-
- avatar_top[i] = camera_top[i] = 0.0f;
- }
- } else {
- for (int i=0;i<3;++i) {
- avatar_pos[i] = avatar_front[i] = avatar_top[i] = camera_pos[i] = camera_front[i] = camera_top[i] = 0.0f;
- }
+ if (* reinterpret_cast<DWORD *>(& posblock[52]) == 1) {
+ for (int i=0;i<3;++i) {
+ avatar_pos[i] = posblock[i];
+ avatar_front[i] = posblock[i+15];
+ camera_pos[i] = posblock[i+3];
+ camera_front[i] = posblock[i+18];
+
+ avatar_top[i] = camera_top[i] = 0.0f;
+ }
+ } else {
+ for (int i=0;i<3;++i) {
+ avatar_pos[i] = avatar_front[i] = avatar_top[i] = camera_pos[i] = camera_front[i] = camera_top[i] = 0.0f;
}
+ }
return true;
}
static int trylock() {
identptr = contextptr = posptr = NULL;
-
+
if (! initialize(L"GameClient.exe"))
return false;
-
+
char version[17];
peekProc(pModule + 0x15E8778, version);
version[16]=0;
-
+
if (memcmp(version, "ST.0.20100202a.7", sizeof(version)) == 0) {
#ifdef PLUGIN_DEBUG
printf("STO: WANTLINK %s\n", version);
@@ -99,7 +99,7 @@ static int trylock() {
identptr = pModule + 0x1675E80;
contextptr = pModule + 0x1675a30;
posptr = pModule + 0x1885da0;
-
+
return true;
} else {
generic_unlock();
diff --git a/src/mumble/AudioOutput.cpp b/src/mumble/AudioOutput.cpp
index 000862a97..5d693993b 100644
--- a/src/mumble/AudioOutput.cpp
+++ b/src/mumble/AudioOutput.cpp
@@ -996,21 +996,21 @@ bool AudioOutput::mix(void *outbuff, unsigned int nsamp) {
svol[i] = mul * fSpeakerVolume[i];
if (g.s.bPositionalAudio && (iChannels > 1) && g.p->fetch() && (g.bPosTest || g.p->fCameraPosition[0] != 0 || g.p->fCameraPosition[1] != 0 || g.p->fCameraPosition[2] != 0)) {
-
+
float front[3] = { g.p->fCameraFront[0], g.p->fCameraFront[1], g.p->fCameraFront[2] };
float top[3] = { g.p->fCameraTop[0], g.p->fCameraTop[1], g.p->fCameraTop[2] };
// Front vector is dominant; if it's zero we presume all is zero.
float flen = sqrtf(front[0]*front[0]+front[1]*front[1]+front[2]*front[2]);
-
+
if (flen > 0.0f) {
front[0] *= (1.0f / flen);
front[1] *= (1.0f / flen);
front[2] *= (1.0f / flen);
float tlen = sqrtf(top[0]*top[0]+top[1]*top[1]+top[2]*top[2]);
-
+
if (tlen > 0.0f) {
top[0] *= (1.0f / tlen);
top[1] *= (1.0f / tlen);
@@ -1023,12 +1023,12 @@ bool AudioOutput::mix(void *outbuff, unsigned int nsamp) {
if (fabs(front[0] * top[0] + front[1] * top[1] + front[2] * top[2]) > 0.01f) {
// Not perpendicular. Assume Y up and rotate 90 degrees.
-
+
float azimuth = 0.0f;
if ((front[0] != 0.0f) || (front[2] != 0.0f))
azimuth = atan2f(front[2], front[0]);
float inclination = acosf(front[1]) - M_PI / 2;
-
+
top[0] = sinf(inclination)*cosf(azimuth);
top[1] = cosf(inclination);
top[2] = sinf(inclination)*sinf(azimuth);
@@ -1037,7 +1037,7 @@ bool AudioOutput::mix(void *outbuff, unsigned int nsamp) {
front[0] = 0.0f;
front[1] = 0.0f;
front[2] = 1.0f;
-
+
top[0] = 0.0f;
top[1] = 1.0f;
top[2] = 0.0f;
diff --git a/src/mumble/mumble_cs.ts b/src/mumble/mumble_cs.ts
index 6bb79a799..cdac14186 100644
--- a/src/mumble/mumble_cs.ts
+++ b/src/mumble/mumble_cs.ts
@@ -2695,7 +2695,7 @@ Mumble is under continuous development, and the development team wants to focus
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="+363"/>
+ <location filename="main.cpp" line="+390"/>
<source>&lt;b&gt;Certificate Expiry:&lt;/b&gt; Your certificate is about to expire. You need to renew it, or you will no longer be able to connect to servers you are registered on.</source>
<translation type="unfinished"></translation>
</message>
@@ -4609,7 +4609,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>Vzhled a motivy</translation>
</message>
<message>
- <location filename="LookConfig.cpp" line="+47"/>
+ <location filename="LookConfig.cpp" line="+52"/>
<location line="+11"/>
<source>System default</source>
<translation>Podle výchozího nastavení systému</translation>
@@ -4941,7 +4941,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location filename="MainWindow.cpp" line="+148"/>
- <location line="+1824"/>
+ <location line="+1831"/>
<source>Root</source>
<translation>Kořen</translation>
</message>
@@ -5533,9 +5533,9 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>Připojí se k webové stránce Mumble pro zjištění případné dostupnosti novějších verzí a vypíše vhodný odkaz na stažení, pokud je nová verze k dispozici.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1729"/>
+ <location filename="MainWindow.cpp" line="-1736"/>
<location line="+12"/>
- <location line="+1925"/>
+ <location line="+1932"/>
<source>Mumble -- %1</source>
<translation>Mumble =- %1 </translation>
</message>
@@ -5557,7 +5557,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">&amp;Uživatel</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-2015"/>
+ <location filename="MainWindow.cpp" line="-2022"/>
<source>&amp;Channel</source>
<translation type="unfinished">&amp;Kanál</translation>
</message>
@@ -5660,7 +5660,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">Alternativní klávesa pro mluvení</translation>
</message>
<message>
- <location line="+571"/>
+ <location line="+574"/>
<source>Reconnecting.</source>
<translation>Opětovné připojování.</translation>
</message>
@@ -5669,7 +5669,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">Vykopnutí uživaetele %1</translation>
</message>
<message>
- <location line="+378"/>
+ <location line="+380"/>
<location line="+19"/>
<source>Enter reason</source>
<translation>Zadejte důvod</translation>
@@ -5710,7 +5710,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">Název kanálu</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="+139"/>
+ <location filename="MainWindow.cpp" line="+141"/>
<source>Are you sure you want to delete %1 and all its sub-channels?</source>
<translation>Opravdu chcete odstranit kanál %1 včetně všech jeho podkanálů?</translation>
</message>
@@ -6133,7 +6133,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1638"/>
+ <location filename="MainWindow.cpp" line="-1643"/>
<source>Opening URL %1</source>
<translation type="unfinished"></translation>
</message>
@@ -6174,7 +6174,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+18"/>
- <location line="+183"/>
+ <location line="+184"/>
<source>Connecting to server %1.</source>
<translation type="unfinished"></translation>
</message>
@@ -6215,7 +6215,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+4"/>
- <location line="+1128"/>
+ <location line="+1132"/>
<source>&amp;View Certificate</source>
<translation type="unfinished"></translation>
</message>
@@ -6225,14 +6225,14 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-1489"/>
- <location line="+279"/>
+ <location line="-1493"/>
+ <location line="+281"/>
<source>Register yourself as %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-279"/>
- <location line="+279"/>
+ <location line="-281"/>
+ <location line="+281"/>
<source>&lt;p&gt;You are about to register yourself on this server. This action cannot be undone, and your username cannot be changed once this is done. You will forever be known as &apos;%1&apos; on this server.&lt;/p&gt;&lt;p&gt;Are you sure you want to register yourself?&lt;/p&gt;</source>
<translation type="unfinished"></translation>
</message>
@@ -6263,7 +6263,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+56"/>
- <location line="+225"/>
+ <location line="+227"/>
<source>Message to channel %1</source>
<translation type="unfinished"></translation>
</message>
@@ -6293,22 +6293,22 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-1910"/>
+ <location line="-1917"/>
<source>&amp;User</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="+775"/>
+ <location line="+778"/>
<source>&lt;h2&gt;Control channel&lt;/h2&gt;&lt;p&gt;Encrypted with %1 bit %2&lt;br /&gt;%3 ms average latency (%4 deviation)&lt;/p&gt;&lt;p&gt;Remote host %5 (port %6)&lt;/p&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="+325"/>
+ <location line="+327"/>
<source>Are you sure you want to reset the comment of user %1?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="+263"/>
+ <location line="+265"/>
<source>(Tree) %1: %2</source>
<translation type="unfinished"></translation>
</message>
@@ -6369,7 +6369,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-1422"/>
+ <location line="-1426"/>
<source>Voice channel is sent over control channel.</source>
<translation type="unfinished"></translation>
</message>
@@ -6409,7 +6409,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location line="+561"/>
+ <location line="+565"/>
<source>Sending message to channel %1</source>
<translation type="unfinished"></translation>
</message>
@@ -6439,7 +6439,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1169"/>
+ <location filename="MainWindow.cpp" line="-1174"/>
<source>Mumble is currently connected to a server. Do you want to Close or Minimize it?</source>
<translation type="unfinished"></translation>
</message>
@@ -6449,13 +6449,13 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-98"/>
- <location line="+99"/>
+ <location line="-100"/>
+ <location line="+101"/>
<source>Minimize</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-152"/>
+ <location line="-154"/>
<source>Mute Self</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6546,12 +6546,12 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+65"/>
- <location line="+1942"/>
+ <location line="+1949"/>
<source>Not connected</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-1743"/>
+ <location line="-1748"/>
<source>Clear</source>
<translation type="unfinished"></translation>
</message>
@@ -6561,7 +6561,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="UserModel.cpp" line="+1380"/>
+ <location filename="UserModel.cpp" line="+1382"/>
<source>You have Channel Dragging set to &quot;Do Nothing&quot; so the channel wasn&apos;t moved.</source>
<translation type="unfinished"></translation>
</message>
@@ -7013,7 +7013,7 @@ Prevents the client from downloading images embedded into chat messages with the
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="+646"/>
+ <location filename="Overlay.cpp" line="+642"/>
<source>Failed to create communication with overlay at %2: %1. No overlay will be available.</source>
<translation type="unfinished"></translation>
</message>
@@ -7102,19 +7102,16 @@ To může být způsobeno například těmito důvody:
<translation>Nastavuje, jestli budete vidět vy sami. Toto nastavení je nejvíce užitečné, pokud nikoho ostatního vidět nechcete, pouze chcete vidět svůj vlastní stav - jestli mluvíte nebo ne, nebo jestli máte zakázáno mluvení/poslech.</translation>
</message>
<message>
- <location/>
<source>Show User Textures</source>
- <translation>Ukázat obrázky uživatelů</translation>
+ <translation type="obsolete">Ukázat obrázky uživatelů</translation>
</message>
<message>
- <location/>
<source>Show User custom textures instead of text on the overlay.</source>
- <translation>Ukázat v overlay vrstvě uživatelův nastavený obrázek místo textu.</translation>
+ <translation type="obsolete">Ukázat v overlay vrstvě uživatelův nastavený obrázek místo textu.</translation>
</message>
<message>
- <location/>
<source>This sets whether to download and use custom textures for registered users. If disabled, the regular outline text will be used instead.</source>
- <translation>Nastavuje, jestli se má stáhnout a použít navolený obrázek pro zobrazení registrovaných uživatelů. Pokud je zakázáno, zobrazí se uživatelé běžným textem.</translation>
+ <translation type="obsolete">Nastavuje, jestli se má stáhnout a použít navolený obrázek pro zobrazení registrovaných uživatelů. Pokud je zakázáno, zobrazí se uživatelé běžným textem.</translation>
</message>
<message>
<location/>
@@ -7251,12 +7248,12 @@ To může být způsobeno například těmito důvody:
<translation>Barva pro aktivní kanály</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="-503"/>
+ <location filename="Overlay.cpp" line="-505"/>
<source>Overlay</source>
<translation>Overlay</translation>
</message>
<message>
- <location line="-95"/>
+ <location line="-89"/>
<source>Show no one</source>
<translation type="unfinished"></translation>
</message>
@@ -7272,7 +7269,7 @@ To může být způsobeno například těmito důvody:
</message>
<message>
<location filename="Overlay.ui"/>
- <location filename="Overlay.cpp" line="+73"/>
+ <location filename="Overlay.cpp" line="+67"/>
<source>Color for users</source>
<translation type="unfinished"></translation>
</message>
@@ -7488,7 +7485,7 @@ To může být způsobeno například těmito důvody:
<context>
<name>Plugins</name>
<message>
- <location filename="Plugins.cpp" line="+404"/>
+ <location filename="Plugins.cpp" line="+417"/>
<location line="+6"/>
<source>Downloaded new or updated plugin to %1.</source>
<translation type="unfinished"></translation>
@@ -8127,7 +8124,7 @@ An access token is a text string, which can be used as a password for very simpl
<context>
<name>UserModel</name>
<message>
- <location filename="UserModel.cpp" line="-809"/>
+ <location filename="UserModel.cpp" line="-811"/>
<source>This is a user connected to the server. The icon to the left of the user indicates whether or not they are talking:</source>
<translation type="unfinished"></translation>
</message>
@@ -8256,7 +8253,7 @@ An access token is a text string, which can be used as a password for very simpl
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location line="+726"/>
+ <location line="+728"/>
<source>Are you sure you want to drag this channel?</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/mumble/mumble_da.ts b/src/mumble/mumble_da.ts
index 215c712f2..6dfdb90cd 100644
--- a/src/mumble/mumble_da.ts
+++ b/src/mumble/mumble_da.ts
@@ -2325,7 +2325,7 @@ Mumble er under konstant udvikling, og udviklerteamet vil gerne fokusere på fun
<translation>Mumble bruger</translation>
</message>
<message>
- <location filename="main.cpp" line="+363"/>
+ <location filename="main.cpp" line="+390"/>
<source>&lt;b&gt;Certificate Expiry:&lt;/b&gt; Your certificate is about to expire. You need to renew it, or you will no longer be able to connect to servers you are registered on.</source>
<translation>&lt;b&gt;Certifikat Udløb:&lt;/b&gt; Dit certifikat er ved at udløbe. Du skal fornye det, ellers vil du ikke længere være i stand til at forbinde til servere du registreret på.</translation>
</message>
@@ -3940,7 +3940,7 @@ Dette felt beskriver størrelsen af en LCD-enhed. Størrelsen er enten opgivet i
<context>
<name>LookConfig</name>
<message>
- <location filename="LookConfig.cpp" line="+47"/>
+ <location filename="LookConfig.cpp" line="+52"/>
<location line="+11"/>
<source>System default</source>
<translation>Systemstandard</translation>
@@ -4267,12 +4267,12 @@ Dette felt beskriver størrelsen af en LCD-enhed. Størrelsen er enten opgivet i
<name>MainWindow</name>
<message>
<location filename="MainWindow.cpp" line="+148"/>
- <location line="+1824"/>
+ <location line="+1831"/>
<source>Root</source>
<translation>Rod</translation>
</message>
<message>
- <location line="-1773"/>
+ <location line="-1780"/>
<source>Push-to-Talk</source>
<comment>Global Shortcut</comment>
<translation>Tryk-for-snak</translation>
@@ -4351,28 +4351,28 @@ Dette felt beskriver størrelsen af en LCD-enhed. Størrelsen er enten opgivet i
<message>
<location filename="MainWindow.cpp" line="+4"/>
<location line="+12"/>
- <location line="+1925"/>
+ <location line="+1932"/>
<source>Mumble -- %1</source>
<translation>Mumble -- %1</translation>
</message>
<message>
- <location line="-1921"/>
+ <location line="-1928"/>
<source>&amp;Window</source>
<translation>&amp;Vindue</translation>
</message>
<message>
<location line="+2"/>
- <location line="+99"/>
+ <location line="+101"/>
<source>Minimize</source>
<translation>Minimér</translation>
</message>
<message>
- <location line="-99"/>
+ <location line="-101"/>
<source>Ctrl+M</source>
<translation>Ctrl+M</translation>
</message>
<message>
- <location line="+98"/>
+ <location line="+100"/>
<source>Close</source>
<translation>Luk</translation>
</message>
@@ -4382,7 +4382,7 @@ Dette felt beskriver størrelsen af en LCD-enhed. Størrelsen er enten opgivet i
<translation>Mumble har i øjeblikket forbindelse til en server. Vil du lukke eller minimere det?</translation>
</message>
<message>
- <location line="-150"/>
+ <location line="-152"/>
<source>Mute Self</source>
<comment>Global Shortcut</comment>
<translation>Mute dig selv</translation>
@@ -4430,12 +4430,12 @@ Dette felt beskriver størrelsen af en LCD-enhed. Størrelsen er enten opgivet i
</message>
<message>
<location line="+58"/>
- <location line="+1942"/>
+ <location line="+1949"/>
<source>Not connected</source>
<translation>Ingen forbindelse oprettet</translation>
</message>
<message>
- <location line="-1743"/>
+ <location line="-1748"/>
<source>Clear</source>
<translation>Ryd</translation>
</message>
@@ -4481,7 +4481,7 @@ Dette felt beskriver størrelsen af en LCD-enhed. Størrelsen er enten opgivet i
</message>
<message>
<location line="+18"/>
- <location line="+183"/>
+ <location line="+184"/>
<source>Connecting to server %1.</source>
<translation>Opretter forbindelse til server %1.</translation>
</message>
@@ -4511,7 +4511,7 @@ Dette felt beskriver størrelsen af en LCD-enhed. Størrelsen er enten opgivet i
<translation>&lt;p&gt;%1 (%2)&lt;br /&gt;%3&lt;/p&gt;</translation>
</message>
<message>
- <location line="+1416"/>
+ <location line="+1420"/>
<source>Images (*.png *.jpg *.svg)</source>
<translation>Billeder (*.png *.jpg *.svg)</translation>
</message>
@@ -4520,7 +4520,7 @@ Dette felt beskriver størrelsen af en LCD-enhed. Størrelsen er enten opgivet i
<translation type="obsolete">&lt;h2&gt;Kontrolkanal&lt;/h2&gt;&lt;p&gt;Krypteret med %1 bit %2&lt;br /&gt;%3 ms gennemsnitlig forsinkelse (%4 afvigelse)&lt;/p&gt;</translation>
</message>
<message>
- <location line="-1396"/>
+ <location line="-1400"/>
<source>&lt;h2&gt;Voice channel&lt;/h2&gt;&lt;p&gt;Encrypted with 128 bit OCB-AES128&lt;br /&gt;%1 ms average latency (%4 deviation)&lt;/p&gt;</source>
<translation>&lt;h2&gt;Stemmekanal&lt;/h2&gt;&lt;p&gt;Krypteret med 128 bit OCB-AES128&lt;br /&gt;%1 ms gennemsnitlig forsinkelse (%4 afvigelse)&lt;/p&gt;</translation>
</message>
@@ -4531,13 +4531,13 @@ Dette felt beskriver størrelsen af en LCD-enhed. Størrelsen er enten opgivet i
</message>
<message>
<location line="-104"/>
- <location line="+279"/>
+ <location line="+281"/>
<source>Register yourself as %1</source>
<translation>Registrér dig selv som %1</translation>
</message>
<message>
- <location line="-279"/>
- <location line="+279"/>
+ <location line="-281"/>
+ <location line="+281"/>
<source>&lt;p&gt;You are about to register yourself on this server. This action cannot be undone, and your username cannot be changed once this is done. You will forever be known as &apos;%1&apos; on this server.&lt;/p&gt;&lt;p&gt;Are you sure you want to register yourself?&lt;/p&gt;</source>
<translation>&lt;p&gt;Du er ved at registrere dig selv på denne server. Denne handling kan ikke fortrydes, og dit brugernavn kan ikke senere ændres. Du vil for altid være kendt som &apos;%1&apos; på denne server.&lt;/p&gt;&lt;p&gt;Er du sikker på du vil registrere dig selv?&lt;/p&gt;</translation>
</message>
@@ -4571,7 +4571,7 @@ Dette felt beskriver størrelsen af en LCD-enhed. Størrelsen er enten opgivet i
</message>
<message>
<location line="+107"/>
- <location line="+225"/>
+ <location line="+227"/>
<source>Message to channel %1</source>
<translation>Besked til kanal %1</translation>
</message>
@@ -4631,7 +4631,7 @@ Dette felt beskriver størrelsen af en LCD-enhed. Størrelsen er enten opgivet i
<translation>Billedformatet blev ikke genkendt.</translation>
</message>
<message>
- <location line="-1422"/>
+ <location line="-1426"/>
<source>Voice channel is sent over control channel.</source>
<translation>Lydkanal er sendt over kontrolkanal.</translation>
</message>
@@ -4682,12 +4682,12 @@ Dette felt beskriver størrelsen af en LCD-enhed. Størrelsen er enten opgivet i
</message>
<message>
<location line="+4"/>
- <location line="+1128"/>
+ <location line="+1132"/>
<source>&amp;View Certificate</source>
<translation>&amp;Se certifikat</translation>
</message>
<message>
- <location line="-917"/>
+ <location line="-919"/>
<location line="+19"/>
<source>Enter reason</source>
<translation>Skriv begrundelse</translation>
@@ -4721,7 +4721,7 @@ Dette felt beskriver størrelsen af en LCD-enhed. Størrelsen er enten opgivet i
<translation>Er du sikker på, at du vil nulstille kommentaren for brugeren %1?</translation>
</message>
<message>
- <location line="+183"/>
+ <location line="+185"/>
<source>Are you sure you want to delete %1 and all its sub-channels?</source>
<translation>Er du sikker på, at du vil slette %1 og alle dens underkanaler?</translation>
</message>
@@ -4854,7 +4854,7 @@ Dette felt beskriver størrelsen af en LCD-enhed. Størrelsen er enten opgivet i
<translation type="obsolete">&amp;Server</translation>
</message>
<message>
- <location line="-1999"/>
+ <location line="-2006"/>
<source>&amp;Channel</source>
<translation>&amp;Kanal</translation>
</message>
@@ -5861,7 +5861,7 @@ Dette felt beskriver størrelsen af en LCD-enhed. Størrelsen er enten opgivet i
<translation>Besked fra %1</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="+1380"/>
+ <location filename="UserModel.cpp" line="+1382"/>
<source>You have Channel Dragging set to &quot;Do Nothing&quot; so the channel wasn&apos;t moved.</source>
<translation>Du har kanalflytning sat til &quot;Gør intet&quot;, så kanalen blev ikke flyttet.</translation>
</message>
@@ -6236,7 +6236,7 @@ Forhindrer at programmet downloader billeder, der er indsat i chatbeskeder med i
<translation type="obsolete">Det mislykkedes at initialisere overlægningshukommelse. Dette betyder som regel at den delte hukommelse er låst af operativsystemet, og du behøver derfor at genstarte for at frigøre den.</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="+646"/>
+ <location filename="Overlay.cpp" line="+642"/>
<source>Failed to create communication with overlay at %2: %1. No overlay will be available.</source>
<translation>Det mislykkedes at oprette kommunikation med overlægningen på %2: %1. Der vil ikke være nogen overlægning tilgængelig.</translation>
</message>
@@ -6244,7 +6244,7 @@ Forhindrer at programmet downloader billeder, der er indsat i chatbeskeder med i
<context>
<name>OverlayConfig</name>
<message>
- <location line="-598"/>
+ <location line="-594"/>
<source>Show no one</source>
<translation>Vis ingen</translation>
</message>
@@ -6260,7 +6260,7 @@ Forhindrer at programmet downloader billeder, der er indsat i chatbeskeder med i
</message>
<message>
<location filename="Overlay.ui"/>
- <location filename="Overlay.cpp" line="+73"/>
+ <location filename="Overlay.cpp" line="+67"/>
<source>Color for users</source>
<translation>Farve for brugere</translation>
</message>
@@ -6337,19 +6337,16 @@ Forhindrer at programmet downloader billeder, der er indsat i chatbeskeder med i
<translation>Vis altid dig selv</translation>
</message>
<message>
- <location/>
<source>Show User custom textures instead of text on the overlay.</source>
- <translation>Vis brugertilpassede teksturer i stedet for tekst i overlægningen.</translation>
+ <translation type="obsolete">Vis brugertilpassede teksturer i stedet for tekst i overlægningen.</translation>
</message>
<message>
- <location/>
<source>This sets whether to download and use custom textures for registered users. If disabled, the regular outline text will be used instead.</source>
- <translation>Dette indstiller, om der skal downloades og vises brugerdefineret teksturer for registrerede brugere. Hvis denne er markeret, vil den almindelige tekst blive brugt i stedet.</translation>
+ <translation type="obsolete">Dette indstiller, om der skal downloades og vises brugerdefineret teksturer for registrerede brugere. Hvis denne er markeret, vil den almindelige tekst blive brugt i stedet.</translation>
</message>
<message>
- <location/>
<source>Show User Textures</source>
- <translation>Vis brugerteksturer</translation>
+ <translation type="obsolete">Vis brugerteksturer</translation>
</message>
<message>
<location/>
@@ -6611,7 +6608,7 @@ Forhindrer at programmet downloader billeder, der er indsat i chatbeskeder med i
<context>
<name>Plugins</name>
<message>
- <location filename="Plugins.cpp" line="+404"/>
+ <location filename="Plugins.cpp" line="+417"/>
<location line="+6"/>
<source>Downloaded new or updated plugin to %1.</source>
<translation>Downloadede nyt eller opdateret plugin til %1.</translation>
@@ -7234,7 +7231,7 @@ Et adgangsudtryk er en tekststreng, der kan bruges som en adgangskode for meget
<context>
<name>UserModel</name>
<message>
- <location filename="UserModel.cpp" line="-809"/>
+ <location filename="UserModel.cpp" line="-811"/>
<source>This is a user connected to the server. The icon to the left of the user indicates whether or not they are talking:</source>
<translation>Dette er en bruger, der har oprettet forbindelse til serveren. Ikonet til venstre for brugeren viser om vedkommende snakker:</translation>
</message>
@@ -7363,7 +7360,7 @@ Et adgangsudtryk er en tekststreng, der kan bruges som en adgangskode for meget
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location line="+726"/>
+ <location line="+728"/>
<source>Are you sure you want to drag this channel?</source>
<translation>Er du sikker på, at du vil flytte denne kanal?</translation>
</message>
diff --git a/src/mumble/mumble_de.ts b/src/mumble/mumble_de.ts
index 86f40724e..e76cc39bd 100644
--- a/src/mumble/mumble_de.ts
+++ b/src/mumble/mumble_de.ts
@@ -3185,7 +3185,7 @@ Bitte verwenden Sie eine andere Datei.</translation>
<translation>Mumble-Benutzer</translation>
</message>
<message>
- <location filename="main.cpp" line="+363"/>
+ <location filename="main.cpp" line="+390"/>
<source>&lt;b&gt;Certificate Expiry:&lt;/b&gt; Your certificate is about to expire. You need to renew it, or you will no longer be able to connect to servers you are registered on.</source>
<translation>&lt;b&gt;Ablauf des Zertifikats:&lt;/b&gt; Ihr Zertifikat wird bald ablaufen. Sie müssen es erneuern oder Sie werden nicht mehr in der Lage sein sich auf Server zu verbinden auf denen Sie registriert sind.</translation>
</message>
@@ -5493,7 +5493,7 @@ Stellen Sie sicher, dass die Sound-Hinweise für diesen Ereignistyp aktiviert si
<translation>Aussehen</translation>
</message>
<message>
- <location filename="LookConfig.cpp" line="+47"/>
+ <location filename="LookConfig.cpp" line="+52"/>
<location line="+11"/>
<source>System default</source>
<translation>Systemstandard</translation>
@@ -5888,7 +5888,7 @@ Ein Neustart von Mumble ist notwendig damit die Änderung wirksam wird.</transla
<name>MainWindow</name>
<message>
<location filename="MainWindow.cpp" line="+148"/>
- <location line="+1824"/>
+ <location line="+1831"/>
<source>Root</source>
<translation>Hauptkanal</translation>
</message>
@@ -6452,9 +6452,9 @@ Ein Neustart von Mumble ist notwendig damit die Änderung wirksam wird.</transla
<translation>Verbindet sich mit der Mumble-Webseite um zu überprüfen ob eine neue Version verfügbar ist. Ist eine neue Version verfügbar wird mit einer passenden Download-URL darauf hingewiesen.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1729"/>
+ <location filename="MainWindow.cpp" line="-1736"/>
<location line="+12"/>
- <location line="+1925"/>
+ <location line="+1932"/>
<source>Mumble -- %1</source>
<translation>Mumble -- %1</translation>
</message>
@@ -6476,7 +6476,7 @@ Ein Neustart von Mumble ist notwendig damit die Änderung wirksam wird.</transla
<translation type="obsolete">B&amp;enutzer</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-2015"/>
+ <location filename="MainWindow.cpp" line="-2022"/>
<source>&amp;Channel</source>
<translation>&amp;Kanal</translation>
</message>
@@ -6499,7 +6499,7 @@ Ein Neustart von Mumble ist notwendig damit die Änderung wirksam wird.</transla
<translation type="obsolete">Kicke Benutzer %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="+1013"/>
+ <location filename="MainWindow.cpp" line="+1018"/>
<location line="+19"/>
<source>Enter reason</source>
<translation>Grund eingeben</translation>
@@ -6522,7 +6522,7 @@ Ein Neustart von Mumble ist notwendig damit die Änderung wirksam wird.</transla
<translation type="obsolete">Sind Sie sicher Kanal %1 und all seine Unterkanäle zu löschen?</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="+441"/>
+ <location filename="MainWindow.cpp" line="+443"/>
<source>Unmuted and undeafened.</source>
<translation>Stumm- und Taubstellen deaktiviert.</translation>
</message>
@@ -6575,7 +6575,7 @@ Ein Neustart von Mumble ist notwendig damit die Änderung wirksam wird.</transla
<translation>Verbindung zum Server unterbrochen.</translation>
</message>
<message>
- <location line="-1347"/>
+ <location line="-1351"/>
<source>Reconnecting.</source>
<translation>Neuverbindung.</translation>
</message>
@@ -6917,7 +6917,7 @@ Ein Neustart von Mumble ist notwendig damit die Änderung wirksam wird.</transla
<translation>Willkommen in Mumble.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-601"/>
+ <location filename="MainWindow.cpp" line="-604"/>
<source>Push-to-Talk</source>
<comment>Global Shortcut</comment>
<translation>Push-To-Talk</translation>
@@ -7032,7 +7032,7 @@ Ein Neustart von Mumble ist notwendig damit die Änderung wirksam wird.</transla
<translation>Plugin trennen</translation>
</message>
<message>
- <location line="+305"/>
+ <location line="+307"/>
<source>File is not a configuration file.</source>
<translation>Die Datei ist keine Konfigurationsdatei.</translation>
</message>
@@ -7043,7 +7043,7 @@ Ein Neustart von Mumble ist notwendig damit die Änderung wirksam wird.</transla
</message>
<message>
<location line="+47"/>
- <location line="+183"/>
+ <location line="+184"/>
<source>Connecting to server %1.</source>
<translation>Zu Server %1 verbinden.</translation>
</message>
@@ -7077,7 +7077,7 @@ Ein Neustart von Mumble ist notwendig damit die Änderung wirksam wird.</transla
<translation>&lt;h2&gt;Audio-Bandbreite&lt;/h2&gt;&lt;p&gt;Maximum %1 kbit/s&lt;br /&gt;Derzeit %2 kbit/s&lt;/p&gt;</translation>
</message>
<message>
- <location line="+287"/>
+ <location line="+289"/>
<source>View comment on user %1</source>
<translation>Zeige den Kommentar des Benutzers %1</translation>
</message>
@@ -7087,7 +7087,7 @@ Ein Neustart von Mumble ist notwendig damit die Änderung wirksam wird.</transla
<translation>Wollen Sie wirklich den Kommentar des Benutzers %1 löschen?</translation>
</message>
<message>
- <location line="+263"/>
+ <location line="+265"/>
<source>(Tree) %1: %2</source>
<translation>(Baum) %1: %2</translation>
</message>
@@ -7114,14 +7114,14 @@ Ein Neustart von Mumble ist notwendig damit die Änderung wirksam wird.</transla
<translation type="obsolete">Öffnen der Bilddatei fehlgeschlagen.</translation>
</message>
<message>
- <location line="-1281"/>
- <location line="+279"/>
+ <location line="-1285"/>
+ <location line="+281"/>
<source>Register yourself as %1</source>
<translation>Sich selbst als %1 registrieren</translation>
</message>
<message>
- <location line="-279"/>
- <location line="+279"/>
+ <location line="-281"/>
+ <location line="+281"/>
<source>&lt;p&gt;You are about to register yourself on this server. This action cannot be undone, and your username cannot be changed once this is done. You will forever be known as &apos;%1&apos; on this server.&lt;/p&gt;&lt;p&gt;Are you sure you want to register yourself?&lt;/p&gt;</source>
<translation>&lt;p&gt;Sie sind dabei sich auf dem Server zu registrieren. Diese Aktion kann nicht rückgängig gemacht werden und Ihr Benutzername &apos;%1&apos; auf diesem Server kann von Ihnen selbst nicht mehr geändert werden.&lt;/p&gt;&lt;p&gt;Sind Sie sicher, dass Sie sich selbst registrieren möchten?&lt;/p&gt;</translation>
</message>
@@ -7157,7 +7157,7 @@ Ein Neustart von Mumble ist notwendig damit die Änderung wirksam wird.</transla
</message>
<message>
<location line="+107"/>
- <location line="+225"/>
+ <location line="+227"/>
<source>Message to channel %1</source>
<translation>Nachricht an den Kanal %1</translation>
</message>
@@ -7263,7 +7263,7 @@ Beachten Sie, dass die Kompatibilitätsversion eine optionale Komponente bei den
<translation type="obsolete">Sende eine Text-Nachricht an einen anderen Benutzer.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1155"/>
+ <location filename="MainWindow.cpp" line="-1157"/>
<source>Sending message to %1</source>
<translation>Sende Nachricht an %1</translation>
</message>
@@ -7285,7 +7285,7 @@ Beachten Sie, dass die Kompatibilitätsversion eine optionale Komponente bei den
<translation type="obsolete">Ändere Beschreibung von Kanal %1</translation>
</message>
<message>
- <location line="+851"/>
+ <location line="+853"/>
<source>Invalid username</source>
<translation>Ungültiger Benutzername</translation>
</message>
@@ -7334,7 +7334,7 @@ Beachten Sie, dass die Kompatibilitätsversion eine optionale Komponente bei den
<translation>Schickt eine Textnachricht an einen anderen Benutzer.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-2000"/>
+ <location filename="MainWindow.cpp" line="-2007"/>
<source>&amp;User</source>
<translation>&amp;Benutzer</translation>
</message>
@@ -7436,7 +7436,7 @@ Wenn Sie hier Text eingeben und Enter drücken wird der Text an den Benutzer ode
<translation>Dies leitet Sie durch den Hardware-Konfigurationsprozess.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="+1910"/>
+ <location filename="MainWindow.cpp" line="+1917"/>
<source>SSL Verification failed: %1</source>
<translation>SSL-Überprüfung fehlgeschlagen: %1</translation>
</message>
@@ -7495,7 +7495,7 @@ Wenn Sie hier Text eingeben und Enter drücken wird der Text an den Benutzer ode
<translation>Dies zeigt erweitertete Informationen über die Verbindung zum Server an.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1125"/>
+ <location filename="MainWindow.cpp" line="-1129"/>
<source>Mumble Server Information</source>
<translation>Mumble - Server Informationen</translation>
</message>
@@ -7505,17 +7505,17 @@ Wenn Sie hier Text eingeben und Enter drücken wird der Text an den Benutzer ode
</message>
<message>
<location line="+4"/>
- <location line="+1128"/>
+ <location line="+1132"/>
<source>&amp;View Certificate</source>
<translation>&amp;Zertifikat zeigen</translation>
</message>
<message>
- <location line="-1586"/>
+ <location line="-1591"/>
<source>Opening URL %1</source>
<translation>Öffne URL %1</translation>
</message>
<message>
- <location line="-301"/>
+ <location line="-303"/>
<source>Mute Self</source>
<comment>Global Shortcut</comment>
<translation>Selbst stumm stellen</translation>
@@ -7563,17 +7563,17 @@ Wenn Sie hier Text eingeben und Enter drücken wird der Text an den Benutzer ode
</message>
<message>
<location line="+58"/>
- <location line="+1942"/>
+ <location line="+1949"/>
<source>Not connected</source>
<translation>Nicht verbunden</translation>
</message>
<message>
- <location line="-1733"/>
+ <location line="-1738"/>
<source>File does not exist</source>
<translation>Datei existiert nicht</translation>
</message>
<message>
- <location line="+318"/>
+ <location line="+319"/>
<source>Change your comment</source>
<translation>Ändere deinen Kommentar</translation>
</message>
@@ -7587,7 +7587,7 @@ Wenn Sie hier Text eingeben und Enter drücken wird der Text an den Benutzer ode
<translation type="obsolete">Diese Datei ist keine Konfigurationsdatei.</translation>
</message>
<message>
- <location line="-410"/>
+ <location line="-411"/>
<source>Settings merged from file.</source>
<translation>Einstellungen aus Datei eingelesen.</translation>
</message>
@@ -7628,7 +7628,7 @@ Wenn Sie hier Text eingeben und Enter drücken wird der Text an den Benutzer ode
<translation type="obsolete">&lt;h2&gt;Kontrollkanal&lt;/h2&gt;&lt;p&gt;Verschlüsselt mit %1 Bit %2&lt;br /&gt;%3 ms Durchschnittslatenz (%4 Varianz)&lt;/p&gt;</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="+359"/>
+ <location filename="MainWindow.cpp" line="+360"/>
<source>Voice channel is sent over control channel.</source>
<translation>Sprachkanal wird über den Kontrollkanal gesendet.</translation>
</message>
@@ -7710,7 +7710,7 @@ Wenn Sie hier Text eingeben und Enter drücken wird der Text an den Benutzer ode
<translation>Über &amp;Qt</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="+561"/>
+ <location filename="MainWindow.cpp" line="+565"/>
<source>Sending message to channel %1</source>
<translation>Sende Nachricht an den Kanal %1</translation>
</message>
@@ -7757,7 +7757,7 @@ Wenn Sie hier Text eingeben und Enter drücken wird der Text an den Benutzer ode
<translation type="obsolete">Mit Server %1 verbunden.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1169"/>
+ <location filename="MainWindow.cpp" line="-1174"/>
<source>Mumble is currently connected to a server. Do you want to Close or Minimize it?</source>
<translation>Mumble ist gerade zu einem Server verbunden. Möchten Sie es schließen oder minimieren?</translation>
</message>
@@ -7767,13 +7767,13 @@ Wenn Sie hier Text eingeben und Enter drücken wird der Text an den Benutzer ode
<translation>Schließen</translation>
</message>
<message>
- <location line="-98"/>
- <location line="+99"/>
+ <location line="-100"/>
+ <location line="+101"/>
<source>Minimize</source>
<translation>Minimieren</translation>
</message>
<message>
- <location line="-101"/>
+ <location line="-103"/>
<source>&amp;Window</source>
<translation>&amp;Fenster</translation>
</message>
@@ -7825,12 +7825,12 @@ Wenn Sie hier Text eingeben und Enter drücken wird der Text an den Benutzer ode
<translation>Leiser (-10%)</translation>
</message>
<message>
- <location line="+264"/>
+ <location line="+266"/>
<source>Clear</source>
<translation>Löschen</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="+1380"/>
+ <location filename="UserModel.cpp" line="+1382"/>
<source>You have Channel Dragging set to &quot;Do Nothing&quot; so the channel wasn&apos;t moved.</source>
<translation>Die Kanal-Ziehen-Aktion wurde auf &quot;Nichts tun&quot; gesetzt. Der Kanal wird also nicht bewegt.</translation>
</message>
@@ -8280,7 +8280,7 @@ Verhindert das Herunterladen von Nachrichten die mittels img-Tag in Nachrichten
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="+646"/>
+ <location filename="Overlay.cpp" line="+642"/>
<source>Failed to create communication with overlay at %2: %1. No overlay will be available.</source>
<translation>Kommunikation mit dem Overlay auf %2: %1 fehlgeschlagen. Das Overlay wird nicht verfügbar sein.</translation>
</message>
@@ -8380,19 +8380,16 @@ Verhindert das Herunterladen von Nachrichten die mittels img-Tag in Nachrichten
<translation>Dies legt fest, ob Sie selbst immer angezeigt werden sollen oder nicht. Diese Einstellung ist nützlich, wenn Sie im Overlay nicht jeden anzeigen. In dem Fall würden sie ihren Status nur sehen, wenn Sie sprechen und sie könnten nicht sehen ob sie taub- oder stummgestellt wurden.</translation>
</message>
<message>
- <location/>
<source>Show User Textures</source>
- <translation>Zeige Benutzertexturen</translation>
+ <translation type="obsolete">Zeige Benutzertexturen</translation>
</message>
<message>
- <location/>
<source>Show User custom textures instead of text on the overlay.</source>
- <translation>Zeige benutzerdefinierte Texturen statt Text auf dem Overlay.</translation>
+ <translation type="obsolete">Zeige benutzerdefinierte Texturen statt Text auf dem Overlay.</translation>
</message>
<message>
- <location/>
<source>This sets whether to download and use custom textures for registered users. If disabled, the regular outline text will be used instead.</source>
- <translation>Dies legt fest ob Benutzertexturen von registrierten Benutzern heruntergeladen und benutzt werden sollen. Wenn deaktiviert, wird normaler Text angezeigt.</translation>
+ <translation type="obsolete">Dies legt fest ob Benutzertexturen von registrierten Benutzern heruntergeladen und benutzt werden sollen. Wenn deaktiviert, wird normaler Text angezeigt.</translation>
</message>
<message>
<location/>
@@ -8514,12 +8511,12 @@ Bitte beachten Sie: Wenn Sie Mumble nach dem Applikationsstart starten oder das
<translation>Farbe für aktive Kanäle</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="-503"/>
+ <location filename="Overlay.cpp" line="-505"/>
<source>Overlay</source>
<translation>Overlay</translation>
</message>
<message>
- <location line="-95"/>
+ <location line="-89"/>
<source>Show no one</source>
<translation>Zeige niemanden</translation>
</message>
@@ -8535,7 +8532,7 @@ Bitte beachten Sie: Wenn Sie Mumble nach dem Applikationsstart starten oder das
</message>
<message>
<location filename="Overlay.ui"/>
- <location filename="Overlay.cpp" line="+73"/>
+ <location filename="Overlay.cpp" line="+67"/>
<source>Color for users</source>
<translation>Farbe für Benutzer</translation>
</message>
@@ -8777,7 +8774,7 @@ Bitte beachten Sie: Wenn Sie Mumble nach dem Applikationsstart starten oder das
<context>
<name>Plugins</name>
<message>
- <location filename="Plugins.cpp" line="+404"/>
+ <location filename="Plugins.cpp" line="+417"/>
<location line="+6"/>
<source>Downloaded new or updated plugin to %1.</source>
<translation>Neues oder aktualisiertes Plugin nach %1 heruntergeladen.</translation>
@@ -9469,7 +9466,7 @@ Ein Zugriffscode ist eine Zeichenfolge, die als Passwort für ein sehr einfaches
<context>
<name>UserModel</name>
<message>
- <location filename="UserModel.cpp" line="-809"/>
+ <location filename="UserModel.cpp" line="-811"/>
<source>This is a user connected to the server. The icon to the left of the user indicates whether or not they are talking:</source>
<translation>Dies ist ein zum Server verbundener Benutzer. Das Icon links vom Benutzer zeigt, ob der Benutzer spricht oder nicht:</translation>
</message>
@@ -9569,13 +9566,13 @@ Ein Zugriffscode ist eine Zeichenfolge, die als Passwort für ein sehr einfaches
<translation>Kanal hat einen neuen Kommentar (klicken um anzusehen)</translation>
</message>
<message>
- <location line="+837"/>
+ <location line="+839"/>
<location line="+20"/>
<source>Cannot perform this movement automatically, please reset the numeric sorting indicators or adjust it manually.</source>
<translation>Kann dieses Verschieben nicht automatisiert ausführen. Bitte setzen Sie die Kanalpositionswert zurück oder setzen Sie sie manuell.</translation>
</message>
<message>
- <location line="-865"/>
+ <location line="-867"/>
<source>User has a comment set, which you&apos;ve already seen. (click to show)</source>
<translation>Benutzer hat einen Kommentar gesetzt, welchen Sie schon gesehen haben. (klicken um anzusehen)</translation>
</message>
@@ -9604,7 +9601,7 @@ Ein Zugriffscode ist eine Zeichenfolge, die als Passwort für ein sehr einfaches
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location line="+726"/>
+ <location line="+728"/>
<source>Are you sure you want to drag this channel?</source>
<translation>Sind Sie sicher, dass Sie den Kanal verschieben möchten?</translation>
</message>
diff --git a/src/mumble/mumble_en.ts b/src/mumble/mumble_en.ts
index 20c4e6359..3c147a8ea 100644
--- a/src/mumble/mumble_en.ts
+++ b/src/mumble/mumble_en.ts
@@ -2205,7 +2205,7 @@ Mumble is under continuous development, and the development team wants to focus
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="+363"/>
+ <location filename="main.cpp" line="+390"/>
<source>&lt;b&gt;Certificate Expiry:&lt;/b&gt; Your certificate is about to expire. You need to renew it, or you will no longer be able to connect to servers you are registered on.</source>
<translation type="unfinished"></translation>
</message>
@@ -3768,7 +3768,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<context>
<name>LookConfig</name>
<message>
- <location filename="LookConfig.cpp" line="+47"/>
+ <location filename="LookConfig.cpp" line="+52"/>
<location line="+11"/>
<source>System default</source>
<translation type="unfinished"></translation>
@@ -4069,12 +4069,12 @@ This field describes the size of an LCD device. The size is given either in pixe
<name>MainWindow</name>
<message>
<location filename="MainWindow.cpp" line="+148"/>
- <location line="+1824"/>
+ <location line="+1831"/>
<source>Root</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-1773"/>
+ <location line="-1780"/>
<source>Push-to-Talk</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -4153,28 +4153,28 @@ This field describes the size of an LCD device. The size is given either in pixe
<message>
<location filename="MainWindow.cpp" line="+4"/>
<location line="+12"/>
- <location line="+1925"/>
+ <location line="+1932"/>
<source>Mumble -- %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-1921"/>
+ <location line="-1928"/>
<source>&amp;Window</source>
<translation type="unfinished"></translation>
</message>
<message>
<location line="+2"/>
- <location line="+99"/>
+ <location line="+101"/>
<source>Minimize</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-99"/>
+ <location line="-101"/>
<source>Ctrl+M</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="+98"/>
+ <location line="+100"/>
<source>Close</source>
<translation type="unfinished"></translation>
</message>
@@ -4184,7 +4184,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-150"/>
+ <location line="-152"/>
<source>Mute Self</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -4232,12 +4232,12 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+58"/>
- <location line="+1942"/>
+ <location line="+1949"/>
<source>Not connected</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-1743"/>
+ <location line="-1748"/>
<source>Clear</source>
<translation type="unfinished"></translation>
</message>
@@ -4283,7 +4283,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+18"/>
- <location line="+183"/>
+ <location line="+184"/>
<source>Connecting to server %1.</source>
<translation type="unfinished"></translation>
</message>
@@ -4319,13 +4319,13 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="-104"/>
- <location line="+279"/>
+ <location line="+281"/>
<source>Register yourself as %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-279"/>
- <location line="+279"/>
+ <location line="-281"/>
+ <location line="+281"/>
<source>&lt;p&gt;You are about to register yourself on this server. This action cannot be undone, and your username cannot be changed once this is done. You will forever be known as &apos;%1&apos; on this server.&lt;/p&gt;&lt;p&gt;Are you sure you want to register yourself?&lt;/p&gt;</source>
<translation type="unfinished"></translation>
</message>
@@ -4356,7 +4356,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+56"/>
- <location line="+225"/>
+ <location line="+227"/>
<source>Message to channel %1</source>
<translation type="unfinished"></translation>
</message>
@@ -4412,12 +4412,12 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-1422"/>
+ <location line="-1426"/>
<source>Voice channel is sent over control channel.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-784"/>
+ <location line="-787"/>
<source>&amp;User</source>
<translation type="unfinished"></translation>
</message>
@@ -4427,7 +4427,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location line="+666"/>
+ <location line="+669"/>
<source>Change your comment</source>
<translation type="unfinished"></translation>
</message>
@@ -4478,12 +4478,12 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+4"/>
- <location line="+1128"/>
+ <location line="+1132"/>
<source>&amp;View Certificate</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-917"/>
+ <location line="-919"/>
<location line="+19"/>
<source>Enter reason</source>
<translation type="unfinished"></translation>
@@ -4512,7 +4512,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location line="+183"/>
+ <location line="+185"/>
<source>Are you sure you want to delete %1 and all its sub-channels?</source>
<translation type="unfinished"></translation>
</message>
@@ -5519,7 +5519,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="UserModel.cpp" line="+1380"/>
+ <location filename="UserModel.cpp" line="+1382"/>
<source>You have Channel Dragging set to &quot;Do Nothing&quot; so the channel wasn&apos;t moved.</source>
<translation type="unfinished"></translation>
</message>
@@ -5912,7 +5912,7 @@ Prevents the client from downloading images embedded into chat messages with the
<context>
<name>Overlay</name>
<message>
- <location filename="Overlay.cpp" line="+646"/>
+ <location filename="Overlay.cpp" line="+642"/>
<source>Failed to create communication with overlay at %2: %1. No overlay will be available.</source>
<translation type="unfinished"></translation>
</message>
@@ -5920,7 +5920,7 @@ Prevents the client from downloading images embedded into chat messages with the
<context>
<name>OverlayConfig</name>
<message>
- <location line="-598"/>
+ <location line="-594"/>
<source>Show no one</source>
<translation type="unfinished"></translation>
</message>
@@ -5936,7 +5936,7 @@ Prevents the client from downloading images embedded into chat messages with the
</message>
<message>
<location filename="Overlay.ui"/>
- <location filename="Overlay.cpp" line="+73"/>
+ <location filename="Overlay.cpp" line="+67"/>
<source>Color for users</source>
<translation type="unfinished"></translation>
</message>
@@ -6014,21 +6014,6 @@ Prevents the client from downloading images embedded into chat messages with the
</message>
<message>
<location/>
- <source>Show User custom textures instead of text on the overlay.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location/>
- <source>This sets whether to download and use custom textures for registered users. If disabled, the regular outline text will be used instead.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location/>
- <source>Show User Textures</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location/>
<source>Position</source>
<translation type="unfinished"></translation>
</message>
@@ -6281,7 +6266,7 @@ Prevents the client from downloading images embedded into chat messages with the
<context>
<name>Plugins</name>
<message>
- <location filename="Plugins.cpp" line="+404"/>
+ <location filename="Plugins.cpp" line="+417"/>
<location line="+6"/>
<source>Downloaded new or updated plugin to %1.</source>
<translation type="unfinished"></translation>
@@ -6885,7 +6870,7 @@ An access token is a text string, which can be used as a password for very simpl
<context>
<name>UserModel</name>
<message>
- <location filename="UserModel.cpp" line="-809"/>
+ <location filename="UserModel.cpp" line="-811"/>
<source>This is a user connected to the server. The icon to the left of the user indicates whether or not they are talking:</source>
<translation type="unfinished"></translation>
</message>
@@ -7010,7 +6995,7 @@ An access token is a text string, which can be used as a password for very simpl
<translation type="unfinished"></translation>
</message>
<message>
- <location line="+726"/>
+ <location line="+728"/>
<source>Are you sure you want to drag this channel?</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/mumble/mumble_es.ts b/src/mumble/mumble_es.ts
index 46adff8e2..8f238716e 100644
--- a/src/mumble/mumble_es.ts
+++ b/src/mumble/mumble_es.ts
@@ -3208,7 +3208,7 @@ Mumble se encuentra en continuo desarrollo, y el equipo de desarrollo quiere cen
<translation>Usuario Mumble</translation>
</message>
<message>
- <location filename="main.cpp" line="+363"/>
+ <location filename="main.cpp" line="+390"/>
<source>&lt;b&gt;Certificate Expiry:&lt;/b&gt; Your certificate is about to expire. You need to renew it, or you will no longer be able to connect to servers you are registered on.</source>
<translation>&lt;b&gt;Vencimiento del certificado:&lt;/b&gt; Su certificado está a punto de caducar. Debe renovarlo, o de lo contrario no podrá conectarse a los servidores en los que se haya registrado.</translation>
</message>
@@ -5491,7 +5491,7 @@ p, li { white-space: pre-wrap; }
<translation>Apariencia</translation>
</message>
<message>
- <location filename="LookConfig.cpp" line="+47"/>
+ <location filename="LookConfig.cpp" line="+52"/>
<location line="+11"/>
<source>System default</source>
<translation>Predeterminado del sistema</translation>
@@ -5896,7 +5896,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="MainWindow.cpp" line="+148"/>
- <location line="+1824"/>
+ <location line="+1831"/>
<source>Root</source>
<translation>Root</translation>
</message>
@@ -6403,9 +6403,9 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Elimina la textura actual definida por el usuario.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1729"/>
+ <location filename="MainWindow.cpp" line="-1736"/>
<location line="+12"/>
- <location line="+1925"/>
+ <location line="+1932"/>
<source>Mumble -- %1</source>
<translation>Mumble -- %1</translation>
</message>
@@ -6422,7 +6422,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">&amp;Jugador</translation>
</message>
<message>
- <location line="-2015"/>
+ <location line="-2022"/>
<source>&amp;Channel</source>
<translation>&amp;Canal</translation>
</message>
@@ -6445,7 +6445,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Expulsando al jugador %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="+1013"/>
+ <location filename="MainWindow.cpp" line="+1018"/>
<location line="+19"/>
<source>Enter reason</source>
<translation>Introduzca el motivo</translation>
@@ -6468,7 +6468,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">¿Está seguro de que desa borrar %1 y todos sus subcanales?</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="+441"/>
+ <location filename="MainWindow.cpp" line="+443"/>
<source>Unmuted and undeafened.</source>
<translation>Con voz y escucha.</translation>
</message>
@@ -6521,7 +6521,7 @@ p, li { white-space: pre-wrap; }
<translation>Desconectado del servidor.</translation>
</message>
<message>
- <location line="-1347"/>
+ <location line="-1351"/>
<source>Reconnecting.</source>
<translation>Volviendo a conectar.</translation>
</message>
@@ -6868,7 +6868,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">%1 ensordecido por %2.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-601"/>
+ <location filename="MainWindow.cpp" line="-604"/>
<source>Push-to-Talk</source>
<comment>Global Shortcut</comment>
<translation>Presionar-para-Hablar (PTT)</translation>
@@ -6947,7 +6947,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">%2 mudó a %1.</translation>
</message>
<message>
- <location line="+1220"/>
+ <location line="+1227"/>
<source>Are you sure you want to delete %1 and all its sub-channels?</source>
<translation>¿Está seguro de que desa borrar %1 y todos sus subcanales?</translation>
</message>
@@ -6981,7 +6981,7 @@ p, li { white-space: pre-wrap; }
<translation>Enviar un mensaje de texto</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-232"/>
+ <location filename="MainWindow.cpp" line="-234"/>
<source>Sending message to %1</source>
<translation>Enviando mensaje a %1</translation>
</message>
@@ -7012,7 +7012,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location line="-4"/>
- <location line="+225"/>
+ <location line="+227"/>
<source>Message to channel %1</source>
<translation>Mensaje al canal %1</translation>
</message>
@@ -7076,7 +7076,7 @@ p, li { white-space: pre-wrap; }
<translation>Envía un mensaje de texto a otro usuario.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-2000"/>
+ <location filename="MainWindow.cpp" line="-2007"/>
<source>&amp;User</source>
<translation>&amp;Usuario</translation>
</message>
@@ -7167,7 +7167,7 @@ p, li { white-space: pre-wrap; }
<translation>Le guiará a través del proceso de configuración de su hardware de audio.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="+1910"/>
+ <location filename="MainWindow.cpp" line="+1917"/>
<source>SSL Verification failed: %1</source>
<translation>Falló la verificación SSL: %1</translation>
</message>
@@ -7226,7 +7226,7 @@ p, li { white-space: pre-wrap; }
<translation>Muestra información extendida acerca de la conexión con el servidor.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1579"/>
+ <location filename="MainWindow.cpp" line="-1584"/>
<source>Opening URL %1</source>
<translation>Abriendo URL %1</translation>
</message>
@@ -7267,7 +7267,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location line="+18"/>
- <location line="+183"/>
+ <location line="+184"/>
<source>Connecting to server %1.</source>
<translation>Conectando al servidor %1.</translation>
</message>
@@ -7292,7 +7292,7 @@ p, li { white-space: pre-wrap; }
<translation>&lt;p&gt;%1 (%2)&lt;br /&gt;%3&lt;/p&gt;</translation>
</message>
<message>
- <location line="+1416"/>
+ <location line="+1420"/>
<source>Images (*.png *.jpg *.svg)</source>
<translation>Imágenes (*.png *.jpg *.svg)</translation>
</message>
@@ -7301,7 +7301,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">&lt;h2&gt;Canal de control&lt;/h2&gt;&lt;p&gt;Cifrado con %2 de %1 bit&lt;br /&gt;%3 ms de latencia media (desviación %4)&lt;/p&gt;</translation>
</message>
<message>
- <location line="-1407"/>
+ <location line="-1411"/>
<source>&lt;h2&gt;Control channel&lt;/h2&gt;&lt;p&gt;Encrypted with %1 bit %2&lt;br /&gt;%3 ms average latency (%4 deviation)&lt;/p&gt;&lt;p&gt;Remote host %5 (port %6)&lt;/p&gt;</source>
<translation>&lt;h2&gt;Canal de control&lt;/h2&gt;&lt;p&gt;Cifrado con %2 de %1 bit&lt;br /&gt;%3 ms de latencia media (desviación %4)&lt;/p&gt;&lt;p&gt;Anfitrión remoto %5 (puerto %6)&lt;/p&gt;</translation>
</message>
@@ -7322,13 +7322,13 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location line="-106"/>
- <location line="+279"/>
+ <location line="+281"/>
<source>Register yourself as %1</source>
<translation>Registrarse como %1</translation>
</message>
<message>
- <location line="-279"/>
- <location line="+279"/>
+ <location line="-281"/>
+ <location line="+281"/>
<source>&lt;p&gt;You are about to register yourself on this server. This action cannot be undone, and your username cannot be changed once this is done. You will forever be known as &apos;%1&apos; on this server.&lt;/p&gt;&lt;p&gt;Are you sure you want to register yourself?&lt;/p&gt;</source>
<translation>&lt;p&gt;Está a punto de registrarse en este servidor. Esta acción no puede deshacerse, y su nombre de usuario no puede cambiarse una vez que se complete. Será conocido para siempre como &apos;%1&apos; en este servidor.&lt;/p&gt;&lt;p&gt;¿Está seguro de que desea registrarse?&lt;/p&gt;</translation>
</message>
@@ -7363,7 +7363,7 @@ p, li { white-space: pre-wrap; }
<translation>¿Está seguro de que desea reiniciar el comentario sobre el usuario %1?</translation>
</message>
<message>
- <location line="+263"/>
+ <location line="+265"/>
<source>(Tree) %1: %2</source>
<translation>(Árbol) %1: %2</translation>
</message>
@@ -7431,8 +7431,8 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Canal de control: latencia %1 ms, Cifrado con %3 bit %4&lt;br /&gt;Canal de voz: latencia %2 ms, Sin cifrar</translation>
</message>
<message>
- <location line="-1403"/>
- <location line="+1128"/>
+ <location line="-1407"/>
+ <location line="+1132"/>
<source>&amp;View Certificate</source>
<translation>&amp;Ver certificado</translation>
</message>
@@ -7441,7 +7441,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">&lt;h2&gt;Canal de control&lt;/h2&gt;&lt;p&gt;Cifrado con %2 de %1 bits&lt;br /&gt;%3 ms de latencia media (%4 de varianza)&lt;/p&gt;</translation>
</message>
<message>
- <location line="-1894"/>
+ <location line="-1901"/>
<source>Push and hold this button to send voice.</source>
<comment>Global Shortcut</comment>
<translation>Mantenga pulsado este botón para enviar la voz.</translation>
@@ -7484,7 +7484,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Esto conmutará el estado de la sobreimpresión durante el juego entre mostrar a todos, sólo mostrar los jugadores que están hablando, y no mostrar a nadie.</translation>
</message>
<message>
- <location line="+719"/>
+ <location line="+722"/>
<source>Voice channel is sent over control channel.</source>
<translation>El canal de voz se envía a través del canal de control.</translation>
</message>
@@ -7532,7 +7532,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Cambiar descripción del canal %1</translation>
</message>
<message>
- <location line="+561"/>
+ <location line="+565"/>
<source>Sending message to channel %1</source>
<translation>Enviando mensaje al canal %1</translation>
</message>
@@ -7630,7 +7630,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Conectado al servidor %1.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1169"/>
+ <location filename="MainWindow.cpp" line="-1174"/>
<source>Mumble is currently connected to a server. Do you want to Close or Minimize it?</source>
<translation>Mumble está conectado a un servidor actualmente. ¿Desea cerrarlo o minimizarlo?</translation>
</message>
@@ -7640,13 +7640,13 @@ p, li { white-space: pre-wrap; }
<translation>Cerrar</translation>
</message>
<message>
- <location line="-98"/>
- <location line="+99"/>
+ <location line="-100"/>
+ <location line="+101"/>
<source>Minimize</source>
<translation>Minimizar</translation>
</message>
<message>
- <location line="-152"/>
+ <location line="-154"/>
<source>Mute Self</source>
<comment>Global Shortcut</comment>
<translation>Enmudecerse</translation>
@@ -7741,12 +7741,12 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location line="+65"/>
- <location line="+1942"/>
+ <location line="+1949"/>
<source>Not connected</source>
<translation>Desconectado</translation>
</message>
<message>
- <location line="-1743"/>
+ <location line="-1748"/>
<source>Clear</source>
<translation>Borrar</translation>
</message>
@@ -7756,7 +7756,7 @@ p, li { white-space: pre-wrap; }
<translation>Registro</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="+1380"/>
+ <location filename="UserModel.cpp" line="+1382"/>
<source>You have Channel Dragging set to &quot;Do Nothing&quot; so the channel wasn&apos;t moved.</source>
<translation>Ha establecido el arrastre de canales a &quot;No hacer nada&quot; así que el canal no se movió.</translation>
</message>
@@ -8260,7 +8260,7 @@ Impide que el cliente descargue imágenes incrustadas en mensajes de charla medi
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="+646"/>
+ <location filename="Overlay.cpp" line="+642"/>
<source>Failed to create communication with overlay at %2: %1. No overlay will be available.</source>
<translation>No se pudo establecer la comunicación con la sobreimpresión en %2: %1. La sobreimpresión no estará disponible.</translation>
</message>
@@ -8500,7 +8500,7 @@ Impide que el cliente descargue imágenes incrustadas en mensajes de charla medi
<translation>Color de los canales activos</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="-503"/>
+ <location filename="Overlay.cpp" line="-505"/>
<source>Overlay</source>
<translation>Sobreimpresión</translation>
</message>
@@ -8519,19 +8519,16 @@ Impide que el cliente descargue imágenes incrustadas en mensajes de charla medi
<translation type="obsolete">Establece la anchura máxima de los nombres mostrados, relativa a la altura. Si fija esto a 100%, ninguna línea de texto será más ancha que su altura. A 500%, ninguna línea será 5 veces más ancha que su altura, y así sucesivamente.</translation>
</message>
<message>
- <location/>
<source>Show User Textures</source>
- <translation>Mostrar texturas de los usuarios</translation>
+ <translation type="obsolete">Mostrar texturas de los usuarios</translation>
</message>
<message>
- <location/>
<source>Show User custom textures instead of text on the overlay.</source>
- <translation>Muestra texturas personalizadas por el usuario en vez de texto en la sobreimpresión.</translation>
+ <translation type="obsolete">Muestra texturas personalizadas por el usuario en vez de texto en la sobreimpresión.</translation>
</message>
<message>
- <location/>
<source>This sets whether to download and use custom textures for registered users. If disabled, the regular outline text will be used instead.</source>
- <translation>Establece si se descargarán y usarán texturas personalizadas para los usuarios registrados. Si se desactiva, se usará en su lugar el texto resumido habitual.</translation>
+ <translation type="obsolete">Establece si se descargarán y usarán texturas personalizadas para los usuarios registrados. Si se desactiva, se usará en su lugar el texto resumido habitual.</translation>
</message>
<message>
<location/>
@@ -8549,7 +8546,7 @@ Impide que el cliente descargue imágenes incrustadas en mensajes de charla medi
<translation>Altura máxima</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="-95"/>
+ <location filename="Overlay.cpp" line="-89"/>
<source>Show no one</source>
<translation>No mostrar a nadie</translation>
</message>
@@ -8565,7 +8562,7 @@ Impide que el cliente descargue imágenes incrustadas en mensajes de charla medi
</message>
<message>
<location filename="Overlay.ui"/>
- <location filename="Overlay.cpp" line="+73"/>
+ <location filename="Overlay.cpp" line="+67"/>
<source>Color for users</source>
<translation>Color de los usuarios</translation>
</message>
@@ -8820,7 +8817,7 @@ Impide que el cliente descargue imágenes incrustadas en mensajes de charla medi
<context>
<name>Plugins</name>
<message>
- <location filename="Plugins.cpp" line="+404"/>
+ <location filename="Plugins.cpp" line="+417"/>
<location line="+6"/>
<source>Downloaded new or updated plugin to %1.</source>
<translation>Se ha descargado un complemento nuevo o actualizado para %1.</translation>
@@ -9534,7 +9531,7 @@ Una credencial de acceso es una cadena de texto que puede ser usada como contras
<context>
<name>UserModel</name>
<message>
- <location filename="UserModel.cpp" line="-809"/>
+ <location filename="UserModel.cpp" line="-811"/>
<source>This is a user connected to the server. The icon to the left of the user indicates whether or not they are talking:</source>
<translation>Éste es un usuario conectado al servidor. El icono a la izquierda del usuario indica si está o no hablando:</translation>
</message>
@@ -9663,7 +9660,7 @@ Una credencial de acceso es una cadena de texto que puede ser usada como contras
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location line="+726"/>
+ <location line="+728"/>
<source>Are you sure you want to drag this channel?</source>
<translation>¿Está seguro de que desea arrastrar este canal?</translation>
</message>
diff --git a/src/mumble/mumble_fr.ts b/src/mumble/mumble_fr.ts
index 1fd17a559..c8bd76595 100644
--- a/src/mumble/mumble_fr.ts
+++ b/src/mumble/mumble_fr.ts
@@ -2985,7 +2985,7 @@ Mumble is under continuous development, and the development team wants to focus
<translation>Utilisateur Mumble</translation>
</message>
<message>
- <location filename="main.cpp" line="+363"/>
+ <location filename="main.cpp" line="+390"/>
<source>&lt;b&gt;Certificate Expiry:&lt;/b&gt; Your certificate is about to expire. You need to renew it, or you will no longer be able to connect to servers you are registered on.</source>
<translation type="unfinished"></translation>
</message>
@@ -5122,7 +5122,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>Apparence</translation>
</message>
<message>
- <location filename="LookConfig.cpp" line="+47"/>
+ <location filename="LookConfig.cpp" line="+52"/>
<location line="+11"/>
<source>System default</source>
<translation>Par défault</translation>
@@ -5503,7 +5503,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location filename="MainWindow.cpp" line="+148"/>
- <location line="+1824"/>
+ <location line="+1831"/>
<source>Root</source>
<translation>Racine</translation>
</message>
@@ -5695,7 +5695,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">&amp;Délier</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1808"/>
+ <location filename="MainWindow.cpp" line="-1815"/>
<source>&amp;User</source>
<translation type="unfinished">&amp;Utilisateur</translation>
</message>
@@ -6102,7 +6102,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<message>
<location filename="MainWindow.cpp" line="+79"/>
<location line="+12"/>
- <location line="+1925"/>
+ <location line="+1932"/>
<source>Mumble -- %1</source>
<translation>Mumble -- %1</translation>
</message>
@@ -6124,7 +6124,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">&amp;Joueur</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-2015"/>
+ <location filename="MainWindow.cpp" line="-2022"/>
<source>&amp;Channel</source>
<translation type="unfinished">&amp;Salon</translation>
</message>
@@ -6236,7 +6236,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">Expulsion du joueur %1</translation>
</message>
<message>
- <location line="+949"/>
+ <location line="+954"/>
<location line="+19"/>
<source>Enter reason</source>
<translation>Entrez la raison</translation>
@@ -6255,7 +6255,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">Nom du canal</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="+250"/>
+ <location filename="MainWindow.cpp" line="+252"/>
<source>Are you sure you want to delete %1 and all its sub-channels?</source>
<translation>Etes-vous sûr(e) de vouloir supprimer %1 et tous ses sous-canaux ?</translation>
</message>
@@ -6313,7 +6313,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>Déconnecté du serveur.</translation>
</message>
<message>
- <location line="-1347"/>
+ <location line="-1351"/>
<source>Reconnecting.</source>
<translation>Reconnexion.</translation>
</message>
@@ -6655,7 +6655,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">Envoyer un message textuel à un autre utilisateur.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="+415"/>
+ <location filename="MainWindow.cpp" line="+417"/>
<source>Sending message to %1</source>
<translation>Envoi du message à %1</translation>
</message>
@@ -6687,7 +6687,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location line="+263"/>
+ <location line="+265"/>
<source>(Tree) %1: %2</source>
<translation type="unfinished"></translation>
</message>
@@ -6796,7 +6796,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>Ceci affiche des informations supplémentaires sur la connexion au serveur.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1572"/>
+ <location filename="MainWindow.cpp" line="-1577"/>
<source>Opening URL %1</source>
<translation>Ouvrir l&apos;URL %1</translation>
</message>
@@ -6837,7 +6837,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+18"/>
- <location line="+183"/>
+ <location line="+184"/>
<source>Connecting to server %1.</source>
<translation>Connexion au serveur %1.</translation>
</message>
@@ -6882,19 +6882,19 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+4"/>
- <location line="+1128"/>
+ <location line="+1132"/>
<source>&amp;View Certificate</source>
<translation>&amp;Voir le certificat</translation>
</message>
<message>
- <location line="-1238"/>
- <location line="+279"/>
+ <location line="-1242"/>
+ <location line="+281"/>
<source>Register yourself as %1</source>
<translation>S&apos;enregistrement en tant que %1</translation>
</message>
<message>
- <location line="-279"/>
- <location line="+279"/>
+ <location line="-281"/>
+ <location line="+281"/>
<source>&lt;p&gt;You are about to register yourself on this server. This action cannot be undone, and your username cannot be changed once this is done. You will forever be known as &apos;%1&apos; on this server.&lt;/p&gt;&lt;p&gt;Are you sure you want to register yourself?&lt;/p&gt;</source>
<translation>&lt;p&gt;Vous êtes sur le point de vous enregistrer sur ce serveur. Cette action ne peut pas être annulée, et votre identifiant ne pourra plus être modifié une fois cette étape effectuée. Vous serez pour toujours connu comme &apos;%1&apos; sur ce serveur&lt;/p&gt;&lt;p&gt;Êtes-vous sûr de vouloir vous enregistrer ?&lt;/p&gt;</translation>
</message>
@@ -6928,7 +6928,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+107"/>
- <location line="+225"/>
+ <location line="+227"/>
<source>Message to channel %1</source>
<translation>Message pour le salon %1</translation>
</message>
@@ -6997,7 +6997,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>Format d&apos;image non reconnu.</translation>
</message>
<message>
- <location line="-1422"/>
+ <location line="-1426"/>
<source>Voice channel is sent over control channel.</source>
<translation>La voix est envoyée au dessus du canal de contrôle.</translation>
</message>
@@ -7042,7 +7042,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>Resynchronise</translation>
</message>
<message>
- <location line="+561"/>
+ <location line="+565"/>
<source>Sending message to channel %1</source>
<translation>Envoyé un message au salon %1</translation>
</message>
@@ -7128,7 +7128,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">Connecté au serveur %1.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1169"/>
+ <location filename="MainWindow.cpp" line="-1174"/>
<source>Mumble is currently connected to a server. Do you want to Close or Minimize it?</source>
<translation>Mumble est actuellement connecté à un serveur. Voulez-vous le fermer ou le réduire dans la barre des tâches?</translation>
</message>
@@ -7138,13 +7138,13 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>Fermer</translation>
</message>
<message>
- <location line="-98"/>
- <location line="+99"/>
+ <location line="-100"/>
+ <location line="+101"/>
<source>Minimize</source>
<translation>Réduire</translation>
</message>
<message>
- <location line="-152"/>
+ <location line="-154"/>
<source>Mute Self</source>
<comment>Global Shortcut</comment>
<translation>Se rendre muet(te)</translation>
@@ -7239,12 +7239,12 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+65"/>
- <location line="+1942"/>
+ <location line="+1949"/>
<source>Not connected</source>
<translation>Non connecté</translation>
</message>
<message>
- <location line="-1743"/>
+ <location line="-1748"/>
<source>Clear</source>
<translation>Effacer</translation>
</message>
@@ -7254,7 +7254,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>Historique</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="+1380"/>
+ <location filename="UserModel.cpp" line="+1382"/>
<source>You have Channel Dragging set to &quot;Do Nothing&quot; so the channel wasn&apos;t moved.</source>
<translation>Votre option &apos;Faire glisser le salon&apos; est définie sur &quot;Ne rien faire&quot;, le salon n&apos;a donc pas été déplacé.</translation>
</message>
@@ -7731,7 +7731,7 @@ Empêche le client de télécharger les images intégrées dans les messages de
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="+646"/>
+ <location filename="Overlay.cpp" line="+642"/>
<source>Failed to create communication with overlay at %2: %1. No overlay will be available.</source>
<translation type="unfinished"></translation>
</message>
@@ -7963,7 +7963,7 @@ Empêche le client de télécharger les images intégrées dans les messages de
<translation>Couleur des canaux actifs</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="-503"/>
+ <location filename="Overlay.cpp" line="-505"/>
<source>Overlay</source>
<translation>Overlay</translation>
</message>
@@ -7983,22 +7983,19 @@ Empêche le client de télécharger les images intégrées dans les messages de
<translation>Hauteur maximum</translation>
</message>
<message>
- <location/>
<source>Show User Textures</source>
- <translation>Montrer les textures des utilisateurs</translation>
+ <translation type="obsolete">Montrer les textures des utilisateurs</translation>
</message>
<message>
- <location/>
<source>Show User custom textures instead of text on the overlay.</source>
- <translation>Montrer les textures des utilisateurs au lieu du texte de l&apos;overlay.</translation>
+ <translation type="obsolete">Montrer les textures des utilisateurs au lieu du texte de l&apos;overlay.</translation>
</message>
<message>
- <location/>
<source>This sets whether to download and use custom textures for registered users. If disabled, the regular outline text will be used instead.</source>
- <translation>Ceci définit le téléchargement et l&apos;utilisation des textures personnalisées pour les utilisateurs enregistrés. Si désactivé, l&apos;esquisse de texte ordinaire sera utilisé à sa place.</translation>
+ <translation type="obsolete">Ceci définit le téléchargement et l&apos;utilisation des textures personnalisées pour les utilisateurs enregistrés. Si désactivé, l&apos;esquisse de texte ordinaire sera utilisé à sa place.</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="-95"/>
+ <location filename="Overlay.cpp" line="-89"/>
<source>Show no one</source>
<translation>Afficher aucun</translation>
</message>
@@ -8014,7 +8011,7 @@ Empêche le client de télécharger les images intégrées dans les messages de
</message>
<message>
<location filename="Overlay.ui"/>
- <location filename="Overlay.cpp" line="+73"/>
+ <location filename="Overlay.cpp" line="+67"/>
<source>Color for users</source>
<translation>Couleur des utilisateurs</translation>
</message>
@@ -8253,7 +8250,7 @@ Empêche le client de télécharger les images intégrées dans les messages de
<context>
<name>Plugins</name>
<message>
- <location filename="Plugins.cpp" line="+404"/>
+ <location filename="Plugins.cpp" line="+417"/>
<location line="+6"/>
<source>Downloaded new or updated plugin to %1.</source>
<translation>Téléchargé le nouveau plugin ou mis à jour vers %1.</translation>
@@ -8949,7 +8946,7 @@ Un jeton d&apos;accès est une chaîne de caractères, qui peut être utilisée
<context>
<name>UserModel</name>
<message>
- <location filename="UserModel.cpp" line="-809"/>
+ <location filename="UserModel.cpp" line="-811"/>
<source>This is a user connected to the server. The icon to the left of the user indicates whether or not they are talking:</source>
<translation>C&apos;est un utilisateur connecté au serveur. L&apos;icône à gauche de l&apos;utilisateur infique si il parle ou pas :</translation>
</message>
@@ -9078,7 +9075,7 @@ Un jeton d&apos;accès est une chaîne de caractères, qui peut être utilisée
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location line="+726"/>
+ <location line="+728"/>
<source>Are you sure you want to drag this channel?</source>
<translation>Etes vous sur de vouloir déplacer ce salon ?</translation>
</message>
diff --git a/src/mumble/mumble_it.ts b/src/mumble/mumble_it.ts
index 4b6608860..5264105c7 100644
--- a/src/mumble/mumble_it.ts
+++ b/src/mumble/mumble_it.ts
@@ -2555,7 +2555,7 @@ Mumble è in continuo sviluppo, e gli sviluppatori cercano di concentrarsi sulle
<translation>Utente Mumble</translation>
</message>
<message>
- <location filename="main.cpp" line="+363"/>
+ <location filename="main.cpp" line="+390"/>
<source>&lt;b&gt;Certificate Expiry:&lt;/b&gt; Your certificate is about to expire. You need to renew it, or you will no longer be able to connect to servers you are registered on.</source>
<translation>&lt;b&gt;Scadenza certificato:&lt;/b&gt; Il tuo certificato stà per scadere. Devi rinnovarlo, o non sarai più in grado di connetterti ai server a cui ti sei registrato.</translation>
</message>
@@ -4514,7 +4514,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>LookConfig</name>
<message>
- <location filename="LookConfig.cpp" line="+47"/>
+ <location filename="LookConfig.cpp" line="+52"/>
<location line="+11"/>
<source>System default</source>
<translation>Predefinito del sistema</translation>
@@ -4884,12 +4884,12 @@ p, li { white-space: pre-wrap; }
<name>MainWindow</name>
<message>
<location filename="MainWindow.cpp" line="+148"/>
- <location line="+1824"/>
+ <location line="+1831"/>
<source>Root</source>
<translation>Radice</translation>
</message>
<message>
- <location line="-1773"/>
+ <location line="-1780"/>
<source>Push-to-Talk</source>
<comment>Global Shortcut</comment>
<translation>Premi-per-parlare</translation>
@@ -5028,28 +5028,28 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="MainWindow.cpp" line="+4"/>
<location line="+12"/>
- <location line="+1925"/>
+ <location line="+1932"/>
<source>Mumble -- %1</source>
<translation>Mumble -- %1</translation>
</message>
<message>
- <location line="-1921"/>
+ <location line="-1928"/>
<source>&amp;Window</source>
<translation>&amp;Finestra</translation>
</message>
<message>
<location line="+2"/>
- <location line="+99"/>
+ <location line="+101"/>
<source>Minimize</source>
<translation>Minimizza</translation>
</message>
<message>
- <location line="-99"/>
+ <location line="-101"/>
<source>Ctrl+M</source>
<translation>Ctrl+M</translation>
</message>
<message>
- <location line="+98"/>
+ <location line="+100"/>
<source>Close</source>
<translation>Chiudi</translation>
</message>
@@ -5059,7 +5059,7 @@ p, li { white-space: pre-wrap; }
<translation>Mumble è attualmente connesso ad un server. Vuoi Chiuderlo o Minimizzarlo?</translation>
</message>
<message>
- <location line="-150"/>
+ <location line="-152"/>
<source>Mute Self</source>
<comment>Global Shortcut</comment>
<translation>Disattivati microfono</translation>
@@ -5107,12 +5107,12 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location line="+58"/>
- <location line="+1942"/>
+ <location line="+1949"/>
<source>Not connected</source>
<translation>Non connesso</translation>
</message>
<message>
- <location line="-1743"/>
+ <location line="-1748"/>
<source>Clear</source>
<translation>Cancella</translation>
</message>
@@ -5159,7 +5159,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location line="+18"/>
- <location line="+183"/>
+ <location line="+184"/>
<source>Connecting to server %1.</source>
<translation>Connessione al server %1.</translation>
</message>
@@ -5194,7 +5194,7 @@ p, li { white-space: pre-wrap; }
<translation>&lt;h2&gt;Canale di controllo&lt;/h2&gt;&lt;p&gt;Crittografato con %1 bit %2&lt;br/&gt;%3 ms latenza media (%4 deviazione)&lt;/p&gt;&lt;p&gt;Host remoto %5 (porta%6)&lt;/p&gt;</translation>
</message>
<message>
- <location line="+1407"/>
+ <location line="+1411"/>
<source>Images (*.png *.jpg *.svg)</source>
<translation>Immagini (*.png *.jpg *.svg)</translation>
</message>
@@ -5203,7 +5203,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">&lt;h2&gt;Canale di controllo&lt;/h2&gt;&lt;p&gt;Crittografato con %1 bit %2&lt;br/&gt;%3 ms latenza media (%4 deviazione)&lt;/p&gt;</translation>
</message>
<message>
- <location line="-1396"/>
+ <location line="-1400"/>
<source>&lt;h2&gt;Voice channel&lt;/h2&gt;&lt;p&gt;Encrypted with 128 bit OCB-AES128&lt;br /&gt;%1 ms average latency (%4 deviation)&lt;/p&gt;</source>
<translation>&lt;h2&gt;Canale di voce&lt;/h2&gt;&lt;p&gt;Crittografato con 128 bit OCB-AES128&lt;br/&gt;%1 ms latenza media (%4 deviazione)&lt;/p&gt;</translation>
</message>
@@ -5214,13 +5214,13 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location line="-104"/>
- <location line="+279"/>
+ <location line="+281"/>
<source>Register yourself as %1</source>
<translation>Registrati come %1</translation>
</message>
<message>
- <location line="-279"/>
- <location line="+279"/>
+ <location line="-281"/>
+ <location line="+281"/>
<source>&lt;p&gt;You are about to register yourself on this server. This action cannot be undone, and your username cannot be changed once this is done. You will forever be known as &apos;%1&apos; on this server.&lt;/p&gt;&lt;p&gt;Are you sure you want to register yourself?&lt;/p&gt;</source>
<translation>&lt;p&gt;Stai per registrarti sul server. Quest&apos;azione non può essere annullata, il tuo nome utente non potrà essere cambiato. Sarai per sempre conosciuto come &apos;%1&apos; su questo server.&lt;p&gt;Se sicuro di volerti registrare?&lt;/p&gt;</translation>
</message>
@@ -5264,7 +5264,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location line="+40"/>
- <location line="+225"/>
+ <location line="+227"/>
<source>Message to channel %1</source>
<translation>Messaggio al canale %1</translation>
</message>
@@ -5338,7 +5338,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">&lt;h2&gt;Canale di controllo&lt;/h2&gt;&lt;p&gt;Crittografato con %1 bit %2&lt;br/&gt;%3 ms latenza media (%4 variazione)&lt;/p&gt;</translation>
</message>
<message>
- <location line="-1422"/>
+ <location line="-1426"/>
<source>Voice channel is sent over control channel.</source>
<translation>Il canale di voce è trasmesso sul canale di controllo.</translation>
</message>
@@ -5392,7 +5392,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location line="+4"/>
- <location line="+1128"/>
+ <location line="+1132"/>
<source>&amp;View Certificate</source>
<translation>&amp;Visualizza certificato</translation>
</message>
@@ -5401,7 +5401,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Espulsione giocatore %1</translation>
</message>
<message>
- <location line="-917"/>
+ <location line="-919"/>
<location line="+19"/>
<source>Enter reason</source>
<translation>Inserisci motivazione</translation>
@@ -5433,7 +5433,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Nome canale</translation>
</message>
<message>
- <location line="+139"/>
+ <location line="+141"/>
<source>Are you sure you want to delete %1 and all its sub-channels?</source>
<translation>Sei sicuro di voler cancellare %1 e tutti i suoi sottocanali?</translation>
</message>
@@ -5576,7 +5576,7 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">&amp;Giocatore</translation>
</message>
<message>
- <location line="-1999"/>
+ <location line="-2006"/>
<source>&amp;Channel</source>
<translation>&amp;Canale</translation>
</message>
@@ -6650,7 +6650,7 @@ p, li { white-space: pre-wrap; }
<translation>Messaggio da %1</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="+1380"/>
+ <location filename="UserModel.cpp" line="+1382"/>
<source>You have Channel Dragging set to &quot;Do Nothing&quot; so the channel wasn&apos;t moved.</source>
<translation>Hai selezionato &quot;non fare niente&quot; sulle impostazioni del trascinamento del canale, quindi il canale non sarà spostato.</translation>
</message>
@@ -7089,7 +7089,7 @@ Impedisce il download delle immagini incorporate nei messaggi di chat con il tag
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="+646"/>
+ <location filename="Overlay.cpp" line="+642"/>
<source>Failed to create communication with overlay at %2: %1. No overlay will be available.</source>
<translation>Impossibile creare una comunicazione con la sovrapposizione su %2 :%1. La sovrapposizione non sarà disponibile.</translation>
</message>
@@ -7119,7 +7119,7 @@ Impedisce il download delle immagini incorporate nei messaggi di chat con il tag
<context>
<name>OverlayConfig</name>
<message>
- <location line="-598"/>
+ <location line="-594"/>
<source>Show no one</source>
<translation>Non mostrare nessuno</translation>
</message>
@@ -7135,7 +7135,7 @@ Impedisce il download delle immagini incorporate nei messaggi di chat con il tag
</message>
<message>
<location filename="Overlay.ui"/>
- <location filename="Overlay.cpp" line="+73"/>
+ <location filename="Overlay.cpp" line="+67"/>
<source>Color for users</source>
<translation>Colore per gli utenti</translation>
</message>
@@ -7216,19 +7216,16 @@ Impedisce il download delle immagini incorporate nei messaggi di chat con il tag
<translation>Mostra sempre se stessi</translation>
</message>
<message>
- <location/>
<source>Show User custom textures instead of text on the overlay.</source>
- <translation>Mostra una immagine personalizzata dell&apos;utente al posto della sovrapposizione testuale.</translation>
+ <translation type="obsolete">Mostra una immagine personalizzata dell&apos;utente al posto della sovrapposizione testuale.</translation>
</message>
<message>
- <location/>
<source>This sets whether to download and use custom textures for registered users. If disabled, the regular outline text will be used instead.</source>
- <translation>Imposta se scaricare e usare una immagine personalizzata per gli utenti registrati. Se disabilitato, verrà usato il testo standard.</translation>
+ <translation type="obsolete">Imposta se scaricare e usare una immagine personalizzata per gli utenti registrati. Se disabilitato, verrà usato il testo standard.</translation>
</message>
<message>
- <location/>
<source>Show User Textures</source>
- <translation>Mostra le immagini Utente</translation>
+ <translation type="obsolete">Mostra le immagini Utente</translation>
</message>
<message>
<location/>
@@ -7541,7 +7538,7 @@ Impedisce il download delle immagini incorporate nei messaggi di chat con il tag
<context>
<name>Plugins</name>
<message>
- <location filename="Plugins.cpp" line="+404"/>
+ <location filename="Plugins.cpp" line="+417"/>
<location line="+6"/>
<source>Downloaded new or updated plugin to %1.</source>
<translation>Scaricato nuovo o aggiornato plugin a %1.</translation>
@@ -8171,7 +8168,7 @@ An access token is a text string, which can be used as a password for very simpl
<context>
<name>UserModel</name>
<message>
- <location filename="UserModel.cpp" line="-809"/>
+ <location filename="UserModel.cpp" line="-811"/>
<source>This is a user connected to the server. The icon to the left of the user indicates whether or not they are talking:</source>
<translation>Questo è un utente connesso al server. L&apos;icona sulla sinistra dell&apos;utente indica se stà parlando o no:</translation>
</message>
@@ -8300,7 +8297,7 @@ An access token is a text string, which can be used as a password for very simpl
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location line="+726"/>
+ <location line="+728"/>
<source>Are you sure you want to drag this channel?</source>
<translation>Sei sicuro di voler spostare questo canale?</translation>
</message>
diff --git a/src/mumble/mumble_ja.ts b/src/mumble/mumble_ja.ts
index 3ab4c993c..e804a4984 100644
--- a/src/mumble/mumble_ja.ts
+++ b/src/mumble/mumble_ja.ts
@@ -3168,7 +3168,7 @@ Mumbleは現在開発中であり、開発チームはより多くのユーザ
<translation type="unfinished">Mumble ユーザ</translation>
</message>
<message>
- <location filename="main.cpp" line="+363"/>
+ <location filename="main.cpp" line="+390"/>
<source>&lt;b&gt;Certificate Expiry:&lt;/b&gt; Your certificate is about to expire. You need to renew it, or you will no longer be able to connect to servers you are registered on.</source>
<translation type="unfinished">&lt;b&gt;証明書の有効期限:&lt;/b&gt;あなたの証明書の有効期限がもうすぐ切れます。証明書を更新する必要があります。さもないとあなたはユーザ登録したサーバに接続できなくなるでしょう。</translation>
</message>
@@ -5351,7 +5351,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>外観と手触り</translation>
</message>
<message>
- <location filename="LookConfig.cpp" line="+47"/>
+ <location filename="LookConfig.cpp" line="+52"/>
<location line="+11"/>
<source>System default</source>
<translation>システムのデフォルト</translation>
@@ -5739,7 +5739,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<name>MainWindow</name>
<message>
<location filename="MainWindow.cpp" line="+148"/>
- <location line="+1824"/>
+ <location line="+1831"/>
<source>Root</source>
<translation>ルート</translation>
</message>
@@ -6255,9 +6255,9 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>Mumbleのウェブページに接続して新しいバージョンが出ているかを確認します。もし新しいのが出ていたら適切なダウンロードURLを通知します。</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1729"/>
+ <location filename="MainWindow.cpp" line="-1736"/>
<location line="+12"/>
- <location line="+1925"/>
+ <location line="+1932"/>
<source>Mumble -- %1</source>
<translation>Mumble -- %1</translation>
</message>
@@ -6279,7 +6279,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">プレイヤー(&amp;P)</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-2015"/>
+ <location filename="MainWindow.cpp" line="-2022"/>
<source>&amp;Channel</source>
<translation type="unfinished">チャンネル(&amp;C)</translation>
</message>
@@ -6416,7 +6416,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">プレイヤー %1 をキックしました。</translation>
</message>
<message>
- <location line="+949"/>
+ <location line="+954"/>
<location line="+19"/>
<source>Enter reason</source>
<translation>理由を入力してください</translation>
@@ -6435,7 +6435,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">チャンネル名</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="+250"/>
+ <location filename="MainWindow.cpp" line="+252"/>
<source>Are you sure you want to delete %1 and all its sub-channels?</source>
<translation type="unfinished">%1 とそのサブチャンネルを全て削除します。よろしいですか?</translation>
</message>
@@ -6493,7 +6493,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>サーバから切断しました。</translation>
</message>
<message>
- <location line="-1347"/>
+ <location line="-1351"/>
<source>Reconnecting.</source>
<translation>再接続中.</translation>
</message>
@@ -6859,7 +6859,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>テキストメッセージを送信</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="+415"/>
+ <location filename="MainWindow.cpp" line="+417"/>
<source>Sending message to %1</source>
<translation type="unfinished">%1 にメッセージを送信しています</translation>
</message>
@@ -6887,7 +6887,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished">ユーザ %1 のコメントをリセットしますか?</translation>
</message>
<message>
- <location line="+263"/>
+ <location line="+265"/>
<source>(Tree) %1: %2</source>
<translation type="unfinished">(ツリー) %1: %2</translation>
</message>
@@ -6956,7 +6956,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>他のユーザにテキストメッセージを送信します。</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-2182"/>
+ <location filename="MainWindow.cpp" line="-2189"/>
<source>&amp;User</source>
<translation type="unfinished">ユーザ(&amp;U)</translation>
</message>
@@ -7048,7 +7048,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>サウンドハードウェアの設定プロセスに案内します。</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="+1910"/>
+ <location filename="MainWindow.cpp" line="+1917"/>
<source>SSL Verification failed: %1</source>
<translation>SSL検証エラー: %1</translation>
</message>
@@ -7078,7 +7078,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>サーバとの接続についての詳細な情報を表示します。</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1572"/>
+ <location filename="MainWindow.cpp" line="-1577"/>
<source>Opening URL %1</source>
<translation>URL %1 を開きます</translation>
</message>
@@ -7119,7 +7119,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+18"/>
- <location line="+183"/>
+ <location line="+184"/>
<source>Connecting to server %1.</source>
<translation type="unfinished">サーバ %1 に接続しています。</translation>
</message>
@@ -7164,19 +7164,19 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+4"/>
- <location line="+1128"/>
+ <location line="+1132"/>
<source>&amp;View Certificate</source>
<translation>証明書を見る(&amp;V)</translation>
</message>
<message>
- <location line="-1238"/>
- <location line="+279"/>
+ <location line="-1242"/>
+ <location line="+281"/>
<source>Register yourself as %1</source>
<translation type="unfinished">%1 として自分をユーザ登録</translation>
</message>
<message>
- <location line="-279"/>
- <location line="+279"/>
+ <location line="-281"/>
+ <location line="+281"/>
<source>&lt;p&gt;You are about to register yourself on this server. This action cannot be undone, and your username cannot be changed once this is done. You will forever be known as &apos;%1&apos; on this server.&lt;/p&gt;&lt;p&gt;Are you sure you want to register yourself?&lt;/p&gt;</source>
<translation type="unfinished">&lt;p&gt;サーバ上で自分自身をユーザ登録しようとしています。このアクションは取り消せません。あなたのユーザ名はこの操作の後に変更できません。あなたはこのサーバ上で &apos;%1&apos; として知られるようになります。&lt;/p&gt;&lt;p&gt;本当に自分自身を登録しますか?&lt;/p&gt;</translation>
</message>
@@ -7210,7 +7210,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+107"/>
- <location line="+225"/>
+ <location line="+227"/>
<source>Message to channel %1</source>
<translation type="unfinished">チャンネル %1 へのメッセージ</translation>
</message>
@@ -7244,12 +7244,12 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>&lt;p&gt;%1.&lt;br /&gt;詳細な証明書エラーの内容: &lt;/p&gt;&lt;ol&gt;%2&lt;/ol&gt;&lt;p&gt;この証明書を受け入れますか?&lt;br /&gt;(同時に証明書を保存するので、今後この質問は表示されません。)&lt;/p&gt;</translation>
</message>
<message>
- <location line="-1149"/>
+ <location line="-1153"/>
<source>&lt;h2&gt;Control channel&lt;/h2&gt;&lt;p&gt;Encrypted with %1 bit %2&lt;br /&gt;%3 ms average latency (%4 deviation)&lt;/p&gt;&lt;p&gt;Remote host %5 (port %6)&lt;/p&gt;</source>
<translation type="unfinished">&lt;h2&gt;制御チャンネル&lt;/h2&gt;&lt;p&gt;%1 bit %2 で暗号化されています。&lt;br /&gt;平均 %3 ms の遅延 (平方偏差 %4)&lt;/p&gt;&lt;p&gt;リモートホスト %5 (ポート %6)&lt;/p&gt;</translation>
</message>
<message>
- <location line="+1313"/>
+ <location line="+1317"/>
<source>Type message to channel &apos;%1&apos; here</source>
<translation type="unfinished">チャンネル &apos;%1&apos; へのメッセージをここに入力</translation>
</message>
@@ -7288,7 +7288,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">&lt;h2&gt;制御チャンネル&lt;/h2&gt;&lt;p&gt;%1 bit %2 で暗号化されています。&lt;br /&gt;平均 %3 ms の遅延 (平方偏差 %4)&lt;/p&gt;</translation>
</message>
<message>
- <location line="-1422"/>
+ <location line="-1426"/>
<source>Voice channel is sent over control channel.</source>
<translation>音声チャンネルは管理チャンネルを通して送信されます。</translation>
</message>
@@ -7336,7 +7336,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">チャンネル 「%1」 の説明を変更する</translation>
</message>
<message>
- <location line="+561"/>
+ <location line="+565"/>
<source>Sending message to channel %1</source>
<translation>チャンネル %1 に送信するメッセージ</translation>
</message>
@@ -7434,7 +7434,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">サーバ %1 に接続しました。</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1169"/>
+ <location filename="MainWindow.cpp" line="-1174"/>
<source>Mumble is currently connected to a server. Do you want to Close or Minimize it?</source>
<translation type="unfinished">Mumble は現在、サーバに接続しています。接続を閉じるか最小化しますか?</translation>
</message>
@@ -7444,13 +7444,13 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>閉じる</translation>
</message>
<message>
- <location line="-98"/>
- <location line="+99"/>
+ <location line="-100"/>
+ <location line="+101"/>
<source>Minimize</source>
<translation>最小化</translation>
</message>
<message>
- <location line="-152"/>
+ <location line="-154"/>
<source>Mute Self</source>
<comment>Global Shortcut</comment>
<translation type="unfinished">自分を発言禁止にしました</translation>
@@ -7545,12 +7545,12 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+65"/>
- <location line="+1942"/>
+ <location line="+1949"/>
<source>Not connected</source>
<translation type="unfinished">接続されていません</translation>
</message>
<message>
- <location line="-1743"/>
+ <location line="-1748"/>
<source>Clear</source>
<translation>クリア</translation>
</message>
@@ -7560,7 +7560,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>ログ</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="+1380"/>
+ <location filename="UserModel.cpp" line="+1382"/>
<source>You have Channel Dragging set to &quot;Do Nothing&quot; so the channel wasn&apos;t moved.</source>
<translation>チャンネルをドラッグしたときに &quot;何もしない&quot; ようにします; チャンネルが移動しなくなります。</translation>
</message>
@@ -8058,7 +8058,7 @@ img タグでチャットメッセージに埋め込まれた画像のダウン
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="+646"/>
+ <location filename="Overlay.cpp" line="+642"/>
<source>Failed to create communication with overlay at %2: %1. No overlay will be available.</source>
<translation type="unfinished">オーバレイ: %2: %1 との通信の作成に失敗しました。有効なオーバレイはありません。</translation>
</message>
@@ -8297,27 +8297,24 @@ img タグでチャットメッセージに埋め込まれた画像のダウン
<translation>有効なチャンネルの色</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="-503"/>
+ <location filename="Overlay.cpp" line="-505"/>
<source>Overlay</source>
<translation>オーバーレイ</translation>
</message>
<message>
- <location filename="Overlay.ui"/>
<source>Show User Textures</source>
- <translation type="unfinished">ユーザテクスチャを表示する</translation>
+ <translation type="obsolete">ユーザテクスチャを表示する</translation>
</message>
<message>
- <location/>
<source>Show User custom textures instead of text on the overlay.</source>
- <translation type="unfinished">テキストの代わりにユーザのカスタムテクスチャをオーバーレイに表示します。</translation>
+ <translation type="obsolete">テキストの代わりにユーザのカスタムテクスチャをオーバーレイに表示します。</translation>
</message>
<message>
- <location/>
<source>This sets whether to download and use custom textures for registered users. If disabled, the regular outline text will be used instead.</source>
- <translation>登録されたユーザのカスタムテクスチャをダウンロードして使用するかどうかを決定します。無効の時は通常のテキストが代わりに使われます。</translation>
+ <translation type="obsolete">登録されたユーザのカスタムテクスチャをダウンロードして使用するかどうかを決定します。無効の時は通常のテキストが代わりに使われます。</translation>
</message>
<message>
- <location/>
+ <location filename="Overlay.ui"/>
<source>Maximum height of names.</source>
<translation type="unfinished">名前の最大の高さです。</translation>
</message>
@@ -8332,7 +8329,7 @@ img タグでチャットメッセージに埋め込まれた画像のダウン
<translation>最大の高さ</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="-95"/>
+ <location filename="Overlay.cpp" line="-89"/>
<source>Show no one</source>
<translation>なし</translation>
</message>
@@ -8348,7 +8345,7 @@ img タグでチャットメッセージに埋め込まれた画像のダウン
</message>
<message>
<location filename="Overlay.ui"/>
- <location filename="Overlay.cpp" line="+73"/>
+ <location filename="Overlay.cpp" line="+67"/>
<source>Color for users</source>
<translation type="unfinished">ユーザの色</translation>
</message>
@@ -8603,7 +8600,7 @@ img タグでチャットメッセージに埋め込まれた画像のダウン
<context>
<name>Plugins</name>
<message>
- <location filename="Plugins.cpp" line="+404"/>
+ <location filename="Plugins.cpp" line="+417"/>
<location line="+6"/>
<source>Downloaded new or updated plugin to %1.</source>
<translation type="unfinished">更新されたプラグインを %1 にダウンロードしました。</translation>
@@ -9312,7 +9309,7 @@ An access token is a text string, which can be used as a password for very simpl
<context>
<name>UserModel</name>
<message>
- <location filename="UserModel.cpp" line="-809"/>
+ <location filename="UserModel.cpp" line="-811"/>
<source>This is a user connected to the server. The icon to the left of the user indicates whether or not they are talking:</source>
<translation type="unfinished">サーバに接続しているユーザです。ユーザの左側のアイコンは彼らが話しているかどうかを意味します:</translation>
</message>
@@ -9437,7 +9434,7 @@ An access token is a text string, which can be used as a password for very simpl
<translation type="unfinished">フラグ</translation>
</message>
<message>
- <location line="+726"/>
+ <location line="+728"/>
<source>Are you sure you want to drag this channel?</source>
<translation type="unfinished">本当にこのチャンネルをドラッグしますか ?</translation>
</message>
diff --git a/src/mumble/mumble_pl.ts b/src/mumble/mumble_pl.ts
index 761a70a99..681262bad 100644
--- a/src/mumble/mumble_pl.ts
+++ b/src/mumble/mumble_pl.ts
@@ -4,516 +4,506 @@
<context>
<name>ACLEditor</name>
<message>
- <location filename="ACLEditor.ui" line="411"/>
+ <location filename="ACLEditor.ui"/>
<source>Active ACLs</source>
<translation>Aktywne reguły ACL</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="513"/>
+ <location/>
<source>Context</source>
<translation>Kontekst</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="554"/>
+ <location/>
<source>User/Group</source>
<translation>Użytkownik / Grupa</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="579"/>
+ <location/>
<source>This controls which group of users this entry applies to.&lt;br /&gt;Note that the group is evaluated in the context of the channel the entry is used in. For example, the default ACL on the Root channel gives &lt;i&gt;Write&lt;/i&gt; permission to the &lt;i&gt;admin&lt;/i&gt; group. This entry, if inherited by a channel, will give a user write privileges if he belongs to the &lt;i&gt;admin&lt;/i&gt; group in that channel, even if he doesn&apos;t belong to the &lt;i&gt;admin&lt;/i&gt; group in the channel where the ACL originated.&lt;br /&gt;If a group name starts with a &apos;!&apos;, its membership is negated, and if it starts with a &apos;~&apos;, it is evaluated in the channel the ACL was defined in, rather than the channel the ACL is active in.&lt;br /&gt;If a group name starts with a &apos;#&apos;, it is interpreted as an access token. Users must have entered whatever follows the &apos;#&apos; in their list of access tokens to match. This can be used for very simple password access to channels for non-authenticated users.&lt;br /&gt;If a group name starts with a &apos;$&apos;, it will only match users whose certificate hash matches what follows the &apos;$&apos;.&lt;br /&gt;A few special predefined groups are:&lt;br /&gt;&lt;b&gt;all&lt;/b&gt; - Everyone will match.&lt;br /&gt;&lt;b&gt;auth&lt;/b&gt; - All authenticated users will match.&lt;br /&gt;&lt;b&gt;sub,a,b,c&lt;/b&gt; - User currently in a sub-channel minimum &lt;i&gt;a&lt;/i&gt; common parents, and between &lt;i&gt;b&lt;/i&gt; and &lt;i&gt;c&lt;/i&gt; channels down the chain. See the website for more extensive documentation on this one.&lt;br /&gt;&lt;b&gt;in&lt;/b&gt; - Users currently in the channel will match (convenience for &apos;&lt;i&gt;sub,0,0,0&lt;/i&gt;&apos;).&lt;br /&gt;&lt;b&gt;out&lt;/b&gt; - Users outside the channel will match (convenience for &apos;&lt;i&gt;!sub,0,0,0&lt;/i&gt;&apos;).&lt;br /&gt;Note that an entry applies to either a user or a group, not both.</source>
<translation>Kontroluje, której grupy użytkowników dotyczy dana reguła.&lt;br /&gt;Należy pamiętać, że grupa jest sprawdzana w kontekście reguł jakie są w niej używane. Na przykład, na kanale Root domyślna reguła ACL nadaje uprawnienie &lt;i&gt;Edycji ACL&lt;/i&gt; grupie &lt;i&gt;admin&lt;/i&gt;. Jeżeli ta reguła zostanie odziedziczona przez kanał, nada ona uprawnienia zapisu ACL użytkownikowi który należy do grupy &lt;i&gt;admin&lt;/i&gt; na tym kanale, nawet gdy użytkownik nie należy do grupy &lt;i&gt;admin&lt;/i&gt; na kanale z którego reguły ACL pochodzą.&lt;br /&gt;Jeżeli nazwa grupy rozpoczyna od !, członkostwo użytkownika jest negowane, a gdy rozpoczyna się od ~, reguła jest sprawdzana na kanale gdzie została zdefiniowana, zamiast na kanale w którym reguła ACL jest aktywna. Kolejność jest ważna: &lt;i&gt;!~in&lt;/i&gt; jest ważny, ale &lt;i&gt;~!in&lt;/i&gt; nie jest.&lt;br /&gt;Jest kilka pre-definiowanych grup:&lt;br /&gt;&lt;b&gt;all&lt;/b&gt; - wszyscy użytkownicy będą pasować.&lt;br /&gt;&lt;b&gt;auth&lt;/b&gt; - Wszyscy uwierzytelnieni użytkownicy będą pasować.&lt;br /&gt;&lt;b&gt;sub,a,b,c&lt;/b&gt; - Użytkownicy znajdujący się w aktualnie w pod-kanele. Zobacz dokumentacje na stronie internetowej, aby dowiedzieć się więcej o tej funkcji.&lt;br /&gt;&lt;b&gt;in&lt;/b&gt; - Użytkownicy aktualnie znajdujący się na kanale (wygodniejsza metoda w porównaniu do &lt;i&gt;sub,0,0,0&lt;/i&gt;.&lt;br /&gt;&lt;b&gt;out&lt;/b&gt; - Użytkownicy nie znajdujący się na kanale będą pasować (wygodniejsza metoda w porównaniu do &lt;i&gt;!sub,0,0,0&lt;/i&gt;).&lt;br /&gt;Pamiętaj, że wpis może dotyczyć zarówno użytkownika lub grupy, a nie obu jednocześnie.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="626"/>
+ <location/>
<source>Permissions</source>
<translation>Uprawnienia</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="560"/>
+ <location/>
<source>Group</source>
<translation>Grupa</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="251"/>
+ <location/>
<source>Members</source>
<translation>Członkowie</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="478"/>
+ <location/>
<source>&amp;Add</source>
<translation>&amp;Dodaj</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="494"/>
+ <location/>
<source>&amp;Remove</source>
<translation>&amp;Usuń</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="446"/>
+ <location/>
<source>&amp;Up</source>
<translation>W &amp;górę</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="462"/>
+ <location/>
<source>&amp;Down</source>
<translation>W &amp;dół</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="433"/>
+ <location/>
<source>Inherit ACLs</source>
<translation>Dziedzicz reguły ACL</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="538"/>
+ <location/>
<source>Applies to this channel</source>
<translation>Stosuj do tego kanału</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="525"/>
+ <location/>
<source>Applies to sub-channels</source>
<translation>Stosuj do pod-kanałów</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="589"/>
+ <location/>
<source>User ID</source>
<translation>ID Użytkownika</translation>
</message>
<message>
- <location filename="ACLEditor.cpp" line="100"/>
+ <location filename="ACLEditor.cpp" line="+100"/>
<source>Deny</source>
<translation>Zabroń</translation>
</message>
<message>
- <location filename="ACLEditor.cpp" line="102"/>
+ <location line="+2"/>
<source>Allow</source>
<translation>Zezwól</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="375"/>
+ <location filename="ACLEditor.ui"/>
<source>Remove</source>
<translation>Usuń</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="206"/>
+ <location/>
<source>Inherit</source>
<translation>Dziedzicz</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="219"/>
+ <location/>
<source>Inheritable</source>
<translation>Dziedziczny</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="235"/>
+ <location/>
<source>Inherited</source>
<translation>Odziedziczony</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="361"/>
+ <location/>
<source>Add</source>
<translation>Dodaj</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="0"/>
<source>Add to Remove</source>
<translation type="obsolete">Dodaj do usunięcia</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="126"/>
+ <location/>
<source>&amp;Groups</source>
<translation>&amp;Grupy</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="403"/>
+ <location/>
<source>&amp;ACL</source>
<translation>&amp;ACL</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="417"/>
+ <location/>
<source>List of entries</source>
<translation>Lista aktywnych reguł ACL</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="420"/>
+ <location/>
<source>This shows all the entries active on this channel. Entries inherited from parent channels will be show in italics.&lt;br /&gt;ACLs are evaluated top to bottom, meaning priority increases as you move down the list.</source>
<translation>Wyświetla wszystkie aktywne reguły na tym kanale. Pozycje odziedziczone z kanałów nadrzędnych wyświetlone są przy użyciu kursywy.&lt;br /&gt;Lista ACL przetwarzana jest od góry do dołu, oznacza to, że pozycje znajdujące się na dole listy mają wyższy priorytet.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="427"/>
+ <location/>
<source>Inherit ACL of parent?</source>
<translation>Dziedziczyć reguły ACL z kanałów nadrzędnych?</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="430"/>
+ <location/>
<source>This sets whether or not the ACL up the chain of parent channels are applied to this object. Only those entries that are marked in the parent as &quot;Apply to sub-channels&quot; will be inherited.</source>
<translation>Ustawia czy reguły ACL mają być dziedziczone z kanałów nadrzędnych. Tylko reguły, które w kanałach nadrzędnych są oznaczone jako &quot;Dotyczy pod-kanałów&quot; będą dziedziczone.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="472"/>
+ <location/>
<source>Add new entry</source>
<translation>Dodaj nową regułę</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="475"/>
+ <location/>
<source>This adds a new entry, initially set with no permissions and applying to all.</source>
<translation>Dodaje nową regułę, która początkowo nie posiada uprawnień oraz jest zastosowana dla wszystkich.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="488"/>
+ <location/>
<source>Remove entry</source>
<translation>Usuń regułę</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="491"/>
+ <location/>
<source>This removes the currently selected entry.</source>
<translation>Usuwa aktualnie wybraną regułę.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="440"/>
+ <location/>
<source>Move entry up</source>
<translation>Przenieś regułę w górę</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="0"/>
<source>Properties</source>
<translation type="obsolete">Właściwości</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="33"/>
+ <location/>
<source>Name</source>
<translation>Nazwa</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="40"/>
+ <location/>
<source>Enter the channel name here.</source>
<translation>Wprowadź tutaj nazwę kanału.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="43"/>
+ <location/>
<source>&lt;b&gt;Name&lt;/b&gt;&lt;br&gt;Enter the channel name in this field. The name has to comply with the restriction imposed by the server you are connected to.</source>
<translation>&lt;b&gt;Nazwa&lt;/b&gt;&lt;br&gt;Tutaj podaj nazwę kanału. Nazwa musi zgadzać się z ograniczeniem narzuconym przez serwer, do którego jesteś podłączony.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="50"/>
+ <location/>
<source>Description</source>
<translation>Opis</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="57"/>
+ <location/>
<source>Password</source>
<translation>Hasło</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="64"/>
+ <location/>
<source>Enter the channel password here.</source>
<translation>Wprowadź tutaj hasło dla kanału.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="67"/>
+ <location/>
<source>&lt;b&gt;Password&lt;/b&gt;&lt;br&gt;This field allows you to easily set and change the password of a channel. In the background it uses Mumble&apos;s access tokens feature. To allow more fine grained and powerful access control directly use ACLs and groups instead (&lt;i&gt;Advanced configuration&lt;/i&gt; has to be checked to be able to see these settings).</source>
<translation>&lt;b&gt;Hasło&lt;/b&gt;&lt;br&gt;To pole pozwala na łatwe ustawienie i zmianę hasła kanału. W tle, używa funkcji &quot;Hasła dostępu&quot;. Aby zezwolić na lepszy dostęp używaj bezpośrednio edytora ACL oraz Grup. Musisz włączyć &lt;i&gt;Zaawansowane&lt;/i&gt; by widzieć te opcje.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="74"/>
+ <location/>
<source>Check to create a temporary channel.</source>
<translation>Zaznacz tę opcję, aby utworzyć kanał tymczasowy.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="77"/>
+ <location/>
<source>&lt;b&gt;Temporary&lt;/b&gt;&lt;br&gt;
When checked the channel created will be marked as temporary. This means when the last player leaves it the channel will be automatically deleted by the server.</source>
<translation>&lt;b&gt;Tymczasowy&lt;/b&gt;&lt;br&gt;
Po włączeniu tej opcji kanał, który utworzysz będzie zaznaczony jako tymczasowy. Oznacza to, że jeśli ostatni użytkownik opuści ten kanał to zostanie on automatycznie usunięty przez serwer.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="81"/>
+ <location/>
<source>Temporary</source>
<translation>Tymczasowy</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="94"/>
+ <location/>
<source>Channel positioning facility value</source>
<translation>Pozycja kanału na liście</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="97"/>
+ <location/>
<source>&lt;b&gt;Position&lt;/b&gt;&lt;br/&gt;
This value enables you to change the way Mumble arranges the channels in the tree. A channel with a higher &lt;i&gt;Position&lt;/i&gt; value will always be placed below one with a lower value and the other way around. If the &lt;i&gt;Position&lt;/i&gt; value of two channels is equal they will get sorted alphabetically by their name.</source>
<translation>&lt;b&gt;Pozycja&lt;/b&gt;&lt;br/&gt;
Ta wartość pozwala na zmianę sposobu w jaki są sortowane kanały. Kanał z wyższą wartością&lt;i&gt;Pozycja&lt;/i&gt; będzie umieszczony poniżej niższej wartości i na odwrót. Jeżeli &lt;i&gt;Pozycja&lt;/i&gt; dwóch kanałów jest identyczna zostaną one posortowane alfabetycznie.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="108"/>
+ <location/>
<source>Position</source>
<translation>Pozycja</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="159"/>
+ <location/>
<source>&lt;b&gt;Group&lt;/b&gt;&lt;br&gt;
These are all the groups currently defined for the channel. To create a new group, just type in the name and press enter.</source>
<translation>&lt;b&gt;Grupa&lt;/b&gt;&lt;br&gt;Znajdują się tutaj wszystkie grupy aktualnie zdefiniowane dla tego kanału. By utworzyć nową grupę, wpisz jej nazwę i naciśnij enter.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="170"/>
+ <location/>
<source>Add new group</source>
<translation>Dodaj nową grupę</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="173"/>
+ <location/>
<source>&lt;b&gt;Add&lt;/b&gt;&lt;br/&gt;
Add a new group.</source>
<translation>&lt;b&gt;Dodaj&lt;/b&gt;&lt;br/&gt;Dodaje nową grupę.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="187"/>
+ <location/>
<source>&lt;b&gt;Remove&lt;/b&gt;&lt;br&gt;This removes the currently selected group. If the group was inherited, it will not be removed from the list, but all local information about the group will be cleared.</source>
<translation>&lt;b&gt;Usuń&lt;/b&gt;&lt;br&gt;Usuwa aktualnie wybraną grupę. Jeśli grupa była dziedziczona, to nie zostanie usunięta z listy, ale wszystkie lokalne informacje o tej grupie zostaną wyczyszczone.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="203"/>
+ <location/>
<source>&lt;b&gt;Inherit&lt;/b&gt;&lt;br&gt;This inherits all the members in the group from the parent, if the group is marked as &lt;i&gt;Inheritable&lt;/i&gt; in the parent channel.</source>
<translation>&lt;b&gt;Dziedzicz&lt;/b&gt;&lt;br&gt;Dziedziczy wszystkich członków z grupy nadrzędnej, jeżeli grupa jest oznaczona jako &lt;i&gt;Dziedziczna&lt;/i&gt; w kanale nadrzędnym.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="216"/>
+ <location/>
<source>&lt;b&gt;Inheritable&lt;/b&gt;&lt;br&gt;This makes this group inheritable to sub-channels. If the group is non-inheritable, sub-channels are still free to create a new group with the same name.</source>
<translation>&lt;b&gt;Dziedziczna&lt;/b&gt;&lt;br&gt;Umożliwia dziedziczenie uprawnień grupy w pod-kanałach. Jeżeli grupa nie pozwala na dziedziczenie, to w pod-kanałach można tworzyć grupy o tych samych nazwach.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="232"/>
+ <location/>
<source>&lt;b&gt;Inherited&lt;/b&gt;&lt;br&gt;This indicates that the group was inherited from the parent channel. You cannot edit this flag, it&apos;s just for information.</source>
<translation>&lt;b&gt;Odziedziczona&lt;/b&gt;&lt;br&gt;Wskazuje czy grupa została odziedziczona z kanału nadrzędnego. Nie możesz edytować tej flagi, to jest tylko informacja.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="261"/>
+ <location/>
<source>Inherited members</source>
<translation>Odziedziczeni członkowie</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="271"/>
+ <location/>
<source>Contains the list of members added to the group by this channel.</source>
<translation>Zawiera listę członków dodanych do grupy na tym kanale.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="274"/>
+ <location/>
<source>&lt;b&gt;Members&lt;/b&gt;&lt;br&gt;
This list contains all members that were added to the group by the current channel. Be aware that this does not include members inherited by higher levels of the channel tree. These can be found in the &lt;i&gt;Inherited members&lt;/i&gt; list. To prevent this list to be inherited by lower level channels uncheck &lt;i&gt;Inheritable&lt;/i&gt; or manually add the members to the &lt;i&gt;Excluded members&lt;/i&gt; list.</source>
<translation>&lt;b&gt;Członkowie&lt;/b&gt;&lt;br&gt;Ta lista zawiera wszystkich członków którzy zostali dodani do grupy na tym kanale. Należy pamiętać, że dane te nie obejmują użytkowników dziedziczonych z kanałów nadrzędnych. Znajdują się oni na liście &lt;i&gt;Odziedziczeni członkowie&lt;/i&gt;. By zapobiegać dziedziczeniu tej listy przez pod-kanały odznacz &lt;i&gt;Dziedziczna&lt;/i&gt; lub manualnie dodaj członków do listy &lt;i&gt;Wykluczeni członkowie&lt;/i&gt;.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="282"/>
+ <location/>
<source>Contains a list of members whose group membership will not be inherited from the parent channel.</source>
<translation>Zawiera listę członków których członkostwo w grupie nie będzie dziedziczone z kanałów nadrzędnych.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="285"/>
+ <location/>
<source>&lt;b&gt;Excluded members&lt;/b&gt;&lt;br&gt;
Contains a list of members whose group membership will not be inherited from the parent channel.</source>
<translation>&lt;b&gt;Wykluczeni członkowie&lt;/b&gt;&lt;br&gt;Zawiera listę członków których członkowsto w grupie nie będzie dziedziczone z kanałów nadrzędnych.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="293"/>
+ <location/>
<source>Contains the list of members inherited by other channels.</source>
<translation>Zawiera listę członków odziedziczonych z innych kanałów.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="296"/>
+ <location/>
<source>&lt;b&gt;Inherited members&lt;/b&gt;&lt;br&gt;
Contains the list of members inherited by the current channel. Uncheck &lt;i&gt;Inherit&lt;/i&gt; to prevent inheritance from higher level channels.</source>
<translation>&lt;b&gt;Odziedziczeni członkowie&lt;/b&gt;&lt;br&gt;Zawiera listę członków odziedziczonych z innych kanałów. Odznacz &lt;i&gt;Dziedzicz&lt;/i&gt; by zapobiec dziedziczeniu z kanałów nadrzędnych.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="313"/>
+ <location/>
<source>Type in the name of a user you wish to add to the group and click Add.</source>
<translation>Wpisz nazwę użytkownika którego chciałbyś dodać do grupy i kliknij Dodaj.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="345"/>
+ <location/>
<source>Type in the name of a user you wish to remove from the group and click Add.</source>
<translation>Wpisz nazwę użytkownika którego chciałbyś osunąć z grupy i kliknij Usuń.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="382"/>
+ <location/>
<source>Exclude</source>
<translation>Wyklucz</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="389"/>
+ <location/>
<source>Excluded members</source>
<translation>Wykluczeni członkowie</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="443"/>
+ <location/>
<source>This moves the entry up in the list. As entries are evaluated in order, this may change the effective permissions of users. You cannot move an entry above an inherited entry, if you really need that you&apos;ll have to duplicate the inherited entry.</source>
<translation>Przenosi regułę w górę listy. Jako że reguły są sprawdzane w kolejności, więc taka zmiana może mieć wpływ na uprawnienia użytkowników. Nie możesz przenieść reguły ponad regułę z której są dziedziczone ACL, jeżeli naprawdę tego potrzebujesz duplikuj daną regułę.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="456"/>
+ <location/>
<source>Move entry down</source>
<translation>Przenieś regułę w dół</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="459"/>
+ <location/>
<source>This moves the entry down in the list. As entries are evaluated in order, this may change the effective permissions of users.</source>
<translation>Przenosi regułę w dół listy. Jako że reguły są sprawdzane w kolejności, więc taka zmiana może mieć wpływ na uprawnienia użytkowników.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="532"/>
+ <location/>
<source>Entry should apply to this channel.</source>
<translation>Reguła powinna być stosowana do tego kanału.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="535"/>
+ <location/>
<source>This makes the entry apply to this channel.</source>
<translation>Sprawia, że reguła dotyczy tego kanału.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="519"/>
+ <location/>
<source>Entry should apply to sub-channels.</source>
<translation>Reguła powinna być stosowana do pod-kanałów.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="522"/>
+ <location/>
<source>This makes the entry apply to sub-channels of this channel.</source>
<translation>Sprawia, że reguła dotyczy pod-kanałów tego kanału.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="576"/>
+ <location/>
<source>Group this entry applies to</source>
<translation>Reguły dotyczą</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="0"/>
<source>This controls which group of users this entry applies to.&lt;br /&gt;Note that the group is evaluated in the context of the channel the entry is used in. For example, the default ACL on the Root channel gives &lt;i&gt;Write&lt;/i&gt; permission to the &lt;i&gt;admin&lt;/i&gt; group. This entry, if inherited by a channel, will give a user write privileges if he belongs to the &lt;i&gt;admin&lt;/i&gt; group in that channel, even if he doesn&apos;t belong to the &lt;i&gt;admin&lt;/i&gt; group in the channel where the ACL originated.&lt;br /&gt;If a group name starts with a !, its membership is negated, and if it starts with a ~, it is evaluated in the channel the ACL was defined in, rather than the channel the ACL is active in. Order is important; &lt;i&gt;!~in&lt;/i&gt; is valid, but &lt;i&gt;~!in&lt;/i&gt; is not.&lt;br /&gt;A few special predefined groups are:&lt;br /&gt;&lt;b&gt;all&lt;/b&gt; - Everyone will match.&lt;br /&gt;&lt;b&gt;auth&lt;/b&gt; - All authenticated users will match.&lt;br /&gt;&lt;b&gt;sub,a,b,c&lt;/b&gt; - User currently in a sub-channel minimum &lt;i&gt;a&lt;/i&gt; common parents, and between &lt;i&gt;b&lt;/i&gt; and &lt;i&gt;c&lt;/i&gt; channels down the chain. See the website for more extensive documentation on this one.&lt;br /&gt;&lt;b&gt;in&lt;/b&gt; - Users currently in the channel will match (convenience for &lt;i&gt;sub,0,0,0&lt;/i&gt;).&lt;br /&gt;&lt;b&gt;out&lt;/b&gt; - Users outside the channel will match (convenience for &lt;i&gt;!sub,0,0,0&lt;/i&gt;).&lt;br /&gt;Note that an entry applies to either a user or a group, not both.</source>
<translation type="obsolete">Kontroluje, której grupy użytkowników dotyczy dana reguła.&lt;br /&gt;Należy pamiętać, że grupa jest sprawdzana w kontekście reguł jakie są w niej używane. Na przykład, na kanale Root domyślna reguła ACL nadaje uprawnienie &lt;i&gt;Zapisz ACL&lt;/i&gt; grupie &lt;i&gt;admin&lt;/i&gt;. Jeżeli ta reguła zostanie odziedziczona przez kanał, nada ona uprawnienia zapisu ACL użytkownikowi który należy do grupy &lt;i&gt;admin&lt;/i&gt; na tym kanale, nawet gdy użytkownik nie należy do grupy &lt;i&gt;admin&lt;/i&gt; na kanale z którego reguły ACL pochodzą.&lt;br /&gt;Jeżeli nazwa grupy rozpoczyna od !, członkostwo użytkownika jest negowane, a gdy rozpoczyna się od ~, reguła jest sprawdzana na kanale gdzie została zdefiniowana, zamiast na kanale w którym reguła ACL jest aktywna. Kolejność jest ważna: &lt;i&gt;!~in&lt;/i&gt; jest ważny, ale &lt;i&gt;~!in&lt;/i&gt; nie jest.&lt;br /&gt;Jest kilka pre-definiowanych grup:&lt;br /&gt;&lt;b&gt;all&lt;/b&gt; - wszyscy użytkownicy będą pasować.&lt;br /&gt;&lt;b&gt;auth&lt;/b&gt; - Wszyscy uwierzytelnieni użytkownicy będą pasować.&lt;br /&gt;&lt;b&gt;sub,a,b,c&lt;/b&gt; - Użytkownicy znajdujący się w aktualnie w pod-kanele. Zobacz dokumentacje na stronie internetowej, aby dowiedzieć się więcej o tej funkcji.&lt;br /&gt;&lt;b&gt;in&lt;/b&gt; - Użytkownicy aktualnie znajdujący się na kanale (wygodniejsza metoda w porównaniu do &lt;i&gt;sub,0,0,0&lt;/i&gt;.&lt;br /&gt;&lt;b&gt;out&lt;/b&gt; - Użytkownicy nie znajdujący się na kanale będą pasować (wygodniejsza metoda w porównaniu do &lt;i&gt;!sub,0,0,0&lt;/i&gt;).&lt;br /&gt;Pamiętaj, że wpis może dotyczyć zarówno użytkownika lub grupy, a nie obu jednocześnie.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="605"/>
+ <location/>
<source>User this entry applies to</source>
<translation>Reguła dotyczy tego użytkownika</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="608"/>
+ <location/>
<source>This controls which user this entry applies to. Just type in the user name and hit enter to query the server for a match.</source>
<translation>Kontroluje do którego użytkownika należy ta reguła. Wpisz nazwę użytkownika i naciśnij Enter by wysłać zapytanie do serwera w celu sprawdzenia poprawności nazwy użytkownika.</translation>
</message>
<message>
- <location filename="ACLEditor.cpp" line="124"/>
+ <location filename="ACLEditor.cpp" line="+22"/>
<source>Allow %1</source>
<translation>Zezwól %1</translation>
</message>
<message>
- <location filename="ACLEditor.cpp" line="115"/>
+ <location line="-9"/>
<source>Deny %1</source>
<translation>Zabroń %1</translation>
</message>
<message>
- <location filename="ACLEditor.cpp" line="54"/>
+ <location line="-61"/>
<source>Mumble - Add channel</source>
<translation>Mumble - Dodaj kanał</translation>
</message>
<message>
- <location filename="ACLEditor.cpp" line="238"/>
+ <location line="+22"/>
+ <location line="+162"/>
<source>Failed: Invalid channel</source>
<translation>Niepowodzenie: Niepoprawny kanał</translation>
</message>
<message>
- <location filename="ACLEditor.cpp" line="88"/>
+ <location line="-150"/>
<source>Mumble - Edit %1</source>
<translation>Mumble - Edycja %1</translation>
</message>
<message>
- <location filename="ACLEditor.cpp" line="125"/>
+ <location line="+37"/>
<source>This grants the %1 privilege. If a privilege is both allowed and denied, it is denied.&lt;br /&gt;%2</source>
<translation>Przydziela uprawnienie: &lt;i&gt;%1&lt;/i&gt;. Jeżeli uprawnienie jest jednocześnie dozwolone i zabronione, to jest zabronione.&lt;br /&gt;%2</translation>
</message>
<message>
- <location filename="ACLEditor.cpp" line="116"/>
+ <location line="-9"/>
<source>This revokes the %1 privilege. If a privilege is both allowed and denied, it is denied.&lt;br /&gt;%2</source>
<translation>Odbiera uprawnienie: &lt;i&gt;%1&lt;/i&gt;. Jeżeli uprawnienie jest jednocześnie dozwolone i zabronione, to jest zabronione.&lt;br /&gt;%2</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="156"/>
+ <location filename="ACLEditor.ui"/>
<source>List of groups</source>
<translation>Lista zdefiniowanych grup</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="0"/>
<source>This is all the groups currently defined for the channel. To create a new group, just type in the name and press enter.</source>
<translation type="obsolete">To jest lista wszystkich grup zdefiniowanych dla tego kanału. Aby utworzyć nową grupę wpisz jej nazwę i naciśnij Enter.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="184"/>
+ <location/>
<source>Remove selected group</source>
<translation>Usuń wybraną grupę</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="0"/>
<source>This removes the currently selected group. If the group was inherited, it will not be removed from the list, but all local information about the group will be cleared.</source>
<translation type="obsolete">Usuwa aktualnie wybrana grupę. Jeśli grupa była dziedziczona, to nie zostanie usunięta z listy, ale wszystkie lokalne informacje o tej grupie zostaną wyczyszczone.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="200"/>
+ <location/>
<source>Inherit group members from parent</source>
<translation>Dziedzicz członków grupy z grupy nadrzędnej</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="0"/>
<source>This inherits all the members in the group from the parent, if the group is marked as &lt;i&gt;Inheritable&lt;/i&gt; in the parent channel.</source>
<translation type="obsolete">Dziedziczy wszystkich członków z grupy nadrzędnej, jeżeli grupa jest oznaczona jako .&lt;i&gt;Dziedziczna&lt;/i&gt; w kanale nadrzędnym.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="213"/>
+ <location/>
<source>Make group inheritable to sub-channels</source>
<translation>Umożliw dziedziczenie grupy w pod-kanałach</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="0"/>
<source>This makes this group inheritable to sub-channels. If the group is non-inheritable, sub-channels are still free to create a new group with the same name.</source>
<translation type="obsolete">Umożliwia dziedziczenie uprawnień grupy w pod-kanałach. Jeżeli grupa nie pozwala na dziedziczenie, to w pod-kanałach można tworzyć grupy o tych samych nazwach.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="229"/>
+ <location/>
<source>Group was inherited from parent channel</source>
<translation>Grupa została odziedziczona z kanału nadrzędnego</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="0"/>
<source>This indicates that the group was inherited from the parent channel. You cannot edit this flag, it&apos;s just for information.</source>
<translation type="obsolete">Wskazuje czy grupa została odziedziczona z kanału nadrzędnego. Nie możesz edytować tej flagi, to jest tylko informacja.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="310"/>
+ <location/>
<source>Add member to group</source>
<translation>Dodaj członka do grupy</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="342"/>
+ <location/>
<source>Remove member from group</source>
<translation>Usuń członka z grupy</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="0"/>
<source>Mumble - Edit ACL for %1</source>
<translation type="obsolete">Mumble - edycja reguł ACL dla kanału %1</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="14"/>
+ <location/>
<source>Dialog</source>
<translation>Dialog</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="0"/>
<source>Type in the name of a player you wish to add to the group and click Add.</source>
<translation type="obsolete">Wpisz nazwę użytkownika, którego chcesz dodać do grupy i kliknij Dodaj.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="0"/>
<source>Type in the name of a player you wish to remove from the group and click Add.</source>
<translation type="obsolete">Wpisz nazwę użytkownika, którego chcesz usunąć z grupy i kliknij Dodaj.</translation>
</message>
<message>
- <location filename="ACLEditor.ui" line="24"/>
+ <location/>
<source>&amp;Properties</source>
<translation>&amp;Właściwości</translation>
</message>
@@ -521,12 +511,12 @@ Contains the list of members inherited by the current channel. Uncheck &lt;i&gt;
<context>
<name>ALSAAudioInput</name>
<message>
- <location filename="ALSAAudio.cpp" line="363"/>
+ <location filename="ALSAAudio.cpp" line="+363"/>
<source>Opening chosen ALSA Input failed: %1</source>
<translation>Otwieranie wybranego Wejścia ALSA nie powiodło się: %1</translation>
</message>
<message>
- <location filename="ALSAAudio.cpp" line="172"/>
+ <location line="-191"/>
<source>Default ALSA Card</source>
<translation>Domyślna karta ALSA</translation>
</message>
@@ -534,12 +524,12 @@ Contains the list of members inherited by the current channel. Uncheck &lt;i&gt;
<context>
<name>ALSAAudioOutput</name>
<message>
- <location filename="ALSAAudio.cpp" line="498"/>
+ <location line="+326"/>
<source>Opening chosen ALSA Output failed: %1</source>
<translation>Otwieranie wybranego wyjścia ALSA nie powiodło się: %1</translation>
</message>
<message>
- <location filename="ALSAAudio.cpp" line="173"/>
+ <location line="-325"/>
<source>Default ALSA Card</source>
<translation>Domyślna karta ALSA</translation>
</message>
@@ -547,172 +537,167 @@ Contains the list of members inherited by the current channel. Uncheck &lt;i&gt;
<context>
<name>ASIOConfig</name>
<message>
- <location filename="ASIOInput.ui" line="20"/>
+ <location filename="ASIOInput.ui"/>
<source>Device selection</source>
<translation>Wybieranie urządzenia</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="81"/>
+ <location/>
<source>Capabilities</source>
<translation>Możliwości</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="107"/>
+ <location/>
<source>Buffer size</source>
<translation>Rozmiar bufora</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="133"/>
+ <location/>
<source>This will configure the input channels for ASIO. Make sure you select at least one channel as microphone and speaker. &lt;i&gt;Microphone&lt;/i&gt; should be where your microphone is attached, and &lt;i&gt;Speaker&lt;/i&gt; should be a channel that samples &apos;&lt;i&gt;What you hear&lt;/i&gt;&apos;.&lt;br /&gt;For example, on the Audigy 2 ZS, a good selection for Microphone would be &apos;&lt;i&gt;Mic L&lt;/i&gt;&apos; while Speaker should be &apos;&lt;i&gt;Mix L&lt;/i&gt;&apos; and &apos;&lt;i&gt;Mix R&lt;/i&gt;&apos;.</source>
<translation>Konfiguracja wejściowych kanałów dla ASIO. Upewnij się, że wybierasz przynajmniej jeden kanał jako mikrofon oraz jeden jako głośniki czy słuchawki. Kanał &lt;i&gt;Mikrofon&lt;/i&gt; powinien być ustawiony na kanał pod którym masz podłączony mikrofon, a dla &lt;i&gt;Głośniki&lt;/i&gt; kanał który przetwarza &quot;&lt;i&gt;to co słyszysz&lt;/i&gt;&quot;. Na przykład dla Audigy 2 ZS dobrym wyborem dla Mikrofonu będzie &quot;&lt;i&gt;Mic L&lt;/i&gt;&quot; a dla Głośników &quot;&lt;i&gt;Mix L&lt;/i&gt;&quot; i &quot;&lt;i&gt;Mix R&lt;/i&gt;&quot;.</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="136"/>
+ <location/>
<source>Channels</source>
<translation>Kanały</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="130"/>
+ <location/>
<source>Configure input channels</source>
<translation>Konfiguruj kanały wejścia</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="42"/>
+ <location/>
<source>Device to use for microphone</source>
<translation>Urządzenie do którego jest podłączony mikrofon</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="45"/>
+ <location/>
<source>This chooses what device to query. You still need to actually query the device and select which channels to use.</source>
<translation>Wybiera które urządzenie sprawdzić. Nadal musisz sprawdzić urządzenie oraz wybrać kanały do wykorzystania.</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="26"/>
+ <location/>
<source>Device</source>
<translation>Urządzenie</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="52"/>
+ <location/>
<source>Query selected device</source>
<translation>Sprawdź wybrane urządzenie</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="55"/>
+ <location/>
<source>This queries the selected device for channels. Be aware that many ASIO drivers are buggy to the extreme, and querying them might cause a crash of either the application or the system.</source>
<translation>Wykrywa ilość kanałów obsługiwanych przez wybrane urządzenie. &lt;b&gt;Uwaga:&lt;/b&gt; wiele sterowników ASIO jest tak wadliwych, że sprawdzanie ich może spowodować zawieszenie się programu lub całego systemu.</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="65"/>
+ <location/>
<source>Configure selected device</source>
<translation>Konfiguruj wybrane urządzenie</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="68"/>
+ <location/>
<source>This configures the selected device. Be aware that many ASIO drivers are buggy to the extreme, and querying them might cause a crash of either the application or the system.</source>
<translation>Konfiguruje wybrane urządzenie. &lt;b&gt;Uwaga:&lt;/b&gt; wiele sterowników ASIO jest tak wadliwych, że sprawdzanie ich może spowodować zawieszenie się programu lub całego systemu.</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="87"/>
+ <location/>
<source>Driver name</source>
<translation>Nazwa sterownika</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="0"/>
<source>Buffersize</source>
<translation type="obsolete">Rozmiar bufora</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="157"/>
+ <location/>
<source>Microphone</source>
<translation>Mikrofon</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="305"/>
+ <location/>
<source>&lt;-</source>
<translation>&lt;-</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="292"/>
+ <location/>
<source>-&gt;</source>
<translation>-&gt;</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="243"/>
+ <location/>
<source>Unused</source>
<translation>Nieużywany</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="329"/>
+ <location/>
<source>Speakers</source>
<translation>Głośniki</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="0"/>
<source>%1 (ver %2)</source>
<translation type="obsolete">%1 (wersja %2)</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="0"/>
<source>%1 ms -&gt; %2 ms (%3 ms resolution) %4Hz</source>
<translation type="obsolete">%1 ms -&gt; %2 ms (%3 ms rozdzielczość) %4Hz</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="0"/>
<source>%1 ms -&gt; %2 ms (%3 ms resolution) %4Hz -- Unusable</source>
<translation type="obsolete">%1 ms -&gt; %2 ms (%3 ms rozdzielczość) %4Hz -- Niemożliwy do wykorzystania</translation>
</message>
<message>
- <location filename="ASIOInput.cpp" line="224"/>
+ <location filename="ASIOInput.cpp" line="+224"/>
<source>%1 (version %2)</source>
<translation>%1 (wersja %2)</translation>
</message>
<message>
- <location filename="ASIOInput.cpp" line="227"/>
+ <location line="+3"/>
<source>%1 -&gt; %2 samples buffer, with %3 sample resolution (%4 preferred) at %5 Hz</source>
<translation>%1 -&gt; %2 bufor próbkowania, o rozdzielczości %3 (preferowana %4) na %5 Hz</translation>
</message>
<message>
- <location filename="ASIOInput.cpp" line="0"/>
<source>Mumble</source>
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location filename="ASIOInput.cpp" line="296"/>
+ <location line="+42"/>
+ <location line="+27"/>
<source>ASIO Initialization failed: %1</source>
<translation>Inizjalizacja ASIO nie powiodła się: %1</translation>
</message>
<message>
- <location filename="ASIOInput.cpp" line="300"/>
+ <location line="-23"/>
+ <location line="+27"/>
<source>Failed to instantiate ASIO driver</source>
<translation>Wytwarzanie sterownika ASIO nie powiodło się</translation>
</message>
<message>
- <location filename="ASIOInput.cpp" line="337"/>
+ <location line="+37"/>
<source>ASIO</source>
<translation>ASIO</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="58"/>
+ <location filename="ASIOInput.ui"/>
<source>&amp;Query</source>
<translation>&amp;Sprawdź</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="71"/>
+ <location/>
<source>&amp;Configure</source>
<translation>&amp;Konfiguruj</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="14"/>
+ <location/>
<source>Form</source>
<translation>Formularz</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="0"/>
<source>TextLabel</source>
<translation type="obsolete">Tekst</translation>
</message>
<message>
- <location filename="ASIOInput.ui" line="0"/>
<source>This will configure the input channels for ASIO. Make sure you select at least one channel as microphone and speaker. &lt;i&gt;Microphone&lt;/i&gt; should be where your microphone is attached, and &lt;i&gt;Speaker&lt;/i&gt; should be a channel that samples &lt;i&gt;What you hear&lt;/i&gt;.&lt;br /&gt;For example, on the Audigy 2 ZS, a good selection for Microphone would be &lt;i&gt;Mic L&lt;/i&gt; while Speaker should be &lt;i&gt;Mix L&lt;/i&gt; and &lt;i&gt;Mix R&lt;/i&gt;.</source>
<translation type="obsolete">Tutaj znajduje się konfiguracja kanałów wejściowych ASIO. Upewnij się, że wybierzesz przynajmniej jeden kanał mikrofonu i głośnika.&lt;br /&gt; &lt;i&gt;Mikrofon&lt;/i&gt;powinien być tam gdzie podłączyłeś swój mikrofon, a &lt;i&gt;Głośniki&lt;/i&gt; powinny być w kanałach z &lt;i&gt;Co słyszysz&lt;/i&gt;.&lt;br /&gt;Dla przykładu: Audigy 2 ZS dobrym wyborem dla mikrofonu był &lt;i&gt;Mic L&lt;/i&gt; a głośniki powinny być w &lt;i&gt;MixR&lt;i&gt; i&lt;/i&gt; MixL&lt;/i&gt;.</translation>
</message>
@@ -720,17 +705,16 @@ Contains the list of members inherited by the current channel. Uncheck &lt;i&gt;
<context>
<name>ASIOInput</name>
<message>
- <location filename="ASIOInput.ui" line="0"/>
<source>Mumble</source>
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location filename="ASIOInput.cpp" line="418"/>
+ <location filename="ASIOInput.cpp" line="+80"/>
<source>You need to select at least one microphone and one speaker source to use ASIO. If you just need microphone sampling, use DirectSound.</source>
<translation>Musisz wybrać przynajmniej jeden mikrofon oraz jedno źródło głośnika, aby używać ASIO. Jeżeli potrzebujesz tylko próbkowania mikrofonu używaj DirectSound.</translation>
</message>
<message>
- <location filename="ASIOInput.cpp" line="520"/>
+ <location line="+103"/>
<source>Opening selected ASIO device failed. No input will be done.</source>
<translation>Otwieranie wybranego urządzenia ASIO nie powiodło się. Żadne wejście nie jest gotowe.</translation>
</message>
@@ -738,27 +722,27 @@ Contains the list of members inherited by the current channel. Uncheck &lt;i&gt;
<context>
<name>AboutDialog</name>
<message>
- <location filename="About.cpp" line="63"/>
+ <location filename="About.cpp" line="+63"/>
<source>&amp;About Mumble</source>
<translation>&amp;O Mumble</translation>
</message>
<message>
- <location filename="About.cpp" line="64"/>
+ <location line="+1"/>
<source>&amp;License</source>
<translation>&amp;Licencja</translation>
</message>
<message>
- <location filename="About.cpp" line="66"/>
+ <location line="+2"/>
<source>OK</source>
<translation>OK</translation>
</message>
<message>
- <location filename="About.cpp" line="37"/>
+ <location line="-29"/>
<source>About Mumble</source>
<translation>O Mumble</translation>
</message>
<message>
- <location filename="About.cpp" line="58"/>
+ <location line="+16"/>
<source>&lt;h3&gt;Mumble (%1)&lt;/h3&gt;&lt;p&gt;Copyright %3 Thorvald Natvig&lt;br /&gt;slicer@users.sourceforge.net&lt;/p&gt;&lt;p&gt;&lt;b&gt;A voice-chat utility for gamers&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;tt&gt;&lt;a href=&quot;%2&quot;&gt;%2&lt;/a&gt;&lt;/tt&gt;&lt;/p&gt;</source>
<translation>&lt;h3&gt;Mumble v%1&lt;/h3&gt;&lt;p&gt;Copyright %3 Thorvald Natvig&lt;br /&gt;slicer@users.sourceforge.net&lt;/p&gt;&lt;p&gt;&lt;b&gt;Polskie tłumaczenie:&lt;/b&gt;&lt;br&gt;Bartek Sumowski&lt;br /&gt; &lt;a href=http://mumble.stranded.eu&gt;mumble.stranded.eu&lt;/a&gt;&lt;br&gt; Michał Żukowski&lt;br&gt;&lt;a href=http://isports.pl/~zuko&gt;zuko.isports.pl&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Komunikator głosowy dla graczy&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;tt&gt;&lt;a href=&quot;%2&quot;&gt;%2&lt;/a&gt;&lt;/tt&gt;&lt;/p&gt;</translation>
</message>
@@ -766,22 +750,21 @@ Contains the list of members inherited by the current channel. Uncheck &lt;i&gt;
<context>
<name>AboutSpeexDialog</name>
<message>
- <location filename="About.cpp" line="84"/>
+ <location line="+25"/>
<source>&lt;h3&gt;About Speex&lt;/h3&gt;&lt;p&gt;&lt;tt&gt;&lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/tt&gt;&lt;/p&gt;&lt;p&gt;This program uses SpeexDSP.&lt;/p&gt;&lt;p&gt;Speex is used for echo cancellation, noise&lt;br /&gt;filtering and voice activity detection.&lt;/p&gt;</source>
<translation>&lt;h3&gt;O Speex&lt;/h3&gt;&lt;p&gt;&lt;tt&gt;&lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;&lt;/tt&gt;&lt;/p&gt;&lt;p&gt;Ten program używa SpeexDSP.&lt;/p&gt;&lt;p&gt;Speex używany jest do usuwania echa, szumu,&lt;br /&gt;filtrowania oraz detekcji mowy.&lt;/p&gt;</translation>
</message>
<message>
- <location filename="About.cpp" line="86"/>
+ <location line="+8"/>
<source>OK</source>
<translation>OK</translation>
</message>
<message>
- <location filename="About.cpp" line="74"/>
+ <location line="-12"/>
<source>About Speex</source>
<translation>O Speex</translation>
</message>
<message>
- <location filename="About.cpp" line="0"/>
<source>&lt;h3&gt;About Speex&lt;/h3&gt;&lt;p&gt;&lt;tt&gt;&lt;a href=&quot;%2&quot;&gt;%2&lt;/a&gt;&lt;/tt&gt;&lt;/p&gt;&lt;p&gt;This program uses Speex version %1&lt;/p&gt;&lt;p&gt;Speex is used for echo cancellation, noise&lt;br /&gt;filtering, voice activity detection and speech&lt;br /&gt;compression.&lt;/p&gt;</source>
<translation type="obsolete">&lt;h3&gt;O Speex&lt;/h3&gt;&lt;p&gt;&lt;tt&gt;&lt;a href=&quot;%2&quot;&gt;%2&lt;/a&gt;&lt;/tt&gt;&lt;/p&gt;&lt;p&gt;Program używa kodeka Speex w wersji %1&lt;/p&gt;&lt;p&gt;Speex jest używany do usuwania akustycznego echa, filtrowania szumów, detekcji aktywacji głosowej, kompresji.&lt;/p&gt;</translation>
</message>
@@ -789,412 +772,403 @@ Contains the list of members inherited by the current channel. Uncheck &lt;i&gt;
<context>
<name>AudioInput</name>
<message>
- <location filename="AudioInput.ui" line="14"/>
+ <location filename="AudioInput.ui"/>
<source>Form</source>
<translation>Formularz</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="20"/>
+ <location/>
<source>Interface</source>
<translation>Interfejs</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="26"/>
+ <location/>
<source>System</source>
<translation>System</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="42"/>
+ <location/>
<source>Input method for audio</source>
<translation>Metoda wejścia dźwięku</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="45"/>
+ <location/>
<source>&lt;b&gt;This is the input method to use for audio.&lt;/b&gt;&lt;br /&gt;Most likely you want to use DirectSound.</source>
<translation>&lt;b&gt;Metoda wejścia dźwięku.&lt;/b&gt;&lt;br /&gt;Najprawdopodobniej chcesz korzystać z DirectSound.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="68"/>
+ <location/>
<source>Device</source>
<translation>Urządzenie</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="84"/>
+ <location/>
<source>Input device for audio</source>
<translation>Wejściowe urządzenie audio</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="87"/>
+ <location/>
<source>&lt;b&gt;This is the input device to use for audio.&lt;/b&gt;</source>
<translation>&lt;b&gt;Jest to wejściowe urządzenie audio.&lt;/b&gt;</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="0"/>
<source>Cancel Echo</source>
<translation type="obsolete">Usuwanie akustycznego echa</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="141"/>
+ <location/>
<source>Transmission</source>
<translation>Transmisja</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="147"/>
+ <location/>
<source>&amp;Transmit</source>
<translation>&amp;Sposób transmisji głosu</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="157"/>
+ <location/>
<source>When to transmit your speech</source>
<translation>Kiedy wysyłać twój głos</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="160"/>
+ <location/>
<source>&lt;b&gt;This sets when speech should be transmitted.&lt;/b&gt;&lt;br /&gt;&lt;i&gt;Continuous&lt;/i&gt; - All the time&lt;br /&gt;&lt;i&gt;Voice Activity&lt;/i&gt; - When you are speaking clearly.&lt;br /&gt;&lt;i&gt;Push To Talk&lt;/i&gt; - When you hold down the hotkey set under &lt;i&gt;Shortcuts&lt;/i&gt;.</source>
<translation>&lt;b&gt;Określa kiedy to co mówisz powinno zostać wysłane.&lt;/b&gt;&lt;br /&gt;&lt;i&gt;Ciągłe nadawanie&lt;/i&gt; - Cały czas.&lt;br /&gt;&lt;i&gt;Aktywacja głosowa&lt;/i&gt; - Gdy mówisz wyraźnie.&lt;br /&gt;&lt;i&gt;Aktywacja przyciskiem&lt;/i&gt; - Gdy trzymasz wciśnięty przycisk ustawiony w &lt;i&gt;Skróty&lt;/i&gt;.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="219"/>
+ <location/>
<source>DoublePush Time</source>
<translation>Czas podwójnego kliknięcia</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="0"/>
<source>TextLabel</source>
<translation type="obsolete">Etykieta tekstowa</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="0"/>
<source>Audible audio cue when push-to-talk pressed and released</source>
<translation type="obsolete">&lt;b&gt;Aktywując tę opcję usłyszysz charakterystyczny dźwięk.&lt;/b&gt;&lt;br /&gt;Podczas wciskania przycisku do rozmowy usłyszysz dźwięk z gry PacMan.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="341"/>
+ <location/>
<source>&lt;b&gt;This enables the audio cues for push to talk.&lt;/b&gt;&lt;br /&gt;Setting this will give you a short audio beep when push to talk is pressed and released.</source>
<translation>&lt;b&gt;Aktywuje potwierdzenie dźwiękowe przy użyciu opcji aktywacji przyciskiem&lt;/b&gt;&lt;br /&gt;Podczas wciskania i zwalniania przycisku usłyszysz dźwięk potwierdzający rozpoczęcie oraz zakończenie transmisji.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="344"/>
+ <location/>
<source>PTT Audio cue</source>
<translation>PTT Audio Cue</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="357"/>
+ <location/>
<source>Use SNR based speech detection</source>
<translation>Używaj detekcji na podstawie SNR (Singal-To-Noise Ratio / Stosunek Sygnału-Do-Szumu)</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="0"/>
<source>&lt;b&gt;This sets speech detection to use Signal to Noise ratio.&lt;/b&gt;&lt;br /&gt;In this mode, the input is analyzed for something resembling a clear singal, and the clarity of that signal is used to trigger speech detection.</source>
<translation type="obsolete">&lt;b&gt;Analiza na podstawie czystego sygnału.&lt;/b&gt; W tym trybie, źródło dźwięku jest analizowane pod kątem tzw. czystego sygnału, czystość tego sygnału jest używana do uaktywnienia wykrywania mowy.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="363"/>
+ <location/>
<source>Signal to Noise</source>
<translation>Stosunek Sygnału-Do-Szumu (SNR)</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="0"/>
<source>Use Amplitude based speech detection.</source>
<translation type="obsolete">Używaj detekcji na podstawie Amplitudy.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="373"/>
+ <location/>
<source>&lt;b&gt;This sets speech detection to use Amplitude.&lt;/b&gt;&lt;br /&gt;In this mode, the raw strength of the input signal is used to detect speech.</source>
<translation>&lt;b&gt;Określa sposób detekcji głosu na analizę Amplitudy.&lt;/b&gt; W tym trybie, źródło dźwięku jest analizowane pod kątem siły sygnału, mocniejszy sygnał uaktywnia transmisję głosu.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="376"/>
+ <location/>
<source>Amplitude</source>
<translation>Amplituda</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="385"/>
+ <location/>
<source>Voice &amp;Hold</source>
<translation>Czas podtrzymania &amp;transmisji</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="395"/>
+ <location/>
<source>How long to keep transmitting after silence</source>
<translation>Jak długo utrzymywać transmisje po zakończeniu wypowiedzi</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="0"/>
<source>&lt;b&gt;This selects how long after a perceived stop in speech transmission should continue.&lt;/b&gt;&lt;br /&gt;Set this higher if your voice breaks up when you speak (seen by a rapidly blinking voice icon next to your name).&lt;br /&gt;Only makes sense when used with Voice Activity transmission.</source>
<translation type="obsolete">&lt;b&gt;Określa jak długo utrzymywać transmisje po zakończeniu wypowiedzi.&lt;/b&gt;&lt;br /&gt;Ustaw wyższą wartość gdy twoje wypowiedzi są przerywane (można to zauważyć poprzeż szybkie miganie ikony przy twoim nicku).</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="443"/>
+ <location/>
<source>Silence Below</source>
<translation>Cisza</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="0"/>
<source>Signal values below this counts as silence</source>
<translation type="obsolete">Sygnał poniżej podanej wartości traktowany jest jako cisza</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="485"/>
+ <location/>
<source>&lt;b&gt;This sets the trigger values for voice detection.&lt;/b&gt;&lt;br /&gt;Use this together with the Audio Statistics window to manually tune the trigger values for detecting speech. Input values below &quot;Silence Below&quot; always count as silence. Values above &quot;Speech Above&quot; always count as voice. Values in between will count as voice if you&apos;re already talking, but will not trigger a new detection.</source>
<translation>&lt;b&gt;Określa próg aktywacji dla detekcji mowy.&lt;/b&gt;&lt;br /&gt;Użyj tego razem ze &lt;i&gt;Statystykami&lt;/i&gt; aby manualnie wyregulować próg aktywacji głosowej. Wartości wejścia poniżej &quot;Cisza&quot; zawsze są traktowane jako cisza. Wartości powyżej &quot;Mowa&quot; zawsze są traktowane jako mowa. Wartości pomiędzy są traktowane jako mowa, ale nie uaktywnią nowej detekcji.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="475"/>
+ <location/>
<source>Speech Above</source>
<translation>Mowa</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="482"/>
+ <location/>
<source>Signal values above this count as voice</source>
<translation>Sygnał powyżej podanej wartości traktowany jest jako mowa</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="515"/>
+ <location/>
<source>Compression</source>
<translation>Kompresja</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="521"/>
+ <location/>
<source>&amp;Quality</source>
<translation>&amp;Jakość</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="531"/>
+ <location/>
<source>Quality of compression (peak bandwidth)</source>
<translation>Jakość kompresji (maksymalne pasmo)</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="534"/>
+ <location/>
<source>&lt;b&gt;This sets the quality of compression.&lt;/b&gt;&lt;br /&gt;This determines how much bandwidth Mumble is allowed to use for outgoing audio.</source>
<translation>&lt;b&gt;Określa jakość kompresji.&lt;/b&gt;&lt;br /&gt;Określa również, ile pasma Mumble może wykorzystać podczas wysyłania dźwięku.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="572"/>
+ <location/>
<source>Audio per packet</source>
<translation>Dźwięk na pakiet</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="582"/>
+ <location/>
<source>How many audio frames to send per packet</source>
<translation>Ile ramek dźwięku ma być wysyłane na pakiet</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="585"/>
+ <location/>
<source>&lt;b&gt;This selects how many audio frames should be put in one packet.&lt;/b&gt;&lt;br /&gt;Increasing this will increase the latency of your voice, but will also reduce bandwidth requirements.</source>
<translation>&lt;b&gt;Określa ile ramek dźwięku powinno być umieszczonych w jednym pakiecie.&lt;/b&gt;&lt;br /&gt;Zwiększanie ilości milisekund opóźni przesyłanie twojego głosu, ale dzięki temu zużyjesz mniej pasma.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="0"/>
<source>Maximum bandwidth used for sent audio</source>
<translation type="obsolete">Maksymalna ilość przepustowości łącza</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="625"/>
+ <location/>
<source>&lt;b&gt;This shows peak outgoing bandwidth used.&lt;/b&gt;&lt;br /&gt;This shows the peak amount of bandwidth sent out from your machine. Audio bitrate is the maximum bitrate (as we use VBR) for the audio data alone. Position is the bitrate used for positional information. Overhead is our framing and the IP packet headers (IP and UDP is 75% of this overhead).</source>
<translation>&lt;b&gt;Wyświetla maksymalne pasmo jakie może być użyte.&lt;/b&gt;&lt;br /&gt;Wyświetla maksymalne pasmo jakie może być wykorzystane przy wysyłaniu z twojego komputera. Bitrate dźwięku (użyte jest VBR) jest maksymalnym bitrate dla samego dźwięku. Położenie jest to bitrate zawierający informacje wykorzystywane przy dźwięku pozycyjnym. Obciążenie są to nagłówki pakietów (IP i UDP stanowi 75% obciążenia).</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="641"/>
+ <location/>
<source>Audio Processing</source>
<translation>Przetwarzanie dźwięku</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="647"/>
+ <location/>
<source>Noise Suppression</source>
<translation>Tłumienie hałasu</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="657"/>
+ <location/>
<source>Noise suppression</source>
<translation>Tłumienie hałasu</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="660"/>
+ <location/>
<source>&lt;b&gt;This sets the amount of noise suppression to apply.&lt;/b&gt;&lt;br /&gt;The higher this value, the more aggressively stationary noise will be suppressed.</source>
<translation>&lt;b&gt;Określa wartość wyciszania hałasu.&lt;/b&gt;&lt;br /&gt;Im wyższa wartość tym bardziej dźwięk będzie wyciszany.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="692"/>
+ <location/>
<source>Amplification</source>
<translation>Wzmocnienie dźwięku</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="702"/>
+ <location/>
<source>Maximum amplification of input sound</source>
<translation>Maksymalne wzmocnienie dźwięku wejściowego</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="705"/>
+ <location/>
<source>&lt;b&gt;Maximum amplification of input.&lt;/b&gt;&lt;br /&gt;Mumble normalizes the input volume before compressing, and this sets how much it&apos;s allowed to amplify.&lt;br /&gt;The actual level is continually updated based on your current speech pattern, but it will never go above the level specified here.&lt;br /&gt;If the &lt;i&gt;Microphone loudness&lt;/i&gt; level of the audio statistics hover around 100%, you probably want to set this to 2.0 or so, but if, like most people, you are unable to reach 100%, set this to something much higher.&lt;br /&gt;Ideally, set it so &lt;i&gt;Microphone Loudness * Amplification Factor &gt;= 100&lt;/i&gt;, even when you&apos;re speaking really soft.&lt;br /&gt;&lt;br /&gt;Note that there is no harm in setting this to maximum, but Mumble will start picking up other conversations if you leave it to auto-tune to that level.</source>
<translation>&lt;b&gt;Maksymalne wzmocnienie wejścia.&lt;/b&gt;&lt;br /&gt;Mumble normalizuje poziom głośności przed kompresją, opcja ta określa dozwolony poziom wzmocnienia.&lt;br /&gt;Rzeczywisty poziom jest stale aktualizowany w oparciu o aktualną strukturę twojej wypowiedzi, ale nigdy nie przekracza poziomu określonego tutaj.&lt;br /&gt; Jeśli poziom głośności mikrofonu w statystykach wynosi około 100% to prawdopodobnie chcesz ustawić wartość tej opcji na 2.0, ale gdy jak większość użytkowników nie będziesz w stanie osiągnąć 100%, ustaw wartość tej opcji trochę wyżej.&lt;br /&gt;Najlepiej ustawić jak tak: &lt;i&gt;głośność mikrofonu * czynnik wzmocnienia&gt;= 100&lt;/i&gt; nawet gdy mówisz bardzo miękko. Pamiętaj, że nie zaszkodzi w tym ustawienie maksymalnej wartości, ale Mumble zacznie przechwytywać inne rozmowy jeżeli zostawisz to do auto-dostrojenia.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="433"/>
+ <location/>
<source>Current speech detection chance</source>
<translation>Aktualna szansa na wykrycie mowy</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="100"/>
+ <location/>
<source>Cancel echo from speakers</source>
<translation>Usuwaj echo z głośników</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="103"/>
+ <location/>
<source>Enabling this will cancel the echo from your speakers. Mixed has low CPU impact, but only works well if your speakers are equally loud and equidistant from the microphone. Multichannel echo cancellation provides much better echo cancellation, but at a higher CPU cost.</source>
<translation>Włączając tą opcję usuniesz echo dochodzące z głośników. &lt;i&gt;Pomieszane&lt;/i&gt; ma mały wpływ ma procesor, ale działa tylko na bardzo głośno ustawione głośniki. &lt;i&gt;Multi-kanałowe&lt;/i&gt; usuwanie echa dostarcza lepszą jakość ale skutkuje to większym wykorzystaniem procesora.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="107"/>
+ <location/>
<source>Disabled</source>
<translation>Wyłączone</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="112"/>
+ <location/>
<source>Mixed</source>
<translation>Pomieszane</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="117"/>
+ <location/>
<source>Multichannel</source>
<translation>Multi-kanałowe</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="125"/>
+ <location/>
<source>Echo</source>
<translation>Echo</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="229"/>
+ <location/>
<source>If you press the PTT key twice in this time it will get locked.</source>
<translation>Jeśli naciśniesz przycisk PTT podwójnie w tym czasie, zostanie on zablokowany.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="232"/>
+ <location/>
<source>&lt;b&gt;DoublePush Time&lt;/b&gt;&lt;br /&gt;If you press the push-to-talk key twice during the configured interval of time it will be locked. Mumble will keep transmitting until you hit the key once more to unlock PTT again.</source>
<translation>&lt;b&gt;Czas podwójnego kliknięcia&lt;/b&gt;&lt;br/&gt;Jeżeli wciśniesz przycisk PTT (Naciśnij-i-Mów) dwukrotnie, we wskazanym czasie, wówczas Mumble będzie stale transmitować twój głos dopóki ponownie nie wciśniesz przycisku PTT.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="258"/>
+ <location/>
<source>Gets played when the PTT button is pressed</source>
<translation>Odtwarza dźwięk kiedy wciskany jest przycisk PTT</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="265"/>
+ <location/>
<source>Gets played when the PTT button is released</source>
<translation>Odtwarza dźwięk kiedy puszczany jest przycisk PTT</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="272"/>
+ <location/>
<source>Reset audio cue to default</source>
<translation>Ustaw domyślny dźwięk PTT</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="275"/>
+ <location/>
<source>&lt;b&gt;Reset&lt;/b&gt;&lt;br/&gt;Reset the paths for the files to their default.</source>
<translation>&lt;b&gt;Resetuj&lt;/b&gt;&lt;br/&gt;Resetuje ścieżki dla plików dźwiękowych do wartości domyślnych.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="278"/>
+ <location/>
<source>Reset</source>
<translation>Resetuj</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="285"/>
+ <location/>
<source>Browse for on audio file</source>
<translation>Przeglądaj w poszukiwaniu pliku dźwiękowego</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="298"/>
+ <location/>
<source>Browse</source>
<translation>Przeglądaj</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="295"/>
+ <location/>
<source>Browse for off audio file</source>
<translation>Przeglądaj w poszukiwaniu pliku dźwiękowego</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="305"/>
+ <location/>
<source>Off</source>
<translation>Wyłączany</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="315"/>
+ <location/>
<source>On</source>
<translation>Włączany</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="325"/>
+ <location/>
<source>Preview the audio cues</source>
<translation>Podgląd plików audio</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="328"/>
+ <location/>
<source>&lt;b&gt;Preview&lt;/b&gt;&lt;br/&gt;Plays the current &lt;i&gt;on&lt;/i&gt; soundfile followed by the current &lt;i&gt;off&lt;/i&gt; soundfile.</source>
<translation>&lt;b&gt;Podgląd&lt;/b&gt;&lt;br/&gt;Odtwarza aktualnie ustawione dźwięki dla obu wartości &lt;i&gt;Włączany&lt;/i&gt; i &lt;i&gt;Wyłączany&lt;/i&gt;.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="331"/>
+ <location/>
<source>Preview</source>
<translation>Podgląd</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="338"/>
+ <location/>
<source>Audible audio cue when push-to-talk is activated or deactivated</source>
<translation>Kiedy wciskasz lub puszczasz przycisk transmisji głosu zostanie odtworzony dźwięk potwierdzający rozpoczęcie lub zakończenie transmisji</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="360"/>
+ <location/>
<source>&lt;b&gt;This sets speech detection to use Signal to Noise ratio.&lt;/b&gt;&lt;br /&gt;In this mode, the input is analyzed for something resembling a clear signal, and the clarity of that signal is used to trigger speech detection.</source>
<translation>&lt;b&gt;Określa sposób detekcji głosu na stosunek Sygnału-Do-Szumu.&lt;/b&gt;&lt;br /&gt;W tym trybie sygnał wejściowy jest analizowany jako czysty, a czystość tego sygnału używana jest do włączania transmisji głosowej.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="436"/>
+ <location/>
<source>&lt;b&gt;This shows the current speech detection settings.&lt;/b&gt;&lt;br /&gt;You can change the settings from the Settings dialog or from the Audio Wizard.</source>
<translation>&lt;b&gt;Wyświetla aktualne ustawienia wykrywania mowy.&lt;/b&gt;&lt;br /&gt;Możesz zmienić te ustawienia w &lt;i&gt;Konfiguracja&lt;/i&gt; lub w &lt;i&gt;Kreatorze ustawień dźwięku&lt;/i&gt;.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="167"/>
+ <location/>
<source>Idle AutoMute</source>
<translation>Automatyczne wyciszanie</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="174"/>
+ <location/>
<source>How long to remain idle before auto-mute.</source>
<translation>Ile czasu musisz pozostać bezczynnym by zostać automatycznie wyciszonym.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="177"/>
+ <location/>
<source>This sets an idle timer. If the timer expires without any audio being sent to the server, you are muted.</source>
<translation>Tutaj możesz ustawić czas bezczynności. Jeżeli przez ten czas nie wyślesz żadnego pakietu do serwera, zostaniesz automatycznie wyciszony.</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="450"/>
+ <location/>
<source>Signal values below this count as silence</source>
<translation>Sygnał poniżej tej wartości zalicza się jako cisza</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="622"/>
+ <location/>
<source>Maximum bandwidth used for sending audio</source>
<translation>Maksymalne pasmo używane do wysyłania dźwięku</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="0"/>
<source>&lt;b&gt;This sets the amount of noise suppression to apply.&lt;/b&gt;&lt;br /&gt;The higher this value, the more aggressively stationary noise will be supressed.</source>
<translation type="obsolete">&lt;b&gt;Ta opcja określa wartość tłumienia hałasu.&lt;/b&gt;&lt;br /&gt;Zwiększenie tej wartości powoduje agresywniejsze tłumienie hałasu.</translation>
</message>
<message>
- <location filename="AudioInput.cpp" line="528"/>
+ <location filename="AudioInput.cpp" line="+528"/>
<source>Server maximum network bandwidth is only %1 kbit/s. Audio quality auto-adjusted to %2 kbit/s (%3ms)</source>
<translation>Maksymalna przepustowość serwera to tylko %1 kbit/s. Jakość mowy została automatycznie dopasowana do %2 kbit/s (%3ms)</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="370"/>
+ <location filename="AudioInput.ui"/>
<source>Use Amplitude based speech detection</source>
<translation>Używaj detekcji na podstawie Amplitudy</translation>
</message>
<message>
- <location filename="AudioInput.ui" line="398"/>
+ <location/>
<source>&lt;b&gt;This selects how long after a perceived stop in speech transmission should continue.&lt;/b&gt;&lt;br /&gt;Set this higher if your voice breaks up when you speak (seen by a rapidly blinking voice icon next to your name).</source>
<translation>&lt;b&gt;Określa jak długo utrzymywać transmisje po zakończeniu wypowiedzi.&lt;/b&gt;&lt;br /&gt;Ustaw wyższą wartość gdy twoje wypowiedzi są przerywane (można to zauważyć poprzez szybkie miganie ikony przy twoim nicku).</translation>
</message>
@@ -1202,72 +1176,74 @@ Contains the list of members inherited by the current channel. Uncheck &lt;i&gt;
<context>
<name>AudioInputDialog</name>
<message>
- <location filename="AudioConfigDialog.cpp" line="74"/>
+ <location filename="AudioConfigDialog.cpp" line="+74"/>
<source>Continuous</source>
<translation>Ciągłe nadawanie</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="75"/>
+ <location line="+1"/>
<source>Voice Activity</source>
<translation>Aktywacja głosowa</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="76"/>
+ <location line="+1"/>
<source>Push To Talk</source>
<translation>Aktywacja przyciskiem</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="89"/>
+ <location line="+13"/>
<source>Audio Input</source>
<translation>Wejście audio</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="193"/>
+ <location line="+96"/>
+ <location line="+8"/>
<source>%1 ms</source>
<translation>%1 ms</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="229"/>
+ <location line="-2"/>
+ <location line="+20"/>
+ <location line="+18"/>
<source>Off</source>
<translation>Wyłączone</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="199"/>
+ <location line="-30"/>
<source>%1 s</source>
<translation>%1 s</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="203"/>
+ <location line="+4"/>
<source>%1 kb/s</source>
<translation>%1 kb/s</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="214"/>
+ <location line="+11"/>
<source>-%1 dB</source>
<translation>-%1 dB</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="269"/>
+ <location line="+55"/>
<source>%1 kbit/s (Audio %2 %5, Position %4, Overhead %3)</source>
<translation>%1 kbit/s (Dźwięk %2 %5, Pozycja %4, Obciążenie %3)</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="269"/>
+ <location line="+0"/>
<source>CELT</source>
<translation>CELT</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="269"/>
+ <location line="+0"/>
<source>Speex</source>
<translation>Speex</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="0"/>
<source>%1kbit/s (Audio %2, Position %4, Overhead %3)</source>
<translation type="obsolete">%1 kbit/s (Dźwięk %2, Położenie %4, Obciążenie %3)</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="227"/>
+ <location line="-42"/>
<source>%1 min</source>
<translation>%1 min</translation>
</message>
@@ -1275,365 +1251,346 @@ Contains the list of members inherited by the current channel. Uncheck &lt;i&gt;
<context>
<name>AudioOutput</name>
<message>
- <location filename="AudioOutput.ui" line="14"/>
+ <location filename="AudioOutput.ui"/>
<source>Form</source>
<translation>Formularz</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="20"/>
+ <location/>
<source>Interface</source>
<translation>Interfejs</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="26"/>
+ <location/>
<source>System</source>
<translation>System</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="42"/>
+ <location/>
<source>Output method for audio</source>
<translation>Metoda wyjścia dźwięku</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="45"/>
+ <location/>
<source>&lt;b&gt;This is the output method to use for audio.&lt;/b&gt;&lt;br /&gt;Most likely you want to use DirectSound.</source>
<translation>&lt;b&gt;Metoda wyjścia dźwięku.&lt;/b&gt;&lt;br /&gt;Najprawdopodobniej chcesz korzystać z DirectSound.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="68"/>
+ <location/>
<source>Device</source>
<translation>Urządzenie</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="84"/>
+ <location/>
<source>Output device for audio</source>
<translation>Urządzenie wyjściowe dla dźwięku</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="87"/>
+ <location/>
<source>&lt;b&gt;This is the output device to use for audio.&lt;/b&gt;</source>
<translation>&lt;b&gt;To jest urządzenie wyjściowe dla dźwięku.&lt;/b&gt;</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="320"/>
+ <location/>
<source>Positional Audio</source>
<translation>Dźwięk pozycyjny</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="110"/>
+ <location/>
<source>Audio Output</source>
<translation>Wyjście audio</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="116"/>
+ <location/>
<source>Default &amp;Jitter Buffer</source>
<translation>Domyślny bufor &amp;drgań</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="126"/>
+ <location/>
<source>Safety margin for jitter buffer</source>
<translation>Granica bezpieczeństwa dla bufora drgań</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="129"/>
+ <location/>
<source>&lt;b&gt;This sets the minimum safety margin for the jitter buffer.&lt;/b&gt;&lt;br /&gt;All incoming audio is buffered, and the jitter buffer continually tries to push the buffer to the minimum sustainable by your network, so latency can be as low as possible. This sets the minimum buffer size to use. If the start of sentences you hear is very jittery, increase this value.</source>
<translation>&lt;b&gt;Granica bezpieczeństwa dla bufora drgań.&lt;/b&gt;&lt;br /&gt;Każdy przychodzący dźwięk jest najpierw buforowany, przez co opóźnienie jest najniższe jak to tylko możliwe. Określa minimalny rozmiar bufora. Jeśli mowa jest dla ciebie lekko zniekształcona spróbuj zwiększyć ilość milisekund.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="326"/>
+ <location/>
<source>The connected &quot;speakers&quot; are actually headphones</source>
<translation>Podłączone &quot;głośniki&quot; to w rzeczywistości słuchawki</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="349"/>
+ <location/>
<source>Minimum distance to user before sound volume decreases</source>
<translation>Minimalna odległość od użytkownika zanim głośność dźwięku zostanie zmniejszona</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="355"/>
+ <location/>
<source>This sets the minimum distance for sound calculations. The volume of other users&apos; speech will not decrease until they are at least this far away from you.</source>
<translation>Określa minimalną odległość przy której jest obliczenia pozycja dźwięku. Głośność mowy użytkowników nie obniży się dopóki nie będą znajdowali się w określonej odległości od ciebie.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="397"/>
+ <location/>
<source>This sets the maximum distance for sound calculations. When farther away than this, other users&apos; speech volume will not decrease any further.</source>
<translation>Określa maksymalną odległość przy której jest obliczenia pozycja dźwięku. Jeśli wskazuje dalej niż ustalona odległość, głośność mowy innych użytkowników nie ulegnie zmianie.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="529"/>
+ <location/>
<source>&lt;b&gt;This sets the packet latency variance for loopback testing.&lt;/b&gt;&lt;br /&gt;Most audio paths contain some variable latency. This allows you to set that variance for loopback mode testing. For example, if you set this to 15ms, this will emulate a network with 20-35ms ping latency or one with 80-95ms latency. Most domestic net connections have a variance of about 5ms.</source>
<translation>&lt;b&gt;Określa opóźnienie pakietów dla trybu testowego.&lt;/b&gt;&lt;bt /&gt;Większość ścieżek audio zawiera jakąś przybliżoną wartość opóźnienia. Umożliwia to ustawienie opóźnienia dla trybu testowego. Na przykład, jeśli ustawisz 15ms, rozpocznie się emulacja sieci z opóźnieniami w granicach 20-35ms lub 80-95ms. Opuźnienie w większości domowych połączeń internetowych waha się w granicach 5ms.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="613"/>
+ <location/>
<source>&lt;b&gt;This enables one of the loopback test modes.&lt;/b&gt;&lt;br /&gt;&lt;i&gt;None&lt;/i&gt; - Loopback disabled&lt;br /&gt;&lt;i&gt;Local&lt;/i&gt; - Emulate a local server.&lt;br /&gt;&lt;i&gt;Server&lt;/i&gt; - Request loopback from server.&lt;br /&gt;Please note than when loopback is enabled, no other users will hear your voice. This setting is not saved on application exit.</source>
<translation>&lt;b&gt;Włącza jeden z trybów testowych.&lt;/b&gt;&lt;br /&gt;&lt;i&gt;Brak&lt;/i&gt; - Tryb testowy wyłączony&lt;br /&gt;&lt;i&gt;Lokalny&lt;/i&gt; - Emuluj serwera lokalnego.&lt;br /&gt;&lt;i&gt;Serwer&lt;/i&gt; - Test na serwerze.&lt;br /&gt;Prosimy zauważyć, gdy tryb testowy jest włączony, żaden użytkownik cię nie usłyszy, więc możesz mówić swobodnie. Tryb testowy jest wyłączany przy wyjściu z programu.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>TextLabel</source>
<translation type="obsolete">Tekst</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="161"/>
+ <location/>
<source>Volume</source>
<translation>Głośność</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="171"/>
+ <location/>
<source>Volume of incoming speech</source>
<translation>Głośność dźwięku przychodzącego</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="174"/>
+ <location/>
<source>&lt;b&gt;This adjusts the volume of incoming speech.&lt;/b&gt;&lt;br /&gt;Note that if you increase this beyond 100%, audio will be distorted.</source>
<translation>&lt;b&gt;Pozwala na określenie głośności mowy mowy.&lt;/b&gt;&lt;br /&gt;Każda wartość powyżej 100% sprawi, że dźwięk będzie trochę zniekształcony.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="200"/>
+ <location/>
<source>Output Delay</source>
<translation>Opóźnienie wyjścia</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="210"/>
+ <location/>
<source>Amount of data to buffer</source>
<translation>Ilość danych przechowywanych w buforze</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>This sets the amount of data to prebuffer in the output buffer. Experiment with different values and set it to the lowest which doesn&apos;t cause rapid jitter in the sound.</source>
<translation type="obsolete">Ustala ilość danych które trafiają do przed-bufora w buforze wyjścia. Eksperymentowanie z różnymi wartościami i ustawienie ich na najniższy poziom nie skutkują natychmiastowym rozsynchronizowaniem się dźwięku.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>Volume attenuation</source>
<translation type="obsolete">Dźwięk pozycyjny</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>MinDistance</source>
<translation type="obsolete">Minimalny zasięg</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>Minimum distance to player before sound decreases</source>
<translation type="obsolete">Ustawia minimalny zasięg
przechwytywania źródeł dźwięku</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>This sets the minimum distance for sound calculations. The volume of other players&apos; speech will not decrease until they are at least this far away from you.</source>
<translation type="obsolete">Ustawia minimalny zasięg przechwytywania źródeł dźwięku. Głośność innych użytkowników nie będzie się zmieniać dopóki nie znajdą się dalej niż wskazuje minimalny dystans.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>MaxDistance</source>
<translation type="obsolete">Maksymalny zasięg</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>Maximum distance, beyond which sound won&apos;t decrease</source>
<translation type="obsolete">Ustawia maksymalny zasięg
przechwytywania źródeł dźwięku</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>This sets the maximum distance for sound calculations. When farther away than this, other players&apos; sound volume will not decrease any more.</source>
<translation type="obsolete">Ustawia maksymalny zasięg przechwytywania źródeł dźwięku.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>RollOff</source>
<translation type="obsolete">Zanikanie dźwięku</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="436"/>
+ <location/>
<source>Factor for sound volume decrease</source>
<translation>Jak szybko odbierany dźwięk ma zanikać</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>How fast should sound volume drop when passing beyond the minimum distance. The normal (1.0) is that sound volume halves each time the distance doubles. Increasing this value means sound volume drops faster, while decreasing it means it drops slower.</source>
<translation type="obsolete">Jak szybko głośność powinna spadać, gdy przekroczy minimalny zasięg przechwytywania dźwięku.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="465"/>
+ <location/>
<source>Bloom</source>
<translation>Zmienna głośność</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="510"/>
+ <location/>
<source>Loopback Test</source>
<translation>Tryb testowy</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="516"/>
+ <location/>
<source>Delay Variance</source>
<translation>Opóźnienie pakietów</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="526"/>
+ <location/>
<source>Variance in packet latency</source>
<translation>Opóźnienie pakietów podczas testu</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>&lt;b&gt;This sets the packet latency variance for loopback testing.&lt;/b&gt;&lt;br /&gt;Most audio paths contain some variable latency. This allows you set that variance for loopback mode testing. For example, if you set this to 15ms, this will emulate a network with 20-35ms ping latency or one with 80-95ms latency. Most domestic net connections have a variance of about 5ms</source>
<translation type="obsolete">&lt;b&gt;Ta opcja ustawia długość opóźnienia pakietów dla trybu testowego.&lt;/b&gt;&lt;br /&gt;Na przykład jeśli ustawisz 15 milisekund test zacznie emulować opóźnienie sieci z pingiem 20-35 milisekund lub 80-95 milisekund. Większość połączeń różni się między sobą o około 5 milisekund.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="555"/>
+ <location/>
<source>Packet Loss</source>
<translation>Utracone pakiety</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="565"/>
+ <location/>
<source>Packet loss for loopback mode</source>
<translation>Ilość utraconych pakietów podczas testu</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="568"/>
+ <location/>
<source>&lt;b&gt;This sets the packet loss for loopback mode.&lt;/b&gt;&lt;br /&gt;This will be the ratio of packets lost. Unless your outgoing bandwidth is peaked or there&apos;s something wrong with your network connection, this will be 0%</source>
<translation>&lt;b&gt;Określa ilość utraconych pakietów w trybie testowym.&lt;/b&gt;&lt;br /&gt;Jest to stosunek pakietów utraconych. O ile cała przepustowość wysyłania nie jest zajęta lub masz jakikolwiek problem ze swoim połączeniem, będzie to 0%</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="600"/>
+ <location/>
<source>&amp;Loopback</source>
<translation>&amp;Wybierz tryb</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="610"/>
+ <location/>
<source>Desired loopback mode</source>
<translation>Tryb testu</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>&lt;b&gt;This enables one of the loopback testmodes.&lt;/b&gt;&lt;br /&gt;&lt;i&gt;None&lt;/i&gt; - Loopback disabled&lt;br /&gt;&lt;i&gt;Local&lt;/i&gt; - Emulate a local server.&lt;br /&gt;&lt;i&gt;Server&lt;/i&gt; - Request loopback from server.&lt;br /&gt;Please note than when loopback is enabled, no other players will hear your voice. This setting is not saved on application exit.</source>
<translation type="obsolete">Ta opcja uaktywnia tryb testowy.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="488"/>
+ <location/>
<source>Factor for sound volume increase</source>
<translation>Czynnik wpływający na zwiększenie głośności</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>The connected &quot;speakers&quot; are actually headphones.</source>
<translation type="obsolete">Podłączone &quot;głośniki&quot; to w rzeczywistości słuchawki.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="339"/>
+ <location/>
<source>Minimum Distance</source>
<translation>Minimalna odległość</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="384"/>
+ <location/>
<source>Maximum Distance</source>
<translation>Maksymalna odległość</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="394"/>
+ <location/>
<source>Maximum distance, beyond which speech volume won&apos;t decrease</source>
<translation>Określa maksymalną odległość po której dźwięk nie będzie dalej ściszany</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>This sets the maximum distance for sound calculations. When farther away than this, other players&apos; speech volume will not decrease any further.</source>
<translation type="obsolete">Ta opcja ustawia maksymalną odległość słyszalności dźwięku. W zależności od ustawienia odległości, mowa innych użytkowników nie będzie słyszana głośniej.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="426"/>
+ <location/>
<source>Minimum Volume</source>
<translation>Minimalna głośność</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="439"/>
+ <location/>
<source>What should the volume be at the maximum distance?</source>
<translation>Jaka powinna być głośność maksymalnej odległości?</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="491"/>
+ <location/>
<source>How much should sound volume increase for sources that are really close?</source>
<translation>Jak bardzo Mumble powinien zmieniać głośność dla źródeł dźwięku, które są zbyt blisko?</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>Connected &quot;speakers&quot; are actually headphones.</source>
<translation type="obsolete">&lt;b&gt;Jeśli w tej chwli używasz słuchawek&lt;/b&gt; to zaznacz tę opcję. Jest to ważne, bo zazwyczaj głośniki są przed tobą a słuchawki bezpośrednio z lewej i prawej.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="329"/>
+ <location/>
<source>Checking this indicates that you don&apos;t have speakers connected, just headphones. This is important, as speakers are usually in front of you, while headphones are directly to your left/right.</source>
<translation>Wybierz tą opcję gdy używasz słuchawek zamiast głośników. Jest to ważne, gdyż zazwyczaj głośniki są przed tobą a słuchawki bezpośrednio z lewej i prawej.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="332"/>
+ <location/>
<source>Headphones</source>
<translation>Słuchawki</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>Other Applications</source>
<translation type="obsolete">Inne aplikacje</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="213"/>
+ <location/>
<source>This sets the amount of data to pre-buffer in the output buffer. Experiment with different values and set it to the lowest which doesn&apos;t cause rapid jitter in the sound.</source>
<translation>Określa ilość danych, które są wstępnie wczytywane do bufora wyjścia. Poeksperymentuj z różnymi wartościami i ustaw je na najniższą, możliwą wartość która nie powoduje przycinania dźwięku.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>Volume of other applications during speech</source>
<translation type="obsolete">Głośność innych aplikacji podczas rozmowy</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="0"/>
<source>&lt;b&gt;Decrease volume of other applications during speech.&lt;/b&gt;&lt;br /&gt;Mumble supports decreasing the volume of other applications during incoming speech. This sets the relative volume of other applications when others are talking.</source>
<translation type="obsolete">&lt;b&gt;Zmniejsza głośność innych aplikacji podczas rozmowy.&lt;/b&gt;&lt;br /&gt;Mumble wspiera obniżanie głośności innych aplikacji podczas nadchodzącej rozmowy. Ta opcja ustawia względną głośność innych aplikacji kiedy inni mówią.
&lt;b&gt;UWAGA!&lt;/b&gt; Działa tylko na Windows VISTA SP1.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="239"/>
+ <location/>
<source>Attenuate applications by...</source>
<translation>Tłum aplikacje o...</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="255"/>
+ <location/>
<source>Attenuation of other applications during speech</source>
<translation>Tłumienie innych aplikacji podczas mowy</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="258"/>
+ <location/>
<source>&lt;b&gt;Attenuate volume of other applications during speech&lt;/b&gt;&lt;br /&gt;Mumble supports decreasing the volume of other applications during incoming and/or outgoing speech. This sets the attenuation of other applications if the feature is enabled.</source>
<translation>&lt;b&gt;Tłumienie innych aplikacji podczas mowy&lt;/b&gt;&lt;br /&gt;Mumble obsługuje zmniejszanie głośności innych aplikacji podczas gdy ktoś do ciebie mówi lub ty mówisz. Określa poziom tłumienia innych aplikacji gdy ta funkcja jest włączona.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="286"/>
+ <location/>
<source>If checked Mumble lowers the volume of other applications while other users talk</source>
<translation>Mumble zmniejszy głośność innych aplikacji gdy inni użytkownicy mówią</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="289"/>
+ <location/>
<source>&lt;b&gt;Attenuate applications while other users talk&lt;/b&gt;&lt;br /&gt;Mumble supports decreasing the volume of other applications during incoming and/or outgoing speech. This makes mumble activate the feature while other users talk to you.</source>
<translation>&lt;b&gt;Tłumienie innych aplikacji podczas mowy innych użytkowników&lt;/b&gt;&lt;br /&gt;Mumble obsługuje zmniejszanie głośności innych aplikacji podczas gdy ktoś do ciebie mówi lub ty mówisz. Aktywuje tą funkcję gdy inny użytkownik mówi do ciebie.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="292"/>
+ <location/>
<source>while other users talk</source>
<translation>gdy inni użytkownicy mówią</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="299"/>
+ <location/>
<source>If checked Mumble lowers the volume of other applications while you talk</source>
<translation>Mumble zmniejszy głośność innych aplikacji gdy ty mówisz</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="302"/>
+ <location/>
<source>&lt;b&gt;Attenuate applications while you talk&lt;/b&gt;&lt;br /&gt;Mumble supports decreasing the volume of other applications during incoming and/or outgoing speech. This makes mumble activate the feature while you talk.</source>
<translation>&lt;b&gt;Tłumienie innych aplikacji podczas twojej mowy&lt;/b&gt;&lt;br /&gt;Mumble obsługuje zmniejszanie głośności innych aplikacji podczas gdy ktoś do ciebie mówi lub ty mówisz. Aktywuje tą funkcję gdy ty mówisz.</translation>
</message>
<message>
- <location filename="AudioOutput.ui" line="305"/>
+ <location/>
<source>while you talk</source>
<translation>gdy ty mówisz</translation>
</message>
@@ -1641,57 +1598,60 @@ przechwytywania źródeł dźwięku</translation>
<context>
<name>AudioOutputDialog</name>
<message>
- <location filename="AudioConfigDialog.cpp" line="394"/>
+ <location filename="AudioConfigDialog.cpp" line="+167"/>
<source>None</source>
<translation>Brak</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="395"/>
+ <location line="+1"/>
<source>Local</source>
<translation>Lokalny</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="396"/>
+ <location line="+1"/>
<source>Server</source>
<translation>Serwer</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="402"/>
+ <location line="+6"/>
<source>Audio Output</source>
<translation>Wyjście audio</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="531"/>
+ <location line="+102"/>
+ <location line="+19"/>
+ <location line="+8"/>
<source>%1 ms</source>
<translation>%1 ms</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="562"/>
+ <location line="-16"/>
+ <location line="+4"/>
+ <location line="+8"/>
+ <location line="+31"/>
+ <location line="+4"/>
<source>%1 %</source>
<translation>%1 %</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="552"/>
+ <location line="-16"/>
+ <location line="+6"/>
<source>%1 m</source>
<translation>%1 m</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="0"/>
<source>%1%</source>
<translation type="obsolete">%1%</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="0"/>
<source>%1ms</source>
<translation type="obsolete">%1 ms</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="0"/>
<source>%1m</source>
<translation type="obsolete">%1m</translation>
</message>
<message>
- <location filename="AudioConfigDialog.cpp" line="0"/>
<source>%1</source>
<translation type="obsolete">%1</translation>
</message>
@@ -1699,17 +1659,17 @@ przechwytywania źródeł dźwięku</translation>
<context>
<name>AudioOutputSample</name>
<message>
- <location filename="AudioOutput.cpp" line="295"/>
+ <location filename="AudioOutput.cpp" line="+295"/>
<source>Choose sound file</source>
<translation>Wybierz plik dźwiękowy</translation>
</message>
<message>
- <location filename="AudioOutput.cpp" line="299"/>
+ <location line="+4"/>
<source>Invalid sound file</source>
<translation>Nieprawidłowy plik dźwiękowy</translation>
</message>
<message>
- <location filename="AudioOutput.cpp" line="300"/>
+ <location line="+1"/>
<source>The file &apos;%1&apos; cannot be used by Mumble. Please select a file with a compatible format and encoding.</source>
<translation>Plik &apos;%1&apos; nie mógł zostać użyty przez Mumble. Prosimy wybrać plik z obsługiwanym formatem pliku.</translation>
</message>
@@ -1717,187 +1677,185 @@ przechwytywania źródeł dźwięku</translation>
<context>
<name>AudioStats</name>
<message>
- <location filename="AudioStats.ui" line="28"/>
+ <location filename="AudioStats.ui"/>
<source>Peak microphone level</source>
<translation>Maksymalny poziom mikrofonu</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="48"/>
+ <location/>
<source>Peak speaker level</source>
<translation>Maksymalny poziom głośników</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="68"/>
+ <location/>
<source>Peak clean level</source>
<translation>Maksymalny poziom czystości</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="78"/>
+ <location/>
<source>This shows the peak power in the last frame (20 ms) after all processing. Ideally, this should be -96 dB when you&apos;re not talking. In reality, a sound studio should see -60 dB, and you should hopefully see somewhere around -20 dB. When you are talking, this should rise to somewhere between -5 and -10 dB.&lt;br /&gt;If you are using echo cancellation, and this rises to more than -15 dB when you&apos;re not talking, your setup is not working, and you&apos;ll annoy other users with echoes.</source>
<translation>Wyświetla moc ostatniej ramki (20 ms) po całym procesie przetwarzania. W najlepszym wypadku, powinna wynosić -96dB kiedy nic nie mówisz. W rzeczywistości powinna być to wartość zbliżona do -60 dB, ale od czasu do czasu powinieneś widzieć -20 dB. Kiedy mówisz, wartość ta powinna wzrosnąć do około -5 dB czy -10 dB.&lt;br /&gt; Jeśli używasz opcji usuwania echa, a wartość ta wzrasta powyżej -15 dB kiedy nic nie mówisz,oznacza to że twoje ustawienia są złe i będziesz przeszkadzać innym użytkownikiem echem dobiegającym z twojej transmisji.</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="137"/>
+ <location/>
<source>Speech Probability</source>
<translation>Prawdopodobieństwo mowy</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="75"/>
+ <location/>
<source>Peak power in last frame</source>
<translation>Maksymalna moc w ostatnij ramce</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="58"/>
+ <location/>
<source>This shows the peak power of the speakers in the last frame (20 ms). Unless you are using a multi-channel sampling method (such as ASIO) with speaker channels configured, this will be 0. If you have such a setup configured, and this still shows 0 while you&apos;re playing audio from other programs, your setup is not working.</source>
<translation>Wyświetla maksymalną moc głośników w ostatniej ramce (20 ms). Jeśli używasz wielokanałowej metody próbkowania (np. ASIO) ze skonfigurowanymi kanałami, wartość będzie wynosiła 0. Jeśli posiadasz takia konfigurację, a nadal wartość wynosi 0, gdy odtwarzasz dźwięk z innych programów oznacza to, że twoje ustawienie nie działa prawidłowo.</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="104"/>
+ <location/>
<source>How close the current input level is to ideal</source>
<translation>Jak bardzo obecny poziom głośności jest bliski idealnemu</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="124"/>
+ <location/>
<source>Signal-To-Noise ratio from the microphone</source>
<translation>Stosunku Sygnału-Do-Szumu (SNR) z mikrofonu</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="127"/>
+ <location/>
<source>This is the Signal-To-Noise Ratio (SNR) of the microphone in the last frame (20 ms). It shows how much clearer the voice is compared to the noise.&lt;br /&gt;If this value is below 1.0, there&apos;s more noise than voice in the signal, and so quality is reduced.&lt;br /&gt;There is no upper limit to this value, but don&apos;t expect to see much above 40-50 without a sound studio.</source>
<translation>Stosunku Sygnału-Do-Szumu (SNR) mikrofonu w ostatniej ramce (20 ms). Wyświetla o ile czystszy jest głos w porównaniu do szumu.&lt;br /&gt;Jeżeli wartość wynosi mniej niż 1.0, oznacza to więcej szumu niż głosu w sygnale, .Nie ma limitu tej wartości, ale nie spodziewaj się, że zobaczysz wartość większą niż 40-50 bez studia dźwiękowego.</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="144"/>
+ <location/>
<source>Probability of speech</source>
<translation>Prawdopodobieństwo mowy</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="147"/>
+ <location/>
<source>This is the probability that the last frame (20 ms) was speech and not environment noise.&lt;br /&gt;Voice activity transmission depends on this being right. The trick with this is that the middle of a sentence is always detected as speech; the problem is the pauses between words and the start of speech. It&apos;s hard to distinguish a sigh from a word starting with &apos;h&apos;.&lt;br /&gt;If this is in bold font, it means Mumble is currently transmitting (if you&apos;re connected).</source>
<translation>Prawdopodobieństwo wykrycia mowy w ostatniej ramce (20 ms)&lt;br /&gt;Zależy od tego aktywacja transmisju głosu. Problem polega na tym, że środek zdania zawsze będzie wyrykwany jako mowa; pozostaje problem pauz pomiędzy wyrazami oraz początkiem mowy. Trudno jest rozróżnić westchnięcie od wyrazu zaczynającego się na &apos;h&apos;.&lt;br /&gt;Jeśli występuje tu pogrubiona czcionka, oznacza to że Mumble w danej chwili transmituje głos (jeśli jesteś połączony).</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="181"/>
+ <location/>
<source>Bitrate of last frame</source>
<translation>Bitrate ostatniej ramki</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="184"/>
+ <location/>
<source>This is the audio bitrate of the last compressed frame (20 ms), and as such will jump up and down as the VBR adjusts the quality. To adjust the peak bitrate, adjust &lt;b&gt;Compression Complexity&lt;/b&gt; in the Settings dialog.</source>
<translation>Bitrate dźwięku w ostatniej ramce (20 ms), będzie skakać od góry do dołu kiedy VBR będzie dostosowywać jakość. Aby zmeinić bitrate, zmień &lt;b&gt;kompresję&lt;/b&gt; w Konfiguracji.</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="207"/>
+ <location/>
<source>Time between last two Push-To-Talk presses</source>
<translation>Czas pomiędzy dwoma ostatnimi wciśnięciami PTT</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="262"/>
+ <location/>
<source>Power spectrum of input signal and noise estimate</source>
<translation>Szacowana siła spektrum wejściowego sygnału oraz szumu</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="265"/>
+ <location/>
<source>This shows the power spectrum of the current input signal (red line) and the current noise estimate (filled blue).&lt;br /&gt;All amplitudes are multiplied by 30 to show the interesting parts (how much more signal than noise is present in each waveband).&lt;br /&gt;This is probably only of interest if you&apos;re trying to fine-tune noise conditions on your microphone. Under good conditions, there should be just a tiny flutter of blue at the bottom. If the blue is more than halfway up on the graph, you have a seriously noisy environment.</source>
<translation>Wyświetla spektrum obecnej siły wejścia (czerwona linia) oraz obecny, szacowany szum (niebieskie wypełnienie).&lt;br /&gt;Wszystkie amplitudy są mnożone przez 30, aby pokazać interesujące części (jak bardzo sygnał prezentuje się na każdym kanale w przeciwieństwie do szumu).&lt;br /&gt;Prawdopodobnie wzkazanie te będą cię interesować tylko jeśli próbujesz ustawić mikrofon do warunków zewnętrznych. Jednakże przy dobrych warunkach, w dolnej części wykresu powinno być widoczne słabe trzepotanie koloru niebieskiego. Jeśli kolor ten zajmuje połowę wykresu, to masz bardzo hałaśliwy szum dochodzący z otoczenia.</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="293"/>
+ <location/>
<source>Weights of the echo canceller</source>
<translation>Siła usuwania echa</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="296"/>
+ <location/>
<source>This shows the weights of the echo canceller, with time increasing downwards and frequency increasing to the right.&lt;br /&gt;Ideally, this should be black, indicating no echo exists at all. More commonly, you&apos;ll have one or more horizontal stripes of bluish color representing time delayed echo. You should be able to see the weights updated in real time.&lt;br /&gt;Please note that as long as you have nothing to echo off, you won&apos;t see much useful data here. Play some music and things should stabilize. &lt;br /&gt;You can choose to view the real or imaginary parts of the frequency-domain weights, or alternately the computed modulus and phase. The most useful of these will likely be modulus, which is the amplitude of the echo, and shows you how much of the outgoing signal is being removed at that time step. The other viewing modes are mostly useful to people who want to tune the echo cancellation algorithms.&lt;br /&gt;Please note: If the entire image fluctuates massively while in modulus mode, the echo canceller fails to find any correlation whatsoever between the two input sources (speakers and microphone). Either you have a very long delay on the echo, or one of the input sources is configured wrong.</source>
<translation>Wyświetla siłę usuwania echa, gdzie czas to krzywa, która opada w dół oraz częstotliwość to krzywa zwiększająca się kurwa prawej stronie.&lt;br /&gt;Najlepiej byłoby, gdydby pole to pozostało czarne, co wskazywałoby że echo nie występuje. Zazwyczaj, będziesz mieć do czynienia z jedną lub kilkoma poziomymi paskami niebieskawego koloru, które reprezentują opóźnienie echa w czasie. Powinieneś widzieć siłę uaktualnianą w czasie rzeczywistym. &lt;br /&gt;Zauważ, że jeśli nie masz żadnego echa nie zobaczysz tutaj nic co mogłoby ci się przydać. Posłuchaj jakiejś muzyki i wszystko powinno się ustablizować.&lt;br /&gt;Możesz wybrać co chcesz przeglądać - prawdziwe lub wyimaginowane części częstotliwości domain siły lub obliczone modulacje i fazy. Najużyteczniejszym z tych wszystkich będzie mudlacja, która jest amplitudą echa, pokazuje ile wychodzącego sygnału jest usuwane. Pozostałem tryby przeglądania są najużyteczniejsze dla ludzi, którzy chcą podrasować algorytmy usuwania echa. &lt;br /&gt;Zauważ, że: Jeśli cały obraz fluktuuje po całości, gdy tryb modulacji jest włączony, usuwanie echa nie ma wtedy szans na odnalezienie korelacji pomiędzy dwoma źródłami wyjścia (głośniki i mikrofon). Albo masz zbyt długie opóźnienie na echu albo jedno ze źródeł wejścia jest źle skonfigurowane. (I tak nie wiecie o co chodzi? My też - tłumacze).</translation>
</message>
<message>
- <location filename="AudioStats.cpp" line="402"/>
+ <location filename="AudioStats.cpp" line="+402"/>
<source>&gt;1000 ms</source>
<translation>&gt;1000ms</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="14"/>
+ <location filename="AudioStats.ui"/>
<source>Audio Statistics</source>
<translation>Statystyki audio</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="22"/>
+ <location/>
<source>Input Levels</source>
<translation>Poziomy wejścia</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="38"/>
+ <location/>
<source>This shows the peak power in the last frame (20 ms), and is the same measurement as you would usually find displayed as &quot;input power&quot;. Please disregard this and look at &lt;b&gt;Microphone power&lt;/b&gt; instead, which is much more steady and disregards outliers.</source>
<translation>Wyświetla maksymalną moc z ostatniej ramki (20 ms), taką samą wartość powinieneś widzieć w &quot;mocy wejściowej&quot;. Możesz to zignorować i patrzeć na &lt;b&gt;Moc mikrofonu&lt;/b&gt; która jest znacznie bardziej stabilna i nie uwzględnia wartości odstających.</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="0"/>
<source>TextLabel</source>
<translation type="obsolete">Tekst</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="91"/>
+ <location/>
<source>Signal Analysis</source>
<translation>Analiza sygnału</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="97"/>
+ <location/>
<source>Microphone power</source>
<translation>Moc mikrofonu</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="107"/>
+ <location/>
<source>This shows how close your current input volume is to the ideal. To adjust your microphone level, open whatever program you use to adjust the recording volume, and look at the value here while talking.&lt;br /&gt;&lt;b&gt;Talk loud, as you would when you&apos;re upset over getting fragged by a noob.&lt;/b&gt;&lt;br /&gt;Adjust the volume until this value is close to 100%, but make sure it doesn&apos;t go above. If it does go above, you are likely to get clipping in parts of your speech, which will degrade sound quality.</source>
<translation>Okresla jak bardzo aktualna głośność jest bliska ideałowi. By dostroić poziom mikrofonu otwórz jakikolwiek program do regulacji głośnści i sprawdzaj tutaj wartości podczas mowy.&lt;br /&gt;&lt;b&gt;Mów głośno, tak jak byś był zdenerwowany po śmierci od nooba.&lt;/b&gt;&lt;br /&gt;Dostrajaj głośność dopóki wartość nie będzie bliska 100%, jednocześnie upewniając się że jej nie przekroczy. Gdy wartość przekroczy jednak 100% twoje wypowiedzi mogą być przerywane, co obniży komfort rozmowy.</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="117"/>
+ <location/>
<source>Signal-To-Noise ratio</source>
<translation>Stosunek Sygnału-Do-Szumu (SNR)</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="162"/>
+ <location/>
<source>Configuration feedback</source>
<translation>Konfiguracja</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="168"/>
+ <location/>
<source>Current audio bitrate</source>
<translation>Aktualny bitrate dźwięku</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="194"/>
+ <location/>
<source>DoublePush interval</source>
<translation>Odstęp pomiędzy podwójnym kliknięciem</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="0"/>
<source>Time between last two PushToTalk presses</source>
<translation type="obsolete">Czas pomiędzy dwoma ostatnimi naciśnięciami klawisza do mówienia</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="217"/>
+ <location/>
<source>Speech Detection</source>
<translation>Detakcja mowy</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="224"/>
+ <location/>
<source>Current speech detection chance</source>
<translation>Aktualna szansa na wykrycie mowy</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="227"/>
+ <location/>
<source>&lt;b&gt;This shows the current speech detection settings.&lt;/b&gt;&lt;br /&gt;You can change the settings from the Settings dialog or from the Audio Wizard.</source>
<translation>&lt;b&gt;Wyświetla obecy sposób detekcjii głosu.&lt;/b&gt;&lt;br /&gt;Możesz zmienić sposób detekcji w &lt;i&gt;Konfiguracji&lt;/i&gt; lub korzystając z &lt;i&gt;Kreatora ustawień dźwięku&lt;/i&gt;.</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="256"/>
+ <location/>
<source>Signal and noise power spectrum</source>
<translation>Widmo siły sygnału oraz szumu</translation>
</message>
<message>
- <location filename="AudioStats.ui" line="281"/>
+ <location/>
<source>Echo Analysis</source>
<translation>Analiza echa</translation>
</message>
@@ -1905,66 +1863,62 @@ przechwytywania źródeł dźwięku</translation>
<context>
<name>AudioWizard</name>
<message>
- <location filename="AudioWizard.ui" line="14"/>
+ <location filename="AudioWizard.ui"/>
<source>Audio Tuning Wizard</source>
<translation>Kreator ustawień dźwięku</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="18"/>
+ <location/>
<source>Introduction</source>
<translation>Wprowadzenie</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="21"/>
+ <location/>
<source>Welcome to the Mumble Audio Wizard</source>
<translation>Witamy w kreatorze ustawień dźwięku Mumble</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>This is the audio tuning wizard for Mumble. This will help you correctly set the input levels of your sound card, and also set the correct parameters for sound processing in Mumble.</source>
<translation type="obsolete">Dzięki temu kreatorowi poprawnie skonfigurujesz program Mumble!
</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>Please be aware that as long as this wizard is active, audio will be looped locally to allow you to listen to it, and no audio will be sent to the server.</source>
<translation type="obsolete">Podczas działania tego kreatora dźwięk nadawany jest tak abyś sam siebie słyszał - przy czym nikt inny na żadnym serwerze cię nie usłyszy.
Przejdź Dalej, aby rozpocząć konfigurację!</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="761"/>
+ <location/>
<source>Finished</source>
<translation>Zakończono</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="764"/>
+ <location/>
<source>Enjoy using Mumble</source>
<translation>Miłej zabawy z Mumble</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>Congratulations. You should now be ready to enjoy a richer sound experience with Mumble.</source>
<translation type="obsolete">Gratulujemy! Od teraz powinieneś cieszyć się lepszą jakością dźwięku z Mumble.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="56"/>
+ <location/>
<source>Device selection</source>
<translation>Wybór urządzenia</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="59"/>
+ <location/>
<source>Selecting the input and output device to use with Mumble.</source>
<translation>Wybierz urządzenia wejścia oraz wyjścia, z których Mumble będzie korzystać.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>Input device</source>
<translation type="obsolete">Urządzenie wejścia</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="27"/>
+ <location/>
<source>&lt;p&gt;
This is the audio tuning wizard for Mumble. This will help you correctly set the input levels of your sound card, and also set the correct parameters for sound processing in Mumble.
&lt;/p&gt;
@@ -1979,87 +1933,86 @@ Zwróć uwagę na to, że podczas kolejnych kroków będziesz słyszeć sam sieb
&lt;/p&gt;</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="65"/>
+ <location/>
<source>Input Device</source>
<translation>Urządzenie wejścia</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="71"/>
+ <location/>
<source>This is the device your microphone is connected to.</source>
<translation>Urządzenie, do którego podłączony jest mikrofon.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="153"/>
+ <location/>
<source>System</source>
<translation>System</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="91"/>
+ <location/>
<source>Input method for audio</source>
<translation>System wejścia audio</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="94"/>
+ <location/>
<source>&lt;b&gt;This is the input method to use for audio.&lt;/b&gt;&lt;br /&gt;Most likely you want to use DirectSound.</source>
<translation>&lt;b&gt;Metoda wejścia dźwięku.&lt;/b&gt;&lt;br /&gt;Najprawdopodobniej chcesz korzystać z DirectSound.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="173"/>
+ <location/>
<source>Device</source>
<translation>Urządzenie</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="111"/>
+ <location/>
<source>Input device to use</source>
<translation>Urządzenie wejścia</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="114"/>
+ <location/>
<source>&lt;b&gt;Selects which sound card to use for audio input.&lt;/b&gt;</source>
<translation>&lt;b&gt;Wskazuje, które urządzenie będzie użyte do wejścia dźwięku.&lt;/b&gt;</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="121"/>
+ <location/>
<source>Cancel echo from headset or speakers</source>
<translation>Usuwaj echo ze słuchawek lub głośników</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>Output device</source>
<translation type="obsolete">Urządzenie wyjścia</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="143"/>
+ <location/>
<source>This is the device your speakers or headphones are connected to.</source>
<translation>Urządzenie, do którego podłączone są słuchawki lub głośniki.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="163"/>
+ <location/>
<source>Output method for audio</source>
<translation>System wyjścia audio</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="166"/>
+ <location/>
<source>&lt;b&gt;This is the Output method to use for audio.&lt;/b&gt;&lt;br /&gt;Most likely you want to use DirectSound.</source>
<translation>&lt;b&gt;Metoda wyjścia dźwięku.&lt;/b&gt;&lt;br /&gt;Najprawdopodobniej chcesz korzystać z DirectSound.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="183"/>
+ <location/>
<source>Output device to use</source>
<translation>Urządzenie wyjścia</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="186"/>
+ <location/>
<source>&lt;b&gt;Selects which sound card to use for audio Output.&lt;/b&gt;</source>
<translation>&lt;b&gt;Wskazuje, które urządzenie będzie użyte do wyjścia dźwięku.&lt;/b&gt;</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="193"/>
+ <location/>
<source>Allows positioning of sound</source>
<translation>Zezwalaj na pozycjonowanie dźwięku</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="245"/>
+ <location/>
<source>&lt;p&gt;
To keep latency to an absolute minimum, it&apos;s important to buffer as little audio as possible on the soundcard. However, many soundcards report that they require a much smaller buffer than what they can actually work with, so the only way to set this value is to try and fail.
&lt;/p&gt;
@@ -2075,32 +2028,32 @@ Powinieneś słyszeć próbkę głosową. Ustaw teraz wskaźnik na pasku poniże
&lt;/p&gt;</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="267"/>
+ <location/>
<source>Amount of data to buffer</source>
<translation>Ilość danych przechowywanych w buforze</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="270"/>
+ <location/>
<source>This sets the amount of data to pre-buffer in the output buffer. Experiment with different values and set it to the lowest which doesn&apos;t cause rapid jitter in the sound.</source>
<translation>Określa ilość danych, które są wstępnie wczytywane do bufora wyjścia. Poeksperymentuj z różnymi wartościami i ustaw je na najniższą, możliwą wartość która nie powoduje przycinania dźwięku.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="319"/>
+ <location/>
<source>Volume tuning</source>
<translation>Regulacja głośności</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="322"/>
+ <location/>
<source>Tuning microphone hardware volume to optimal settings.</source>
<translation>Ustawienie optymalnej głośności mikrofonu.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="682"/>
+ <location/>
<source>Keep custom Text-To-Speech settings.</source>
<translation>Zachowaj własne ustawienia Tekstu-Na-Mowę.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="715"/>
+ <location/>
<source>&lt;p&gt;
Mumble supports positional audio for some games, and will position the voice of other users relative to their position in game. Depending on their position, the volume of the voice will be changed between the speakers to simulate the direction and distance the other user is at. Such positioning depends on your speaker configuration being correct in your operating system, so a test is done here.
&lt;/p&gt;
@@ -2116,12 +2069,12 @@ Wykres poniżej wskazuje pozycję &lt;font color=&quot;red&quot;&gt;twoją&lt;/f
&lt;/p&gt;</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="731"/>
+ <location/>
<source>Use headphones instead of speakers</source>
<translation>Używaj słuchawek zamiast głośników</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="770"/>
+ <location/>
<source>&lt;p&gt;
Congratulations. You should now be ready to enjoy a richer sound experience with Mumble.
&lt;/p&gt;
@@ -2137,152 +2090,137 @@ Mumble jest podczas ciągłego tworzenia a nasza drużyna chce skupić się na f
&lt;/p&gt;</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>Open your sound control panel and go to the recording settings. Make sure the microphone is selected as active input with maximum recording volume. If there&apos;s an option to enable a &quot;Microphone boost&quot; make sure it&apos;s checked.</source>
<translation type="obsolete">Wejdź do panelu regulacji głośności Windows (Start&gt;Uruchom&gt;sndvol32) i upewnij się, że mikrofon jest wybrany jako urządzenie do przechwytywania dźwięku. Użyj opcji &quot;Mic Boost&quot; jeżeli jest dostępna.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>Speak loudly, as when you are annoyed or excited. Decrease the volume in the sound control panel until the bar below stays as high as possible in the blue and green but &lt;b&gt;not&lt;/b&gt; the red zone while you speak.</source>
<translation type="obsolete">Mów głośno, tak jakbyś był podekscytowany albo wkurzony. Zmniejszaj stopniowo głośność w panelu aż pasek poniżej zostanie tak wysoko jak to możliwe w niebiesko-zielonym kolorze (nie może być w czerwonym).</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="354"/>
+ <location/>
<source>Now talk softly, as you would when talking late at night and you don&apos;t want to disturb anyone. Adjust the slider below so that the bar moves into green when you talk, but stays blue while you&apos;re silent.</source>
<translation>Teraz mów łagodnie tak jakbyś mówił późno w nocy, aby nikogo nie obudzić. Ustaw suwak w taki sposób aby poziom dźwięku znajdował się na zielonym polu gdy mówisz oraz pozostawał w niebieskim gdy milczysz.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="421"/>
+ <location/>
<source>Voice Activity Detection</source>
<translation>Wybór sposobu aktywacji głosowej</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="424"/>
+ <location/>
<source>Letting Mumble figure out when you&apos;re talking and when you&apos;re silent.</source>
<translation>Teraz pozwól Mumble ustalić, kiedy mówisz a kiedy milczysz.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="430"/>
+ <location/>
<source>This will help Mumble figure out when you are talking. The first step is selecting which data value to use.</source>
<translation>Wybierz sposób aktywacji głosowej, którego chcesz używać.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="474"/>
+ <location/>
<source>Raw amplitude from input</source>
<translation>Detekcja na podstawie Amplitudy</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="467"/>
+ <location/>
<source>Signal-To-Noise ratio</source>
<translation>Detekcja na podstawie stosunku Sygnału-Do-Szumu (SNR)</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>Next you need to adjust the following two sliders. The first few utterances you say should end up in the green area (definitive speech). While talking, you should stay inside the yellow (might be speech) and when you&apos;re not talking, everything should be in the red (definitively not speech).</source>
<translation type="obsolete">Następnie musisz ustawić podane wskaźniki.
Zielony - mowa zdecydowana, żółty - mowa normalna, czerwony - gdy nic nie mówisz.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>Last, you need to adjust the grace time. Mumble may detect this much non-speech and still keep transmitting before it breaks off. This allows you to catch your breath while speaking.</source>
<translation type="obsolete">Ostatecznie ustaw jak długo Mumble podtrzymuje transmisję po zakończeniu wypowiedzi.
W ten sposób możesz uniknąć ucinania głosu pomiędzy wypowiadanymi zdaniami.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="236"/>
+ <location/>
<source>Device tuning</source>
<translation>Ustawianie urządzenia</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="239"/>
+ <location/>
<source>Changing hardware output delays to their minimum value.</source>
<translation>Zmiana opóźnień sprzętu do minimalnych wartości.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>To keep latency to an absolute minium, it&apos;s important to buffer as little audio as possible on the soundcard. However, many soundcards report that they require a much smaller buffer than what they can actually work with, so the only way to set this value is to try and fail.</source>
<translation type="obsolete">Aby opóźnienia były najmniejsze bufor powinien być jak najmniejszy, wówczas karta dźwiękowa szybciej wysyła dźwięk.
Niektóre karty dźwiękowe mają granice co do ustawień bufora, raz działają a raz nie.
Postaraj się ustawić wielkość bufora tak, aby nie występowały żadne zakłócenia w odtwarzanym dźwięku.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>Amount of data to buffer.</source>
<translation type="obsolete">Ilość danych do trafiających do bufora</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>This sets the amount of data to prebuffer in the output buffer. Experiment with different values and set it to the lowest which doesn&apos;t cause rapid jitter in the sound.</source>
<translation type="obsolete">Ustaw jak najniżej możliwą wartość (UWAGA! Twoja karta dźwiękowa może nie działać na bardzo niskich wartościach).</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>%1ms</source>
<translation type="obsolete">%1ms</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>%1 s</source>
<translation type="obsolete">%1 s</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>You should hear a single tone that&apos;s changing in frequency. Change the slider below to the lowest value which gives &lt;b&gt;no&lt;/b&gt; interruptions or jitter in the sound. Please note that local echo is disabled during this test to improve audio path recognition.</source>
<translation type="obsolete">Powinieneś usłyszeć jeden dźwięk który ciągle zmienia częstotliwość. Zmień suwakiem wartość do najmniejszej a jednocześnie do takiej przy, której nie występują wahania dźwięku. Echo podczas tego testu jest wyłączone.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>If you position the microphone so it can pick up the speakers or headset, Mumble will measure the total audio path delay in your system; this means the delay from a sample is placed in an outbound buffer until it&apos;s found in a matching incoming buffer.</source>
<translation type="obsolete">Jeśli ustawisz swój mikrofon tak, aby przechwytywał dźwięk z głośników lub słuchawek to Mumble automatycznie ustawi opóźnienia audio tak, aby inni użytkownicy nie słyszeli dźwięków otoczenia (np. pisania na klawiaturze, oddechu).</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>Audio path is %1ms long.</source>
<translation type="obsolete">Ścieżka dźwiękowa ma długość %1ms</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>Audio path cannot be determined. Input not recognized.</source>
<translation type="obsolete">Ścieżka dźwiękowa nie może być określona.
Wejście dźwieku nie zostało rozpoznane!</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="127"/>
+ <location/>
<source>Use echo cancellation</source>
<translation>Usuwanie akustycznego echa</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>Cancel echo from headset or speakers.</source>
<translation type="obsolete">Ta opcja usuwa echo ze słuchawek lub głośników.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="124"/>
+ <location/>
<source>This enables echo cancellation of outgoing audio, which helps both on speakers and on headsets.</source>
<translation>Uaktywnia usuwanie echa pochodzącego z urządzeń (głośniki lub słuchawki).</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="137"/>
+ <location/>
<source>Output Device</source>
<translation>Urządzenie wyjścia</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="199"/>
+ <location/>
<source>Enable positional audio</source>
<translation>Włącz dźwięk pozycyjny</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>Allows positioning of sound.</source>
<translation type="obsolete">Uaktywnia pozycjonowanie dźwięku.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="196"/>
+ <location/>
<source>This allows Mumble to use positional audio to place voices.</source>
<translation>Pozwala to Mumble na używanie pozycjonowania dźwięku aby umieszczać głos zgodnie z pozycja danego użytkownika w grze.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="328"/>
+ <location/>
<source>&lt;p&gt;
Open your sound control panel and go to the recording settings. Make sure the microphone is selected as active input with maximum recording volume. If there&apos;s an option to enable a &quot;Microphone boost&quot; make sure it&apos;s checked.
&lt;/p&gt;
@@ -2298,160 +2236,156 @@ Mów głośno, tak jakbyś był wkurzony lub podekscytowany. Zmniejsz głośnoś
&lt;/p&gt;</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="497"/>
+ <location/>
<source>Next you need to adjust the following slider. The first few utterances you say should end up in the green area (definitive speech). While talking, you should stay inside the yellow (might be speech) and when you&apos;re not talking, everything should be in the red (definitively not speech).</source>
<translation>Nastepnie musisz ustawić ten suwak. Generalnie podczas mowy wygląda to tak, że zdecydowana mowa to obszar zielony, zwyczajna mowa to obszar żółty. Wszystko inne znajduje się w obszarze czerwonym, to po prostu brak mowy.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="706"/>
+ <location/>
<source>Positional Audio</source>
<translation>Dźwięk pozycyjny</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="709"/>
+ <location/>
<source>Adjusting attenuation of positional audio.</source>
<translation>Regulacja tłumienia dźwięku pozycyjnego.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>Mumble supports positional audio for some games, and will position the voice of other players relative to their position in game. Depending on their position, the volume of the voice will be changed between the speakers to simulate the direction and distance the other player is at. Such positioning depends on your speaker configuration being correct in your operating system, so a test is done here.</source>
<translation type="obsolete">Mumble wspiera dźwięk pozycyjny w kilku grach.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>The graph below shows the position of &lt;font color=&quot;red&quot;&gt;you&lt;/font&gt;, the &lt;font color=&quot;yellow&quot;&gt;speakers&lt;/font&gt; and a &lt;font color=&quot;green&quot;&gt;moving sound source&lt;/font&gt; as if seen from above. You should hear the audio move between the channels.</source>
<translation type="obsolete">Wykres poniżej pokazuje &lt;font color=&quot;red&quot;&gt;ciebie&lt;/font&gt;, &lt;font color=&quot;yellow&quot;&gt;głośniki&lt;/font&gt; oraz &lt;font color=&quot;green&quot;&gt;poruszające źródło dźwięku&lt;/font&gt;.
Powinieneś usłyszeć dźwięk przemieszczający się pomiędzy głośnikami.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="737"/>
+ <location/>
<source>Use headphones</source>
<translation>Używam słuchawek</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>Use headphones instead of speakers.</source>
<translation type="obsolete">Używaj słuchawek zamiast głośników.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="734"/>
+ <location/>
<source>This ignores the OS speaker configuration and configures the positioning for headphones instead.</source>
<translation>Ignoruje ustawienia w systemie dotyczące głośników i wymuszasz konfigurację dźwięku pozycyjnego dla słuchawek.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="0"/>
<source>Mumble is under continuous development, and the development team wants to focus on the features that benefit the most users. To this end, Mumble supports submitting anonymous statistics about your configuration to the developers. These statistcs are essential for future development, and also make sure the features you use aren&apos;t deprecated.</source>
<translation type="obsolete">Adnotacja twórców:
Mumble jest ciągle rozwijany, naszym priorytetem jest skupianie się na cechach najbardziej pożądanych przez użytkowników, dlatego dodaliśmy do programu opcję wysyłania anonimowych statystyk.
Dane te zawierają konfigurację twojego klienta i są nam bardzo potrzebne do przyszłego rozwoju aplikacji.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="786"/>
+ <location/>
<source>Submit anonymous statistics to the Mumble project</source>
<translation>Przekazuj anonimowe statystyki do twórców Mumble</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="442"/>
+ <location/>
<source>Push To Talk:</source>
<translation>Aktywacja przyciskiem:</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="206"/>
+ <location/>
<source>Enables attenuation of other applications while users talk to you</source>
<translation>Włącza tłumienie innych aplikacji gdy inni użytkownicy mówią</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="209"/>
+ <location/>
<source>Enables attenuation of other applications while users talk to you. This means that as soon someone starts to speak to you in Mumble, the sound of all other applications (like audio players) will get attenuated so you can hear them more clearly.</source>
<translation>Włącza tłumienie innych aplikacji gdy inni użytkownicy mówią. Oznacza to że gdy tylko ktoś zacznie do ciebie mówić, dźwięk z innych aplikacji (takich jak np. WinAmp, Foobar2000) zostanie stłumiony, abyś mógł lepiej słyszeć jego wypowiedź.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="212"/>
+ <location/>
<source>Attenuate applications while other users talk</source>
<translation>Tłumienie aplikacji podczas mowy innych użytkowników</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="408"/>
+ <location/>
<source>Apply some high contrast optimizations for visually impaired users</source>
<translation>Zastosuj optymalizacje wysokiego kontrastu dla osób niedowidzących</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="411"/>
+ <location/>
<source>Use high contrast graphics</source>
<translation>Użyj grafiki o wysokim kontraście</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="543"/>
+ <location/>
<source>Quality &amp; Notifications</source>
<translation>Jakość &amp; Powiadomienia</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="546"/>
+ <location/>
<source>Adjust quality and notification settings.</source>
<translation>Reguluj jakość oraz konfiguracja powiadomień.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="558"/>
+ <location/>
<source>Quality settings</source>
<translation>Ustawienia jakości</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="576"/>
+ <location/>
<source>Low</source>
<translation>Niska</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="583"/>
+ <location/>
<source>In this configuration Mumble will use a &lt;b&gt;low amount of bandwidth&lt;/b&gt;. This will inevitably result in high latency and poor quality. Choose this only if your connection cannot handle the other settings. (Speex 16kbit/s, 60ms per packet)</source>
<translation>Mumble będzie używać konfiguracji dla łącza o &lt;b&gt;niskiej przepustowości&lt;/b&gt;. Będzie to skutkować wysokimi opóźnieniami oraz bardzo słabą jakością. Wybierz tą opcję tylko wtedy gdy twoje połączenie nie jest wstanie obsłużyć innych ustawień. (Speex 16kbit/s, pakiet co 60ms)</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="599"/>
+ <location/>
<source>Balanced</source>
<translation>Zrównoważona</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="609"/>
+ <location/>
<source>This is the &lt;b&gt;recommended default&lt;/b&gt; configuration. It provides a good balance between quality, latency, and bandwidth usage. (CELT 40kbit/s, 20ms per packet)</source>
<translation>&lt;b&gt;Zalecana standardowa&lt;/b&gt; konfiguracja. Dostarcza odpowiednie zbalansowanie pomiędzy jakościa, opóźnieniem a wykorzystywaniem przepustowości (CELT 40kbit/s, pakiet co 20ms)</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="625"/>
+ <location/>
<source>High</source>
<translation>Wysoka</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="632"/>
+ <location/>
<source>This configuration is only recommended for use in setups where bandwidth is not an issue, like a LAN. It provides the lowest latency supported by Mumble and &lt;b&gt;high quality&lt;/b&gt;. (CELT 72kbit/s, 10ms per packet)</source>
<translation>Ta konfiguracja jest zalecana tylko tam gdzie przepustowość nie jest problemem (np. sieci LAN). Dostarcza najniższe opóźnienie obsługiwane przez Mumble oraz &lt;b&gt;najwyższa jakość dźwięku&lt;/b&gt; (CELT 72kbit/s, pakiet co 10ms)</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="642"/>
+ <location/>
<source>Custom</source>
<translation>Użytkownika</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="649"/>
+ <location/>
<source>You already set a customized quality configuration in Mumble. Select this setting to keep it.</source>
<translation>Posiadasz już własne ustawienia jakości w Mumble. Wybierz tą opcję by je zachować.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="659"/>
+ <location/>
<source>Notification settings</source>
<translation>Ustawienia powiadomień</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="665"/>
+ <location/>
<source>Use Text-To-Speech to read notifications and messages to you.</source>
<translation>Używaj funkcji Tekst-Na-Mowę do odczytywania powiadomień oraz wiadomości tekstowych.</translation>
</message>
<message>
- <location filename="AudioWizard.ui" line="675"/>
+ <location/>
<source>Disable Text-To-Speech and use sounds instead.</source>
<translation>Wyłącz funkcję Tekst-Na-Mowę i zamiast tego używaj powiadomień dźwiękowych.</translation>
</message>
<message>
- <location filename="AudioWizard.cpp" line="314"/>
+ <location filename="AudioWizard.cpp" line="+314"/>
<source>%1 ms</source>
<translation>%1 ms</translation>
</message>
@@ -2459,62 +2393,61 @@ Dane te zawierają konfigurację twojego klienta i są nam bardzo potrzebne do p
<context>
<name>BanEditor</name>
<message>
- <location filename="BanEditor.ui" line="72"/>
+ <location filename="BanEditor.ui"/>
<source>Reason</source>
<translation>Powód</translation>
</message>
<message>
- <location filename="BanEditor.ui" line="92"/>
+ <location/>
<source>Start</source>
<translation>Od</translation>
</message>
<message>
- <location filename="BanEditor.ui" line="99"/>
+ <location/>
<source>End</source>
<translation>Do</translation>
</message>
<message>
- <location filename="BanEditor.ui" line="113"/>
+ <location/>
<source>User</source>
<translation>Użytkownik</translation>
</message>
<message>
- <location filename="BanEditor.ui" line="127"/>
+ <location/>
<source>Hash</source>
<translation>Wartość</translation>
</message>
<message>
- <location filename="BanEditor.ui" line="145"/>
+ <location/>
<source>&amp;Add</source>
<translation>&amp;Dodaj</translation>
</message>
<message>
- <location filename="BanEditor.ui" line="152"/>
+ <location/>
<source>&amp;Update</source>
<translation>&amp;Aktualizuj</translation>
</message>
<message>
- <location filename="BanEditor.ui" line="159"/>
+ <location/>
<source>&amp;Remove</source>
<translation>&amp;Usuń</translation>
</message>
<message>
- <location filename="BanEditor.ui" line="14"/>
+ <location/>
<source>Mumble - Edit Bans</source>
<translation>Mumble - edycja banów</translation>
</message>
<message>
- <location filename="BanEditor.ui" line="0"/>
<source>0.0.0.0</source>
<translation type="obsolete">0.0.0.0</translation>
</message>
<message>
- <location filename="BanEditor.ui" line="29"/>
+ <location/>
<source>&amp;Address</source>
<translation>&amp;Adres IP</translation>
</message>
<message>
- <location filename="BanEditor.ui" line="39"/>
+ <location/>
<source>&amp;Mask</source>
<translation>&amp;Maska</translation>
</message>
@@ -2522,32 +2455,32 @@ Dane te zawierają konfigurację twojego klienta i są nam bardzo potrzebne do p
<context>
<name>CertView</name>
<message>
- <location filename="Cert.cpp" line="50"/>
+ <location filename="Cert.cpp" line="+50"/>
<source>Name</source>
<translation>Nazwa</translation>
</message>
<message>
- <location filename="Cert.cpp" line="57"/>
+ <location line="+7"/>
<source>Email</source>
<translation>Email</translation>
</message>
<message>
- <location filename="Cert.cpp" line="64"/>
+ <location line="+7"/>
<source>Issuer</source>
<translation>Wystawił</translation>
</message>
<message>
- <location filename="Cert.cpp" line="71"/>
+ <location line="+7"/>
<source>Expiry Date</source>
<translation>Data wygaśnięcia</translation>
</message>
<message>
- <location filename="Cert.cpp" line="105"/>
+ <location line="+34"/>
<source>(none)</source>
<translation>(brak)</translation>
</message>
<message>
- <location filename="Cert.cpp" line="116"/>
+ <location line="+11"/>
<source>Self-signed</source>
<translation>Własnoręcznie podpisany</translation>
</message>
@@ -2555,72 +2488,72 @@ Dane te zawierają konfigurację twojego klienta i są nam bardzo potrzebne do p
<context>
<name>CertWizard</name>
<message>
- <location filename="Cert.cpp" line="206"/>
+ <location line="+90"/>
<source>Resolving domain %1.</source>
<translation>Rozwinięcie domeny %1.</translation>
</message>
<message>
- <location filename="Cert.cpp" line="212"/>
+ <location line="+6"/>
<source>Unable to validate email.&lt;br /&gt;Enter a valid (or blank) email to continue.</source>
<translation>Nie można potwierdzić adresu email.&lt;br /&gt;Podaj właściwy (lub żadnego) adres email, aby kontynuować.</translation>
</message>
<message>
- <location filename="Cert.cpp" line="220"/>
+ <location line="+8"/>
<source>There was an error generating your certificate.&lt;br /&gt;Please try again.</source>
<translation>Wystąpił błąd podczas generowania twojego certyfikatu.&lt;br /&gt;Prosimy spróbować później.</translation>
</message>
<message>
- <location filename="Cert.cpp" line="228"/>
+ <location line="+8"/>
<source>Your certificate and key could not be exported to PKCS#12 format. There might be an error in your certificate.</source>
<translation>Twój certyfikat oraz klucz nie mogły zostać wyeksportowane do formatu PKCS#12. W twoim certyfikacie może występować błąd.</translation>
</message>
<message>
- <location filename="Cert.cpp" line="233"/>
+ <location line="+5"/>
<source>The file could not be opened for writing. Please use another file.</source>
<translation>Plik nie mógł zostać otwarty w celu zapisania. Prosimy użyć innego pliku.</translation>
</message>
<message>
- <location filename="Cert.cpp" line="239"/>
+ <location line="+6"/>
<source>The file could not be written successfully. Please use another file.</source>
<translation>Plik nie mógł zostać zapisany. Prosimy użyć innego pliku.</translation>
</message>
<message>
- <location filename="Cert.cpp" line="246"/>
+ <location line="+7"/>
<source>The file could not be opened for reading. Please use another file.</source>
<translation>Plik nie mógł zostać otwarty w celu odczytania jego zawartości. Prosimy użyć innego pliku.</translation>
</message>
<message>
- <location filename="Cert.cpp" line="252"/>
+ <location line="+6"/>
<source>The file is empty or could not be read. Please use another file.</source>
<translation>Plik jest pusty lub uszkodzony. Prosimy użyć innego pliku.</translation>
</message>
<message>
- <location filename="Cert.cpp" line="257"/>
+ <location line="+5"/>
<source>The file did not contain a valid certificate and key. Please use another file.</source>
<translation>Plik nie zawierał poprawnego certyfikatu i klucza. Prosimy użyć innego pliku.</translation>
</message>
<message>
- <location filename="Cert.cpp" line="279"/>
+ <location line="+22"/>
<source>Select file to export certificate to</source>
<translation>Wybierz plik, do którego wyeksportować certyfikat</translation>
</message>
<message>
- <location filename="Cert.cpp" line="316"/>
+ <location line="+37"/>
<source>Select file to import certificate from</source>
<translation>Wybierz plik, z którego importować certyfikat</translation>
</message>
<message>
- <location filename="Cert.cpp" line="373"/>
+ <location line="+57"/>
<source>Unable to resolve domain.</source>
<translation>Nie udało się odczytać domeny.</translation>
</message>
<message>
- <location filename="Cert.cpp" line="416"/>
+ <location line="+43"/>
<source>Mumble User</source>
<translation>Użytkownik Mumble</translation>
</message>
<message>
- <location filename="main.cpp" line="363"/>
+ <location filename="main.cpp" line="+390"/>
<source>&lt;b&gt;Certificate Expiry:&lt;/b&gt; Your certificate is about to expire. You need to renew it, or you will no longer be able to connect to servers you are registered on.</source>
<translation>&lt;b&gt;Wygaśnięcie certyfikatu:&lt;/b&gt;Twój certyfikat niedługo straci ważność. Musisz go odnowić, jeśli tego nie zrobisz nie będziesz w stanie połączyć się z serwerami, na których jesteś zarejestrowany.</translation>
</message>
@@ -2628,167 +2561,166 @@ Dane te zawierają konfigurację twojego klienta i są nam bardzo potrzebne do p
<context>
<name>Certificates</name>
<message>
- <location filename="Cert.ui" line="14"/>
+ <location filename="Cert.ui"/>
<source>Certificate Management</source>
<translation>Zarządzanie certyfikatami</translation>
</message>
<message>
- <location filename="Cert.ui" line="18"/>
+ <location/>
<source>Certificate Authentication</source>
<translation>Autoryzacja certyfikatami</translation>
</message>
<message>
- <location filename="Cert.ui" line="21"/>
+ <location/>
<source>Authenticating to servers without using passwords</source>
<translation>Autoryzacja na serwerach bez użycia haseł</translation>
</message>
<message>
- <location filename="Cert.ui" line="0"/>
<source>&lt;p&gt;Mumble can use certificates to authenticate with servers. Using certificates avoids passwords, meaning you don&apos;t need to disclose any password to the remote site. It also enables very easy user registration.&lt;/p&gt;&lt;p&gt;While Mumble can work without certificates, the majority of servers will expect you to have one.&lt;/p&gt;</source>
<translation type="obsolete">&lt;p&gt;Mumble może wykorzystywać certyfikaty do autoryzacji na serwerach. Używanie certyfikatu to przede wszystkim brak haseł, oznacza to że nie musisz ujawniać hasła na stronach którym nie ufasz. Pozwala również na bardzo łatwą rejestracje na jakimkolwiek serwerze.&lt;/p&gt;&lt;p&gt;Mumble może pracować bez certyfikatów ale licz się z tym, że większość serwerów będzie ich wymagać.&lt;/p&gt;</translation>
</message>
<message>
- <location filename="Cert.ui" line="369"/>
+ <location/>
<source>Current certificate</source>
<translation>Obecny certyfikat</translation>
</message>
<message>
- <location filename="Cert.ui" line="47"/>
+ <location/>
<source>This is the certificate Mumble currently uses.</source>
<translation>To jest certyfikat, którego Mumble używa obecnie.</translation>
</message>
<message>
- <location filename="Cert.ui" line="288"/>
+ <location/>
<source>Current Certificate</source>
<translation>Obecny certyfikat</translation>
</message>
<message>
- <location filename="Cert.ui" line="80"/>
+ <location/>
<source>Create a new certificate</source>
<translation>Utwórz nowy certyfikat</translation>
</message>
<message>
- <location filename="Cert.ui" line="77"/>
+ <location/>
<source>This will create a new certificate.</source>
<translation>Tworzy nowy certyfikat.</translation>
</message>
<message>
- <location filename="Cert.ui" line="100"/>
+ <location/>
<source>Import certificate from file</source>
<translation>Importuj certyfikat z pliku</translation>
</message>
<message>
- <location filename="Cert.ui" line="103"/>
+ <location/>
<source>This will import a certificate from file.</source>
<translation>Importuje certyfikat z pliku.</translation>
</message>
<message>
- <location filename="Cert.ui" line="106"/>
+ <location/>
<source>Import a certificate</source>
<translation>Importuj certyfikat</translation>
</message>
<message>
- <location filename="Cert.ui" line="315"/>
+ <location/>
<source>Export Certificate</source>
<translation>Eksportuj certyfikat</translation>
</message>
<message>
- <location filename="Cert.ui" line="129"/>
+ <location/>
<source>This will export a certificate to file.</source>
<translation>Eksportuje certyfikat do pliku.</translation>
</message>
<message>
- <location filename="Cert.ui" line="132"/>
+ <location/>
<source>Export current certificate</source>
<translation>Eksportuj obecny certyfikat</translation>
</message>
<message>
- <location filename="Cert.ui" line="150"/>
+ <location/>
<source>Import Certificate</source>
<translation>Importuj certyfikat</translation>
</message>
<message>
- <location filename="Cert.ui" line="153"/>
+ <location/>
<source>PKCS #12 Certificate import</source>
<translation>Import certyfikatu PKCS #12</translation>
</message>
<message>
- <location filename="Cert.ui" line="162"/>
+ <location/>
<source>&lt;p&gt;Mumble can import certificates stored in PKCS #12 format. This is the format used when exporting a key from Mumble, and also when exporting keys from Firefox, Internet Explorer, Opera etc.&lt;/p&gt;&lt;p&gt;If the file is password protected, you will need the password to import the certificate.&lt;/p&gt;</source>
<translation>&lt;p&gt;Mumble może importować certyfikaty w formacie PKCS #12. Jest to format używany podczas eksportu certyfikatu w Mumble, oraz innych aplikacjach takich jak Opera, Internet Explorer czy Firefox.&lt;/p&gt;&lt;p&gt;Jeśli plik jest zabezpieczony hasłem, będziesz musiał je podać, aby zaimportować certyfikat.&lt;/p&gt;</translation>
</message>
<message>
- <location filename="Cert.ui" line="172"/>
+ <location/>
<source>Import from</source>
<translation>Importuj z</translation>
</message>
<message>
- <location filename="Cert.ui" line="182"/>
+ <location/>
<source>Filename to import from</source>
<translation>Nazwa pliku do importu</translation>
</message>
<message>
- <location filename="Cert.ui" line="185"/>
+ <location/>
<source>This is the filename you wish to import a certificate from.</source>
<translation>To jest nazwa pliku, z którego chcesz importować certyfikat.</translation>
</message>
<message>
- <location filename="Cert.ui" line="192"/>
+ <location/>
<source>Select file to import from</source>
<translation>Wybierz plik, z którego chcesz importować</translation>
</message>
<message>
- <location filename="Cert.ui" line="195"/>
+ <location/>
<source>This opens a file selection dialog to choose a file to import a certificate from.</source>
<translation>Otwiera okno wyboru plików w celu importowania certyfikatu.</translation>
</message>
<message>
- <location filename="Cert.ui" line="198"/>
+ <location/>
<source>Open...</source>
<translation>Otwórz...</translation>
</message>
<message>
- <location filename="Cert.ui" line="209"/>
+ <location/>
<source>Password</source>
<translation>Hasło</translation>
</message>
<message>
- <location filename="Cert.ui" line="219"/>
+ <location/>
<source>Password for PKCS#12 file</source>
<translation>Hasło dla pliku PKCS #12</translation>
</message>
<message>
- <location filename="Cert.ui" line="222"/>
+ <location/>
<source>This is the password for the PKCS#12 file containing your certificate.</source>
<translation>To jest hasło dla pliku PKCS #12, który zawiera twój certyfikat.</translation>
</message>
<message>
- <location filename="Cert.ui" line="229"/>
+ <location/>
<source>Certificate to import</source>
<translation>Certyfikat do zaimportowania</translation>
</message>
<message>
- <location filename="Cert.ui" line="232"/>
+ <location/>
<source>This is the certificate you are importing.</source>
<translation>To jest certyfikat, który importujesz.</translation>
</message>
<message>
- <location filename="Cert.ui" line="375"/>
+ <location/>
<source>Certificate Details</source>
<translation>Szczegóły certyfikatu</translation>
</message>
<message>
- <location filename="Cert.ui" line="243"/>
+ <location/>
<source>Replace Certificate</source>
<translation>Zastąp certyfikat</translation>
</message>
<message>
- <location filename="Cert.ui" line="246"/>
+ <location/>
<source>Replace existing certificate with new certificate?</source>
<translation>Zastąpić istniejący certyfikat nowym?</translation>
</message>
<message>
- <location filename="Cert.ui" line="258"/>
+ <location/>
<source>&lt;p&gt;You already have a certificate stored in Mumble, and you are about to replace it.&lt;/p&gt;
&lt;p&gt;If you are upgrading to a certificate issued to you by a trusted CA and the email addresses match your current certificate, this is completely safe, and servers you connect to will automatically recognize the strong certificate for your email address.
&lt;/p&gt;
@@ -2808,124 +2740,124 @@ Jesteś pewien, że chcesz zastąpić swój bieżący certyfikat?
&lt;/p&gt;</translation>
</message>
<message>
- <location filename="Cert.ui" line="285"/>
+ <location/>
<source>This is the certificate Mumble currently uses. It will be replaced.</source>
<translation>To jest certyfikat, którego Mumble obecnie używa. Zostanie on zastąpiony innym.</translation>
</message>
<message>
- <location filename="Cert.ui" line="301"/>
+ <location/>
<source>New certificate</source>
<translation>Nowy certyfikat</translation>
</message>
<message>
- <location filename="Cert.ui" line="304"/>
+ <location/>
<source>This is the new certificate that will replace the old one.</source>
<translation>To jest nowy certyfikat, który zastąpi stary.</translation>
</message>
<message>
- <location filename="Cert.ui" line="383"/>
+ <location/>
<source>New Certificate</source>
<translation>Nowy certyfikat</translation>
</message>
<message>
- <location filename="Cert.ui" line="318"/>
+ <location/>
<source>Make a backup of your certificate</source>
<translation>Stwórz kopię swojego certyfikatu</translation>
</message>
<message>
- <location filename="Cert.ui" line="327"/>
+ <location/>
<source>&lt;p&gt;If you ever lose your current certificate, which will happen if your computer suffers a hardware failure or you reinstall your machine, you will no longer be able to authenticate to any server you are registered on. It is therefore &lt;b&gt;mandatory&lt;/b&gt; that you make a backup of your certificate. We strongly recommend you store this backup on removable storage, such as an USB memory stick.&lt;/p&gt;
&lt;p&gt;Note that this file will not be encrypted, and if anyone gains access to it, they will be able to impersonate you, so take good care of it.&lt;/p&gt;</source>
<translation>&lt;p&gt;Jeśli kiedykolwiek zgubisz swój certyfikat, twój sprzęt się spali, przeinstalujesz swój system lub z jakiegokolwiek innego powodu stracisz plik to nie będziesz mógł wejść na serwery, na których byłeś zarejestrowany. Tak więc pamiętaj, że utworzenie kopii zapasowej to &lt;b&gt;konieczność&lt;/b&gt; - użyj do tego na przykład dysku przenośnego.&lt;/p&gt;
&lt;p&gt;Pamiętaj również, że ten plik nie jest w żaden sposób szyfrowany i jeśli osoba nieautoryzowana uzyska do niego dostęp to będzie w stanie podszywać się pod ciebie. Także prosimy, dbaj o swoje kopie zapasowe!&lt;/p&gt;</translation>
</message>
<message>
- <location filename="Cert.ui" line="338"/>
+ <location/>
<source>Export to</source>
<translation>Eksportuj do</translation>
</message>
<message>
- <location filename="Cert.ui" line="348"/>
+ <location/>
<source>Filename to export to</source>
<translation>Nazwa pliku, do którego eksportować</translation>
</message>
<message>
- <location filename="Cert.ui" line="351"/>
+ <location/>
<source>This is the filename you wish to export a certificate to.</source>
<translation>To jest nazwa pliku do, którego chcesz zapisać swój certyfikat.</translation>
</message>
<message>
- <location filename="Cert.ui" line="358"/>
+ <location/>
<source>Save As...</source>
<translation>Zapisz jako...</translation>
</message>
<message>
- <location filename="Cert.ui" line="372"/>
+ <location/>
<source>This is the certificate Mumble currently uses. It will be exported.</source>
<translation>To jest certyfikat obecnie używany w Mumble. Zostanie on wyeksportowany.</translation>
</message>
<message>
- <location filename="Cert.ui" line="386"/>
+ <location/>
<source>Generate a new certificate for strong authentication</source>
<translation>Generuj nowy certyfikat dla silnej autoryzacji</translation>
</message>
<message>
- <location filename="Cert.ui" line="395"/>
+ <location/>
<source>&lt;p&gt;Mumble will now generate a strong certificate for authentication to servers.&lt;/p&gt;&lt;p&gt;If you wish, you may provide some additional information to be stored in the certificate, which will be presented to servers when you connect. If you provide a valid email address, you can upgrade to a CA issued email certificate later on, which provides strong identification.&lt;/p&gt;</source>
<translation>&lt;p&gt; Za chwilę Mumble wygeneruje silny certyfikat, abyś mógł autoryzować się na serwerach.&lt;/p&gt;&lt;p&gt;Jeśli chcesz, możesz podać dodatkowe informacje i zapisać je wewnątrz certyfikatu, zostaną one przesłane na serwer, do którego podłączysz się w przyszłości. Jeśli podasz prawdziwy adres email możesz śmiało uaktualnić swój certyfikat do wersji CA co sprawi, że będzie on jeszcze silniej zabezpieczony.&lt;/p&gt;</translation>
</message>
<message>
- <location filename="Cert.ui" line="405"/>
+ <location/>
<source>Name</source>
<translation>Nazwa</translation>
</message>
<message>
- <location filename="Cert.ui" line="415"/>
+ <location/>
<source>Email</source>
<translation>Email</translation>
</message>
<message>
- <location filename="Cert.ui" line="425"/>
+ <location/>
<source>Your email address (e.g. johndoe@mumble.info)</source>
<translation>Twój adres email (np. jankowalski@mumble.info)</translation>
</message>
<message>
- <location filename="Cert.ui" line="428"/>
+ <location/>
<source>This is your email address. It is strongly recommended to provide a valid email address, as this will allow you to upgrade to a strong certificate without authentication problems.</source>
<translation>To jest twój adres email. Zalecane jest użycie prawdziwego adresu email, co pozwoli na ulepszenie do silnego certyfikatu bez problemów z autoryzacją.</translation>
</message>
<message>
- <location filename="Cert.ui" line="442"/>
+ <location/>
<source>Your name (e.g. John Doe)</source>
<translation>Twoja nazwa (np. Jan Kowalski)</translation>
</message>
<message>
- <location filename="Cert.ui" line="445"/>
+ <location/>
<source>This is your name, and will be filled out in the certificate. This field is entirely optional.</source>
<translation>To twoja nazwa, zostanie użyta w certyfikacie. Te pole jest opcjonalne.</translation>
</message>
<message>
- <location filename="Cert.ui" line="453"/>
+ <location/>
<source>Finish</source>
<translation>Zakończ</translation>
</message>
<message>
- <location filename="Cert.ui" line="456"/>
+ <location/>
<source>Certificate-based authentication is ready for use</source>
<translation>Autoryzacja bazująca na certyfikatach jest gotowa do używania</translation>
</message>
<message>
- <location filename="Cert.ui" line="465"/>
+ <location/>
<source>Enjoy using Mumble with strong authentication.</source>
<translation>Miłej zabawy z Mumble i silnymi certyfikatami.</translation>
</message>
<message>
- <location filename="Cert.ui" line="57"/>
+ <location/>
<source>Automatic certificate creation</source>
<translation>Automatyczne tworzenie certyfikatu</translation>
</message>
<message>
- <location filename="Cert.ui" line="30"/>
+ <location/>
<source>&lt;p&gt;Mumble can use certificates to authenticate with servers. Using certificates avoids passwords, meaning you don&apos;t need to disclose any password to the remote site. It also enables very easy user registration.&lt;/p&gt;&lt;p&gt;While Mumble can work without certificates, the majority of servers will expect you to have one.&lt;/p&gt;
&lt;p&gt;
It is &lt;b&gt;strongly&lt;/b&gt; recommended that you &lt;a href=&quot;http://mumble.info/certificate.php&quot;&gt;create a trusted certificate&lt;/a&gt;.
@@ -2937,247 +2869,230 @@ It is &lt;b&gt;strongly&lt;/b&gt; recommended that you &lt;a href=&quot;http://m
<context>
<name>ChanACL</name>
<message>
- <location filename="Cert.ui" line="0"/>
<source>W</source>
<translation type="obsolete">W</translation>
</message>
<message>
- <location filename="Cert.ui" line="0"/>
<source>T</source>
<translation type="obsolete">T</translation>
</message>
<message>
- <location filename="Cert.ui" line="0"/>
<source>E</source>
<translation type="obsolete">E</translation>
</message>
<message>
- <location filename="Cert.ui" line="0"/>
<source>S</source>
<translation type="obsolete">S</translation>
</message>
<message>
- <location filename="Cert.ui" line="0"/>
<source>A</source>
<translation type="obsolete">A</translation>
</message>
<message>
- <location filename="Cert.ui" line="0"/>
<source>M</source>
<translation type="obsolete">M</translation>
</message>
<message>
- <location filename="Cert.ui" line="0"/>
<source>K</source>
<translation type="obsolete">K</translation>
</message>
<message>
- <location filename="Cert.ui" line="0"/>
<source>C</source>
<translation type="obsolete">C</translation>
</message>
<message>
- <location filename="Cert.ui" line="0"/>
<source>L</source>
<translation type="obsolete">L</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="214"/>
+ <location filename="../ACL.cpp" line="+214"/>
<source>None</source>
<translation>Żaden</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="0"/>
<source>Write</source>
<translation type="obsolete">Pisanie</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="218"/>
+ <location line="+4"/>
<source>Traverse</source>
<translation>Wejście na pod-kanał</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="220"/>
+ <location line="+2"/>
<source>Enter</source>
<translation>Wejście</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="222"/>
+ <location line="+2"/>
<source>Speak</source>
<translation>Mowa</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="0"/>
<source>AltSpeak</source>
<translation type="obsolete">Alternatywna mowa</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="226"/>
+ <location line="+4"/>
<source>Mute/Deafen</source>
<translation>Wyciszanie / Ogłuszanie</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="0"/>
<source>Move/Kick</source>
<translation type="obsolete">Przenieś / Kopnij</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="230"/>
+ <location line="+4"/>
<source>Make channel</source>
<translation>Tworzenie kanałów</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="232"/>
+ <location line="+2"/>
<source>Make temporary</source>
<translation>Tworzenie kanałów tymczasowych</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="234"/>
+ <location line="+2"/>
<source>Link channel</source>
<translation>Łączenie kanałów</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="147"/>
+ <location line="-87"/>
<source>This represents no privileges.</source>
<translation>Brak uprawnień.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="150"/>
+ <location line="+2"/>
<source>This represents total access to the channel, including the ability to change group and ACL information. This privilege implies all other privileges.</source>
<translation>Uprawnienie to umożliwia całkowity dostęp do kanału, wliczając możliwość dokonywania zmian w grupach oraz regułach ACL. To uprawnienie zawiera wszystkie pozostałe uprawnienia.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="154"/>
+ <location line="+3"/>
<source>This represents the permission to traverse the channel. If a user is denied this privilege, he will be unable to access this channel and any sub-channels in any way, regardless of other permissions in the sub-channels.</source>
<translation>Uprawnienie to umożliwia wejście na pod-kanały. Jeżeli użytkownik ma zabroniony dostęp do tego uprawnienia nie będzie w stanie w żaden sposób wejść na pod-kanały, niezależnie od innych uprawnień jakie posiada w pod-kanałach.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="157"/>
+ <location line="+4"/>
<source>This represents the permission to join the channel. If you have a hierarchical channel structure, you might want to give everyone Traverse, but restrict Enter in the root of your hierarchy.</source>
<translation>Uprawnienie to umożliwia wejście na kanał. Jeżeli posiadasz hierarchiczną strukturę kanałów, możesz nadać każdemu uprawnienie wejścia na pod-kanały jednocześnie blokując dostęp do głównego kanału w hierarchii.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="161"/>
+ <location line="+3"/>
<source>This represents the permission to speak in a channel. Users without this privilege will be suppressed by the server (seen as muted), and will be unable to speak until they are unmuted by someone with the appropriate privileges.</source>
<translation>Uprawnienie to umożliwia używanie mowy na kanale. Użytkownicy nieposiadający tego uprawnienia będą automatycznie wyciszani przez serwer, oraz nie będą w stanie mówić dopóki osoba z odpowiednimi uprawnieniami nie zdejmie im wyciszenia.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="165"/>
+ <location line="+4"/>
<source>This represents the permission to whisper to this channel from the outside. This works exactly like the &lt;i&gt;speak&lt;/i&gt; privilege, but applies to packets spoken with the Whisper key held down. This may be used to broadcast to a hierarchy of channels without linking.</source>
<translation>Uprawnienie to umożliwia używanie szeptu do tego kanału z zewnątrz. Działa dokładnie tak samo jak uprawnienie &lt;i&gt;Mowa&lt;/i&gt;, lecz jest stosowany do pakietów mowy, gdy użyty jest przycisk Szeptu. Może zostać użyte do wygłaszania przemówień do całego drzewa kanałów bez potrzeby ich linkowania.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="168"/>
+ <location line="+4"/>
<source>This represents the permission to mute and deafen other users. Once muted, a user will stay muted until he is unmuted by another privileged user or reconnects to the server.</source>
<translation>Uprawnienie to umożliwia ogłuszanie oraz wyciszanie mikrofonu innym użytkownikom. Gdy użytkownik zostanie wyciszony pozostanie w tym stanie dopóki inny uprawniony użytkownik nie zdejmie wyciszenia lub do czasu ponownego połączenia z serwerem.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="173"/>
+ <location line="+3"/>
<source>This represents the permission to move a user to another channel or kick him from the server. To actually move the user, either the moving user must have Move privileges in the destination channel, or the user must normally be allowed to enter the channel. Users with this privilege can move users into channels the target user normally wouldn&apos;t have permission to enter.</source>
<translation>Uprawnienie to umożliwia przenoszenie użytkowników na inne kanały oraz wykopanie ich z serwera. Aby przenieść użytkownika, użytkownik przenoszący musi mieć uprawnienie &lt;i&gt;Przenoszenie użytkowników&lt;/i&gt; w docelowym kanale. Użytkownicy z tym uprawnieniem mogą przenosić innych użytkowników na kanały na które sami nie mogli by normalnie wejść.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="176"/>
+ <location line="+5"/>
<source>This represents the permission to make sub-channels. The user making the sub-channel will be added to the admin group of the sub-channel.</source>
<translation>Uprawnienie to umożliwia tworzenie pod-kanałów. Użytkownik tworzący pod-kanał zostaje automatycznie dodany do grupy administratorów tego pod-kanału.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="179"/>
+ <location line="+3"/>
<source>This represents the permission to make a temporary subchannel. The user making the sub-channel will be added to the admin group of the sub-channel. Temporary channels are not stored and disappear when the last user leaves.</source>
<translation>Uprawnienie to umożliwia tworzenie tymczasowych pod-kanałów. Użytkownik twożący pod-kanał zostaje automatycznie dodany do grupy administratorów tego pod-kanału. Tymczasowe kanały nie są zapisywane i znikają gdy wszyscy użytkownicy z nich wyjdą.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="183"/>
+ <location line="+3"/>
<source>This represents the permission to link channels. Users in linked channels hear each other, as long as the speaking user has the &lt;i&gt;speak&lt;/i&gt; privilege in the channel of the listener. You need the link privilege in both channels to create a link, but just in either channel to remove it.</source>
<translation>Uprawnienie to umożliwia łączenie kanałów. Użytkownicy na połączonych kanałach słyszą się nawzajem, jeśli tylko mówiąca osoba posiada uprawnienie &lt;i&gt;Mowa&lt;/i&gt; na kanale gdzie znajduje się słuchacz. Aby połączyć kanały musisz posiadać uprawnienie łączenia kanałów na obu kanałach, aby je rozłączyć tylko w jednym.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="185"/>
+ <location line="+4"/>
<source>This represents the permission to write text messages to other users in this channel.</source>
<translation>Uprawnienie to umożliwia pisanie wiadomości tekstowych do innych użytkowników znajdujących się na tym kanale.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="187"/>
+ <location line="+2"/>
<source>This represents the permission to forcibly remove users from the server.</source>
<translation>Uprawnia do siłowego usuwania użytkowników z serwera.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="189"/>
+ <location line="+2"/>
<source>This represents the permission to permanently remove users from the server.</source>
<translation>Uprawnienie to umożliwia trwałe usunięcie użytkownika z serwera.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="191"/>
+ <location line="+2"/>
<source>This represents the permission to register and unregister users on the server.</source>
<translation>Uprawnia do rejestrowania oraz wyrejestrowywania użytkowników na serwerze.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="193"/>
+ <location line="+2"/>
<source>This represents the permission to register oneself on the server.</source>
<translation>Uprawnienie to umożliwia rejestrację samego siebie na serwerze.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="224"/>
+ <location line="+31"/>
<source>Whisper</source>
<translation>Szept</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="228"/>
+ <location line="+4"/>
<source>Move</source>
<translation>Przenoszenie użytkowników</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="236"/>
+ <location line="+8"/>
<source>Text message</source>
<translation>Wysyłanie wiadomości tekstowej</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="238"/>
+ <location line="+2"/>
<source>Kick</source>
<translation>Kopanie użytkowników</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="240"/>
+ <location line="+2"/>
<source>Ban</source>
<translation>Banowanie użytkowników</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="242"/>
+ <location line="+2"/>
<source>Register User</source>
<translation>Rejestracje użytkowników</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="244"/>
+ <location line="+2"/>
<source>Register Self</source>
<translation>Rejestrację samego siebie</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="0"/>
<source>This represents the permission to speak in a channel with flagged speech. This works exactly like the &lt;i&gt;speak&lt;/i&gt; privilege, but applies to packets spoken with AltPushToTalk held down. This may be used to broadcast to a hierarchy of channels without linking.</source>
<translation type="obsolete">Przedstawia możliwość alternatywnej mowy. Przywilej ten działa dokładnie tak jak &lt;i&gt;mowa&lt;/i&gt;, ale dotyczy użycia przycisku alternatywnej mowy. Przywilej ten może być użyty do ogłaszania czegoś ważnego do całego drzewa kanałów bez ich łączenia.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="0"/>
<source>This represents the permission to mute and deafen other players. Once muted, a player will stay muted until he is unmuted by another privileged player or reconnects to the server.</source>
<translation type="obsolete">Przedstawia możliwość wyciszania użytkowników. Gdy użytkownik zostanie wyciszony pozostanie wyciszony dopóki inny uprawniony użytkownik nie zdejmie wyciszenia lub do czasu ponownego połączenia z serwerem.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="0"/>
<source>This represents the permission to move a player to another channel or kick him from the server. To actually move the player, either the moving player must have Move/Kick privileges in the destination channel, or the player must normally be allowed to enter the channel. Players with this privilege can move players into channels the target player normally wouldn&apos;t have permission to enter.</source>
<translation type="obsolete">Przedstawia możliwość przenoszenia użytkowników na inne kanały oraz kopnięcia ich z serwera. Aby móc przenieść użytkownika musi on posiadać przywilej przenoszenia oraz kopnięcia użytkownika lub posiadać zezwolenie na wejście na kanale docelowym. Użytkownicy z tym przywilejem mogą przenosić innych użytkowników na kanały gdzie nie mogli by normalnie wejść.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="0"/>
<source>This represents the permission to make sub-channels. The player making the sub-channel will be added to the admin group of the sub-channel.</source>
<translation type="obsolete">Przedstawia możliwość tworzenia pod-kanałów. Użytkownik tworzący pod-kanał zostaje automatycznie dodany do grupy &lt;i&gt;admin&lt;/i&gt; w pod-kanale.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="0"/>
<source>This represents the permission to link channels. Players in linked channels hear each other, as long as the speaking player has the &lt;i&gt;speak&lt;/i&gt; privilege in the channel of the listener. You need the link privilege in both channels to create a link, but just in either channel to remove it.</source>
<translation type="obsolete">Przedstawia możliwość łączenia kanałów. Gdy mówiący użytkownik posiada przywilej &lt;i&gt;speak&lt;/i&gt; na kanale gdzie są osoby które mogą go słuchać, użytkownicy połączonych kanałów słyszą się nawzajem. Aby połączyć kanały potrzebujesz przywileju łączenia kanałów na obu kanałach i tylko w jednym by rozłączyć kanały.</translation>
</message>
<message>
- <location filename="../ACL.cpp" line="216"/>
+ <location line="-28"/>
<source>Write ACL</source>
<translation>Edycję ACL</translation>
</message>
@@ -3185,12 +3100,12 @@ It is &lt;b&gt;strongly&lt;/b&gt; recommended that you &lt;a href=&quot;http://m
<context>
<name>ChatbarLineEdit</name>
<message>
- <location filename="CustomElements.cpp" line="71"/>
+ <location filename="CustomElements.cpp" line="+71"/>
<source>Paste and send</source>
<translation>Wklej i wyślij</translation>
</message>
<message>
- <location filename="CustomElements.cpp" line="85"/>
+ <location line="+14"/>
<source>Type chat message here</source>
<translation>Wpisz wiadomość</translation>
</message>
@@ -3198,32 +3113,26 @@ It is &lt;b&gt;strongly&lt;/b&gt; recommended that you &lt;a href=&quot;http://m
<context>
<name>ClientPlayer</name>
<message>
- <location filename="CustomElements.cpp" line="0"/>
<source>Authenticated</source>
<translation type="obsolete">Uwierzytelniony</translation>
</message>
<message>
- <location filename="CustomElements.cpp" line="0"/>
<source>Muted (server)</source>
<translation type="obsolete">Wyciszony mikrofon (przez serwer)</translation>
</message>
<message>
- <location filename="CustomElements.cpp" line="0"/>
<source>Deafened (server)</source>
<translation type="obsolete">Wyciszone słuchawki (przez serwer)</translation>
</message>
<message>
- <location filename="CustomElements.cpp" line="0"/>
<source>Local Mute</source>
<translation type="obsolete">Lokalne wyciszenie</translation>
</message>
<message>
- <location filename="CustomElements.cpp" line="0"/>
<source>Muted (self)</source>
<translation type="obsolete">Wyciszony mikrofon (przez użytkownika)</translation>
</message>
<message>
- <location filename="CustomElements.cpp" line="0"/>
<source>Deafened (self)</source>
<translation type="obsolete">Wyciszone słuchawki (przez użytkownika)</translation>
</message>
@@ -3231,37 +3140,37 @@ It is &lt;b&gt;strongly&lt;/b&gt; recommended that you &lt;a href=&quot;http://m
<context>
<name>ClientUser</name>
<message>
- <location filename="ClientUser.cpp" line="122"/>
+ <location filename="ClientUser.cpp" line="+122"/>
<source>Friend</source>
<translation>Znajomy</translation>
</message>
<message>
- <location filename="ClientUser.cpp" line="124"/>
+ <location line="+2"/>
<source>Authenticated</source>
<translation>Uwierzytelniony</translation>
</message>
<message>
- <location filename="ClientUser.cpp" line="126"/>
+ <location line="+2"/>
<source>Muted (server)</source>
<translation>Wyciszony (przez serwer)</translation>
</message>
<message>
- <location filename="ClientUser.cpp" line="128"/>
+ <location line="+2"/>
<source>Deafened (server)</source>
<translation>Ogłuszony (przez serwer)</translation>
</message>
<message>
- <location filename="ClientUser.cpp" line="130"/>
+ <location line="+2"/>
<source>Local Mute</source>
<translation>Wyciszenie lokalne</translation>
</message>
<message>
- <location filename="ClientUser.cpp" line="132"/>
+ <location line="+2"/>
<source>Muted (self)</source>
<translation>Wyciszony (przez siebie)</translation>
</message>
<message>
- <location filename="ClientUser.cpp" line="134"/>
+ <location line="+2"/>
<source>Deafened (self)</source>
<translation>Ogłuszony (przez siebie)</translation>
</message>
@@ -3269,87 +3178,93 @@ It is &lt;b&gt;strongly&lt;/b&gt; recommended that you &lt;a href=&quot;http://m
<context>
<name>ConfigDialog</name>
<message>
- <location filename="ConfigDialog.ui" line="14"/>
+ <location filename="ConfigDialog.ui"/>
<source>Mumble Configuration</source>
<translation>Konfiguracja Mumble</translation>
</message>
<message>
- <location filename="ConfigDialogDelegate.mm" line="135"/>
+ <location/>
+ <location filename="ConfigDialogDelegate.mm" line="+135"/>
<source>Advanced</source>
<translation>Zaawansowane</translation>
</message>
<message>
- <location filename="ConfigDialog.mm" line="73"/>
+ <location filename="ConfigDialog.cpp" line="+51"/>
+ <location filename="ConfigDialog.mm" line="+73"/>
<source>Accept changes</source>
<translation>Akceptuj zmiany</translation>
</message>
<message>
- <location filename="ConfigDialog.mm" line="75"/>
+ <location line="+1"/>
+ <location filename="ConfigDialog.mm" line="+1"/>
<source>This button will accept current settings and return to the application.&lt;br /&gt;The settings will be stored to disk when you leave the application.</source>
<translation>Ten przycisk zaakceptuje zmiany i powróci do aplikacji.&lt;br /&gt;Ustawienia zostaną zapisane na dysku jak zamkniesz program.</translation>
</message>
<message>
- <location filename="ConfigDialog.mm" line="78"/>
+ <location line="+4"/>
+ <location filename="ConfigDialog.mm" line="+4"/>
<source>Reject changes</source>
<translation>Odrzuć zmiany</translation>
</message>
<message>
- <location filename="ConfigDialog.mm" line="80"/>
+ <location line="+1"/>
+ <location filename="ConfigDialog.mm" line="+1"/>
<source>This button will reject all changes and return to the application.&lt;br /&gt;The settings will be reset to the previous positions.</source>
<translation>Ten przycisk odrzuca zmiany i powraca do aplikacji. ustawienia zostaną przywrócone do poprzednich wartości.</translation>
</message>
<message>
- <location filename="ConfigDialog.mm" line="83"/>
+ <location line="+4"/>
+ <location filename="ConfigDialog.mm" line="+4"/>
<source>Apply changes</source>
<translation>Zastosuj zmiany</translation>
</message>
<message>
- <location filename="ConfigDialog.mm" line="84"/>
+ <location line="+1"/>
+ <location filename="ConfigDialog.mm" line="+1"/>
<source>This button will immediately apply all changes.</source>
<translation>Ten przycisk natychmiastowo uwzględnia zmiany.</translation>
</message>
<message>
- <location filename="ConfigDialog.mm" line="87"/>
+ <location line="+3"/>
+ <location filename="ConfigDialog.mm" line="+3"/>
<source>Undo changes for current page</source>
<translation>Cofnij zmiany na aktualnej karcie</translation>
</message>
<message>
- <location filename="ConfigDialog.mm" line="88"/>
+ <location line="+1"/>
+ <location filename="ConfigDialog.mm" line="+1"/>
<source>This button will revert any changes done on the current page to the most recent applied settings.</source>
<translation>Cofa dokonane zmiany na aktualnej karcie do najcześciej wybieranych ustawień.</translation>
</message>
<message>
- <location filename="ConfigDialog.mm" line="91"/>
+ <location line="+3"/>
+ <location filename="ConfigDialog.mm" line="+3"/>
<source>Restore defaults for current page</source>
<translation>Przywróć domyślne na aktualnej karcie</translation>
</message>
<message>
- <location filename="ConfigDialog.mm" line="94"/>
+ <location line="+1"/>
+ <location filename="ConfigDialog.mm" line="+1"/>
<source>This button will restore the settings for the current page only to their defaults. Other pages will not be changed.&lt;br /&gt;To restore all settings to their defaults, you will have to use this button on every page.</source>
<translation>Przywróci ustawienia domyślne dla obecnej karty. Inne karty nie zostaną zmienione. &lt;br /&gt;Aby przywrócić wszystkie opcje do domyślnych wartości musisz użyć tego przycisku na każdej stronie.</translation>
</message>
<message>
- <location filename="ConfigDialog.mm" line="0"/>
<source>This button will restore the settings for the current page only to their defaults. Other pages will be not be changed.&lt;br /&gt;To restore all settings to their defaults, you will have to use this button on every page.</source>
<translation type="obsolete">Przywraca domyślne ustawienia dla danej strony.</translation>
</message>
<message>
- <location filename="ConfigDialog.mm" line="0"/>
<source>Show all configuration items</source>
<translation type="obsolete">Pokazuj wszystkie pozycje do skonfigurowania</translation>
</message>
<message>
- <location filename="ConfigDialog.mm" line="0"/>
<source>&lt;b&gt;This will show all configuration items.&lt;/b&gt;&lt;br /&gt;Mumble contains a lot of configuration items that most users won&apos;t need to change. Checking this will show all configurable items.</source>
<translation type="obsolete">&lt;b&gt;Pokazuj wszystkie pozycje do skonfigurowania</translation>
</message>
<message>
- <location filename="ConfigDialog.mm" line="0"/>
<source>Expert Config</source>
<translation type="obsolete">Zaawansowane</translation>
</message>
<message>
- <location filename="ConfigDialog.mm" line="0"/>
<source>Tab 1</source>
<translation type="obsolete">Zakładka 1</translation>
</message>
@@ -3357,347 +3272,321 @@ It is &lt;b&gt;strongly&lt;/b&gt; recommended that you &lt;a href=&quot;http://m
<context>
<name>ConnectDialog</name>
<message>
- <location filename="ConfigDialog.mm" line="0"/>
<source>A&amp;ddress</source>
<translation type="obsolete">A&amp;dres</translation>
</message>
<message>
- <location filename="ConfigDialog.mm" line="0"/>
<source>&amp;Port</source>
<translation type="obsolete">&amp;Port</translation>
</message>
<message>
- <location filename="ConfigDialog.mm" line="0"/>
<source>&amp;Username</source>
<translation type="obsolete">&amp;Użytkownik</translation>
</message>
<message>
- <location filename="ConfigDialog.mm" line="0"/>
<source>&amp;Password</source>
<translation type="obsolete">&amp;Hasło</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="732"/>
+ <location filename="ConnectDialog.cpp" line="+732"/>
<source>&amp;Connect</source>
<translation>&amp;Połącz</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="0"/>
<source>Cancel</source>
<translation type="obsolete">Anuluj</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="0"/>
<source>&amp;Add</source>
<translation type="obsolete">&amp;Dodaj</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="0"/>
<source>&amp;Remove</source>
<translation type="obsolete">&amp;Usuń</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="0"/>
<source>&amp;Custom Servers</source>
<translation type="obsolete">&amp;Niestandardowe serwery</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="0"/>
<source>Server &amp;Browser</source>
<translation type="obsolete">Przeglądarka &amp;serwerów</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="0"/>
<source>Address</source>
<translation type="obsolete">Adres IP</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="0"/>
<source>URL</source>
<translation type="obsolete">URL</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="0"/>
<source>C&amp;opy to custom</source>
<translation type="obsolete">&amp;Kopiuj do niestandardowych</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="0"/>
<source>&amp;View Webpage</source>
<translation type="obsolete">&amp;Zobacz WWW</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="863"/>
+ <location line="+131"/>
<source>Connecting to %1</source>
<translation>Podłączanie do %1</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="863"/>
+ <location line="-466"/>
+ <location line="+466"/>
<source>Enter username</source>
<translation>Nazwa użytkownika</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="397"/>
+ <location line="-466"/>
<source>Adding host %1</source>
<translation>Dodawanie hosta %1</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="48"/>
+ <location filename="ConnectDialog.ui"/>
+ <location filename="ConnectDialog.cpp" line="+63"/>
<source>Servername</source>
<translation>Nazwa serwera</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="461"/>
+ <location filename="ConnectDialog.cpp" line="+1"/>
<source>Hostname</source>
<translation>Host</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="464"/>
+ <location line="+3"/>
<source>Bonjour name</source>
<translation>Nazwa Bonjur</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="467"/>
+ <location line="+3"/>
<source>Port</source>
<translation>Port</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="468"/>
+ <location line="+1"/>
<source>Addresses</source>
<translation>Adresy</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="471"/>
+ <location line="+3"/>
<source>Website</source>
<translation>Strona WWW</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="474"/>
+ <location line="+3"/>
<source>Packet loss</source>
<translation>Utracone pakiety</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="477"/>
+ <location line="+3"/>
<source>Ping (80%)</source>
<translation>Ping (80%)</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="480"/>
+ <location line="+0"/>
+ <location line="+2"/>
<source>%1 ms</source>
<translation>%1 ms</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="479"/>
+ <location line="+0"/>
<source>Ping (95%)</source>
<translation>Ping (95%)</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="481"/>
+ <location line="+2"/>
<source>Bandwidth</source>
<translation>Przepustowość</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="481"/>
+ <location line="+0"/>
<source>%1 kbit/s</source>
<translation>%1 kbit/s</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="771"/>
+ <location line="+290"/>
<source>&amp;Filters</source>
<translation>&amp;Filtry</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="58"/>
+ <location filename="ConnectDialog.ui"/>
+ <location filename="ConnectDialog.cpp" line="-289"/>
<source>Users</source>
<translation>Użytkownicy</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="483"/>
+ <location filename="ConnectDialog.cpp" line="+1"/>
<source>Version</source>
<translation>Wersja</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="0"/>
<source>Connect</source>
<translation type="obsolete">Połącz</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="0"/>
<source>Add New...</source>
<translation type="obsolete">Dodaj nowy...</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="0"/>
<source>Filters</source>
<translation type="obsolete">Filtry</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="0"/>
<source>Mumble</source>
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="1431"/>
+ <location line="+948"/>
<source>Failed to fetch server list</source>
<translation>Nie udało sie pobrać listy</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="0"/>
<source>&amp;Label</source>
<translation type="obsolete">&amp;Nazwa</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="0"/>
<source>Label</source>
<translation type="obsolete">Nazwa</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="0"/>
<source>-Unnamed entry-</source>
<translation type="obsolete">Bez Nazwy</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="14"/>
+ <location filename="ConnectDialog.ui"/>
<source>Mumble Server Connect</source>
<translation>Lista serwerów Mumble</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="53"/>
+ <location/>
<source>Ping</source>
<translation>Ping</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="73"/>
+ <location/>
<source>Remove from Favorites</source>
<translation>Usuń z Ulubionych</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="0"/>
<source>Edit...</source>
<translation type="obsolete">Edytuj...</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="86"/>
+ <location/>
<source>Add custom server</source>
<translation>Dodaj serwer niestandardowy</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="0"/>
<source>Add to Favorites</source>
<translation type="obsolete">Dodaj do Ulubionych</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="0"/>
<source>Open Webpage</source>
<translation type="obsolete">Otwórz stronę WWW</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="0"/>
<source>Show Reachable</source>
<translation type="obsolete">Pokazuj osiągalne</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="110"/>
+ <location/>
<source>Show all servers that respond to ping</source>
<translation>Wyświetl wszystkie serwery reagujące na ping</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="0"/>
<source>Show Populated</source>
<translation type="obsolete">Pokazuj zaludnione</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="124"/>
+ <location/>
<source>Show all servers with users</source>
<translation>Wyświetl serwery z użytkownikami</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="0"/>
<source>Show All</source>
<translation type="obsolete">Pokazuj wszystkie</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="135"/>
+ <location/>
<source>Show all servers</source>
<translation>Wyświetl wszystkie serwery</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="140"/>
+ <location/>
<source>&amp;Copy</source>
<translation>&amp;Kopiuj</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="143"/>
+ <location/>
<source>Copy favorite link to clipboard</source>
<translation>Kopiuj ulubiony do schowka</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="148"/>
+ <location/>
<source>&amp;Paste</source>
<translation>&amp;Wklej</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="151"/>
+ <location/>
<source>Paste favorite from clipboard</source>
<translation>Wklej ulubiony ze schowka</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="0"/>
<source>&amp;Cancel</source>
<translation type="obsolete">&amp;Anuluj</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="0"/>
<source>Unknown</source>
<translation type="obsolete">Nieznany</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="0"/>
<source>New</source>
<translation type="obsolete">Nowy</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="0"/>
<source>Add</source>
<translation type="obsolete">Dodaj</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="0"/>
<source>Update</source>
<translation type="obsolete">Aktualizuj</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="78"/>
+ <location/>
<source>&amp;Edit...</source>
<translation>&amp;Edytuj...</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="83"/>
+ <location/>
+ <location filename="ConnectDialog.cpp" line="-697"/>
<source>&amp;Add New...</source>
<translation>&amp;Dodaj nowy...</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="91"/>
+ <location/>
<source>Add to &amp;Favorites</source>
<translation>Dodaj do &amp;Ulubionych</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="96"/>
+ <location/>
<source>Open &amp;Webpage</source>
<translation>Otwórz &amp;stronę</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="107"/>
+ <location/>
<source>Show &amp;Reachable</source>
<translation>Pokaż &amp;wsiągalne</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="121"/>
+ <location/>
<source>Show &amp;Populated</source>
<translation>Pokaż &amp;zaludnione</translation>
</message>
<message>
- <location filename="ConnectDialog.ui" line="132"/>
+ <location/>
<source>Show &amp;All</source>
<translation>Pokaż &amp;wszystkie</translation>
</message>
@@ -3705,70 +3594,70 @@ It is &lt;b&gt;strongly&lt;/b&gt; recommended that you &lt;a href=&quot;http://m
<context>
<name>ConnectDialogEdit</name>
<message>
- <location filename="ConnectDialogEdit.ui" line="14"/>
+ <location filename="ConnectDialogEdit.ui"/>
<source>Edit Server</source>
<translation>Edycja Serwera</translation>
</message>
<message>
- <location filename="ConnectDialogEdit.ui" line="20"/>
+ <location/>
<source>&amp;Servername</source>
<translation>&amp;Nazwa serwera</translation>
</message>
<message>
- <location filename="ConnectDialogEdit.ui" line="30"/>
+ <location/>
<source>Name of the server</source>
<translation>Nazwa serwera</translation>
</message>
<message>
- <location filename="ConnectDialogEdit.ui" line="33"/>
+ <location/>
<source>&lt;b&gt;Name&lt;/b&gt;&lt;br/&gt;
Name of the server. This is what the server will be named like in your serverlist and can be chosen freely.</source>
<translation>&lt;b&gt;Nazwa&lt;/b&gt;&lt;br/&gt;Nazwa serwera. Ustala nazwę serwera która będzie widoczna na liście serwerów. Może być wybrana dowolnie.</translation>
</message>
<message>
- <location filename="ConnectDialogEdit.ui" line="41"/>
+ <location/>
<source>A&amp;ddress</source>
<translation>A&amp;dres</translation>
</message>
<message>
- <location filename="ConnectDialogEdit.ui" line="51"/>
+ <location/>
<source>Internet address of the server.</source>
<translation>Adres Internetowy serwera.</translation>
</message>
<message>
- <location filename="ConnectDialogEdit.ui" line="54"/>
+ <location/>
<source>&lt;b&gt;Address&lt;/b&gt;&lt;br/&gt;
Internet address of the server. This can be a normal hostname, an IPv4/IPv6 address or a Bonjour service identifier. Bonjour service identifiers have to be prefixed with a &apos;@&apos; to be recognized by Mumble.</source>
<translation>&lt;b&gt;Adres&lt;/b&gt;&lt;br/&gt;Adres Internetowy serwera. To może być zwykła nazwa hosta, adres IPv4/IPv6 lub adres usługi Bonjour. Identyfikator usługi Bonjour musi być rozpoczęty znakiem @, aby był rozpoznawany przez Mumble.</translation>
</message>
<message>
- <location filename="ConnectDialogEdit.ui" line="62"/>
+ <location/>
<source>&amp;Port</source>
<translation>&amp;Port</translation>
</message>
<message>
- <location filename="ConnectDialogEdit.ui" line="72"/>
+ <location/>
<source>Port on which the server is listening</source>
<translation>Port na, którym nasłuchuje serwer</translation>
</message>
<message>
- <location filename="ConnectDialogEdit.ui" line="75"/>
+ <location/>
<source>&lt;b&gt;Port&lt;/b&gt;&lt;br/&gt;
Port on which the server is listening. If the server is identified by a Bonjour service identifier this field will be ignored.</source>
<translation>&lt;b&gt;Port&lt;/b&gt;&lt;br/&gt;Port na, którym nasłuchuje serwer. Jeśli serwer jest identyfikowany przez usługę Bonjour pole te będzie ignorowane.</translation>
</message>
<message>
- <location filename="ConnectDialogEdit.ui" line="83"/>
+ <location/>
<source>&amp;Username</source>
<translation>&amp;Użytkownik</translation>
</message>
<message>
- <location filename="ConnectDialogEdit.ui" line="93"/>
+ <location/>
<source>Username to send to the server</source>
<translation>Nazwa użytkownika na serwerze</translation>
</message>
<message>
- <location filename="ConnectDialogEdit.ui" line="96"/>
+ <location/>
<source>&lt;b&gt;Username&lt;/b&gt;&lt;br/&gt;
Username to send to the server. Be aware that the server can impose restrictions on how a username might look like. Also your username could already be taken by another user.</source>
<translation>&lt;b&gt;Nazwa użytkownika&lt;/b&gt;&lt;br/&gt;Nazwa użytkownika na serwerze. Zwróć uwagę na to, że serwer może nażucać wygląd poszczególnych nazw. Twoja nazwa użytkownika może być też po prostu zajęta przez kogoś innego.</translation>
@@ -3777,7 +3666,7 @@ Username to send to the server. Be aware that the server can impose restrictions
<context>
<name>CoreAudioSystem</name>
<message>
- <location filename="CoreAudio.cpp" line="85"/>
+ <location filename="CoreAudio.cpp" line="+85"/>
<source>Default Device</source>
<translation>Urządzenie domyślne</translation>
</message>
@@ -3785,67 +3674,68 @@ Username to send to the server. Be aware that the server can impose restrictions
<context>
<name>CrashReporter</name>
<message>
- <location filename="CrashReporter.cpp" line="36"/>
+ <location filename="CrashReporter.cpp" line="+36"/>
<source>Mumble Crash Report</source>
<translation>Raportowanie Błędów Mumble</translation>
</message>
<message>
- <location filename="CrashReporter.cpp" line="43"/>
+ <location line="+6"/>
<source>&lt;p&gt;&lt;b&gt;We&apos;re terribly sorry, but it seems Mumble has crashed. Do you want to send a crash report to the Mumble developers?&lt;/b&gt;&lt;/p&gt;&lt;p&gt;The crash report contains a partial copy of Mumble&apos;s memory at the time it crashed, and will help the developers fix the problem.&lt;/p&gt;</source>
<translation>&lt;p&gt;&lt;b&gt;Okropnie nam przykro ale wygląda na to, że Mumble się wysypał. Czy chcesz wysłać raport z błędem do twórców programu?&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Raport ten zawiera kopię pamięci Mumble z momentu, w którym program przestał funkcjonować, pomoże on w dużej mierze naszej drużynie szybko usunąć błąd, który spowodował ten problem.&lt;/p&gt;</translation>
</message>
<message>
- <location filename="CrashReporter.cpp" line="50"/>
+ <location line="+8"/>
<source>Email address (optional)</source>
<translation>Adres email (opcjonalnie)</translation>
</message>
<message>
- <location filename="CrashReporter.cpp" line="59"/>
+ <location line="+9"/>
<source>Please describe briefly, in English, what you were doing at the time of the crash</source>
<translation>Prosimy o krótki opis czynności w języku Angielskim, które wykonywałeś podczas wystąpienia błędu</translation>
</message>
<message>
- <location filename="CrashReporter.cpp" line="64"/>
+ <location line="+5"/>
<source>Send Report</source>
<translation>Wyślij raport</translation>
</message>
<message>
- <location filename="CrashReporter.cpp" line="67"/>
+ <location line="+3"/>
<source>Don&apos;t send report</source>
<translation>Nie wysyłaj</translation>
</message>
<message>
- <location filename="CrashReporter.cpp" line="92"/>
+ <location line="+25"/>
<source>Crash upload successful</source>
<translation>Raport został przesłany pomyślnie</translation>
</message>
<message>
- <location filename="CrashReporter.cpp" line="92"/>
+ <location line="+0"/>
<source>Thank you for helping make Mumble better!</source>
<translation>Dziękujemy za pomoc przy Mumble! Mumble stanie się lepszy dzięki tobie!</translation>
</message>
<message>
- <location filename="CrashReporter.cpp" line="96"/>
+ <location line="+2"/>
+ <location line="+2"/>
<source>Crash upload failed</source>
<translation>Nie udało się wysłać raportu</translation>
</message>
<message>
- <location filename="CrashReporter.cpp" line="94"/>
+ <location line="-2"/>
<source>We&apos;re really sorry, but it appears the crash upload has failed with error %1 %2. Please inform a developer.</source>
<translation>Bardzo nam przykro ale wygląda na to, że wysyłanie raportu nie powiodło się z powodu %1 %2. Prosimy o kontakt z twórcami aplikacji.</translation>
</message>
<message>
- <location filename="CrashReporter.cpp" line="96"/>
+ <location line="+2"/>
<source>This really isn&apos;t funny, but apparently there&apos;s a bug in the crash reporting code, and we&apos;ve failed to upload the report. You may inform a developer about error %1</source>
<translation>To zapewne nie jest śmieszne, ale wygląda na to, że istnieje mały błąd w narzędziu do wysyłania raportów. Możesz powiadomić twórców programu o błędzie %1</translation>
</message>
<message>
- <location filename="CrashReporter.cpp" line="211"/>
+ <location line="+115"/>
<source>Uploading crash report</source>
<translation>Wysyłanie raportu</translation>
</message>
<message>
- <location filename="CrashReporter.cpp" line="211"/>
+ <location line="+0"/>
<source>Abort upload</source>
<translation>Przerwij</translation>
</message>
@@ -3853,22 +3743,22 @@ Username to send to the server. Be aware that the server can impose restrictions
<context>
<name>DXAudioInput</name>
<message>
- <location filename="DirectSound.cpp" line="558"/>
+ <location filename="DirectSound.cpp" line="+558"/>
<source>Opening chosen DirectSound Input failed. Default device will be used.</source>
<translation>Otwieranie wybranego wejścia dźwięku DirectSound nie powiodło się. Zostanie użyte urządzenie domyślne.</translation>
</message>
<message>
- <location filename="DirectSound.cpp" line="174"/>
+ <location line="-384"/>
<source>Default DirectSound Voice Input</source>
<translation>Domyślne wejście dźwięku DirectSound</translation>
</message>
<message>
- <location filename="DirectSound.cpp" line="637"/>
+ <location line="+463"/>
<source>Opening chosen DirectSound Input device failed. No microphone capture will be done.</source>
<translation>Otwieranie wybranego wejścia dźwięku nie powiodło się. Dźwięk z mikrofonu nie będzie pobierany.</translation>
</message>
<message>
- <location filename="DirectSound.cpp" line="632"/>
+ <location line="-5"/>
<source>Lost DirectSound input device.</source>
<translation>Utracono urządzenie wejścia DirectSound.</translation>
</message>
@@ -3876,22 +3766,22 @@ Username to send to the server. Be aware that the server can impose restrictions
<context>
<name>DXAudioOutput</name>
<message>
- <location filename="DirectSound.cpp" line="464"/>
+ <location line="-168"/>
<source>Opening chosen DirectSound Output failed. No audio will be heard.</source>
<translation>Otwieranie wybranego wyjścia dźwięku nie powiodło się. Żaden dźwięk nie będzie słuszany.</translation>
</message>
<message>
- <location filename="DirectSound.cpp" line="382"/>
+ <location line="-82"/>
<source>Opening chosen DirectSound Output failed. Default device will be used.</source>
<translation>Otwieranie wybranego wyjścia dźwięku DirectSound nie powiodło się. Zostanie użyte urządzenie domyślne.</translation>
</message>
<message>
- <location filename="DirectSound.cpp" line="134"/>
+ <location line="-248"/>
<source>Default DirectSound Voice Output</source>
<translation>Domyślne wyjście dźwięku DirectSound</translation>
</message>
<message>
- <location filename="DirectSound.cpp" line="460"/>
+ <location line="+326"/>
<source>Lost DirectSound output device.</source>
<translation>Utracono urządzenie wyjścia DirectSound.</translation>
</message>
@@ -3899,18 +3789,17 @@ Username to send to the server. Be aware that the server can impose restrictions
<context>
<name>Database</name>
<message>
- <location filename="DirectSound.cpp" line="0"/>
<source>Mumble</source>
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location filename="Database.cpp" line="84"/>
+ <location filename="Database.cpp" line="+84"/>
<source>Mumble failed to initialize a database in any
of the possible locations.</source>
<translation>Nie udało się zainicjalizować bazy danych w żadnej z podanych lokacji.</translation>
</message>
<message>
- <location filename="Database.cpp" line="91"/>
+ <location line="+7"/>
<source>The database &apos;%1&apos; is read-only. Mumble can not store server settings (ie. SSL certificates) until you fix this problem.</source>
<translation>Baza danych &apos;%1&apos; jest tylko do odczytu. Mumble nie może przechowywać ustawień serwera (np. certyfikatów SSL) dopóki nie naprawisz tego problemu.</translation>
</message>
@@ -3918,62 +3807,62 @@ of the possible locations.</source>
<context>
<name>GlobalShortcut</name>
<message>
- <location filename="GlobalShortcut.ui" line="17"/>
+ <location filename="GlobalShortcut.ui"/>
<source>Shortcuts</source>
<translation>Skróty</translation>
</message>
<message>
- <location filename="GlobalShortcut.ui" line="65"/>
+ <location/>
<source>List of configured shortcuts</source>
<translation>Lista skonfigurowanych skrótów</translation>
</message>
<message>
- <location filename="GlobalShortcut.ui" line="99"/>
+ <location/>
<source>Function</source>
<translation>Funkcja</translation>
</message>
<message>
- <location filename="GlobalShortcut.ui" line="104"/>
+ <location/>
<source>Data</source>
<translation>Opcja</translation>
</message>
<message>
- <location filename="GlobalShortcut.ui" line="109"/>
+ <location/>
<source>Shortcut</source>
<translation>Skrót</translation>
</message>
<message>
- <location filename="GlobalShortcut.ui" line="114"/>
+ <location/>
<source>Suppress</source>
<translation>Rezerwuj</translation>
</message>
<message>
- <location filename="GlobalShortcut.ui" line="23"/>
+ <location/>
<source>Add new shortcut</source>
<translation>Dodaj nowy skrót</translation>
</message>
<message>
- <location filename="GlobalShortcut.ui" line="26"/>
+ <location/>
<source>This will add a new global shortcut</source>
<translation>Dodaje nowy, globalny skrót</translation>
</message>
<message>
- <location filename="GlobalShortcut.ui" line="29"/>
+ <location/>
<source>&amp;Add</source>
<translation>&amp;Dodaj</translation>
</message>
<message>
- <location filename="GlobalShortcut.ui" line="39"/>
+ <location/>
<source>Remove selected shortcut</source>
<translation>Usuń zaznaczony skrót</translation>
</message>
<message>
- <location filename="GlobalShortcut.ui" line="42"/>
+ <location/>
<source>This will permanently remove a selected shortcut.</source>
<translation>Trwale usunie wybrany skrót.</translation>
</message>
<message>
- <location filename="GlobalShortcut.ui" line="45"/>
+ <location/>
<source>&amp;Remove</source>
<translation>&amp;Usuń</translation>
</message>
@@ -3981,57 +3870,51 @@ of the possible locations.</source>
<context>
<name>GlobalShortcutConfig</name>
<message>
- <location filename="GlobalShortcut.cpp" line="654"/>
+ <location filename="GlobalShortcut.cpp" line="+654"/>
<source>Shortcuts</source>
<translation>Skróty</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="0"/>
<source>Function</source>
<translation type="obsolete">Funkcja</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="0"/>
<source>Shortcut</source>
<translation type="obsolete">Skrót</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="0"/>
<source>Shortcut bound to %1.</source>
<translation type="obsolete">Skrót przypisany do %1.</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="0"/>
<source>&lt;b&gt;This is the global shortcut bound to %1&lt;/b&gt;&lt;br /&gt;Click this field and then the desired key/button combo to rebind. Double-click to clear.</source>
<translation type="obsolete">&lt;b&gt;To jest globalny skrót przypisany do %1&lt;/b&gt;&lt;br /&gt; Kliknij na tym polu a potem użyj jakiegoś klawisza. Aby wyczyścić dane pole kliknij dwa razy.</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="0"/>
<source>Double-click an entry to clear the shortcut.</source>
<translation type="obsolete">Kliknij dwa razy, aby zresetować dany skrót.</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="0"/>
<source>Suppress</source>
<translation type="obsolete">Zarezerwuj</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="692"/>
+ <location line="+38"/>
<source>Shortcut button combination.</source>
<translation>Kombinacja klawiszy skrótów.</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="695"/>
+ <location line="+1"/>
<source>&lt;b&gt;This is the global shortcut key combination.&lt;/b&gt;&lt;br /&gt;Click this field and then press the desired key/button combo to rebind. Double-click to clear.</source>
<translation>&lt;b&gt;Globalna kombinacja klawiszy.&lt;/b&gt;&lt;br /&gt;Kliknij w to pole oraz naciśnij docelowy klawisz lub kombinację klawiszy. Podwójne kliknięcie czyści pole.</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="697"/>
+ <location line="+4"/>
<source>Suppress keys from other applications</source>
<translation>Zablokuj skrót innej aplikacji</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="700"/>
+ <location line="+1"/>
<source>&lt;b&gt;This hides the button presses from other applications.&lt;/b&gt;&lt;br /&gt;Enabling this will hide the button (or the last button of a multi-button combo) from other applications. Note that not all buttons can be suppressed.</source>
<translation>&lt;b&gt;Ukrywa wciśnięcia przycisków przed innymi aplikacjami.&lt;/b&gt;&lt;br /&gt; Włączając tę opcję ukrywasz przycisk przed inną aplikacją (lub ostatni z kombinacji multi-przycisków). Nie wszystkie przyciski da się tak ukryć.</translation>
</message>
@@ -4039,7 +3922,7 @@ of the possible locations.</source>
<context>
<name>GlobalShortcutMacInit</name>
<message>
- <location filename="GlobalShortcut_macx.cpp" line="62"/>
+ <location filename="GlobalShortcut_macx.cpp" line="+60"/>
<source>Mumble has detected that it is unable to receive Global Shortcut events when it is in the background.&lt;br /&gt;&lt;br /&gt;This is because the Universal Access feature called &apos;Enable access for assistive devices&apos; is currently disabled.&lt;br /&gt;&lt;br /&gt;Please &lt;a href=&quot; &quot;&gt;enable this setting&lt;/a&gt; and continue when done.</source>
<translation>Mumble wykrył, że nie jest w stanie odebrać Global Shortcut events kiedy działa w tle.&lt;br /&gt;&lt;br /&gt;To dlatego, że Universal Access zwany &quot;Uaktywnij dostęp dla assitive devices&quot; jest obecnie wyłączony.&lt;br /&gt;&lt;br /&gt;Prosimy &lt;a href=&quot; &quot;&gt;o włączenie tego ustawienia&lt;/a&gt; by kontynuować.</translation>
</message>
@@ -4047,82 +3930,82 @@ of the possible locations.</source>
<context>
<name>GlobalShortcutTarget</name>
<message>
- <location filename="GlobalShortcutTarget.ui" line="14"/>
+ <location filename="GlobalShortcutTarget.ui"/>
<source>Whisper Target</source>
<translation>Szepnij do</translation>
</message>
<message>
- <location filename="GlobalShortcutTarget.ui" line="20"/>
+ <location/>
<source>Whisper to list of Users</source>
<translation>Szepnij do listy użytkowników</translation>
</message>
<message>
- <location filename="GlobalShortcutTarget.ui" line="34"/>
+ <location/>
<source>Channel Target</source>
<translation>Docelowy kanał</translation>
</message>
<message>
- <location filename="GlobalShortcutTarget.ui" line="63"/>
+ <location/>
<source>Restrict to Group</source>
<translation>Ogranicz dla grupy</translation>
</message>
<message>
- <location filename="GlobalShortcutTarget.ui" line="70"/>
+ <location/>
<source>If specified, only members of this group will receive the whisper.</source>
<translation>Jeśli ustawione, tylko użytkownicy tej grupy usłyszą szept.</translation>
</message>
<message>
- <location filename="GlobalShortcutTarget.ui" line="81"/>
+ <location/>
<source>If checked the whisper will also be transmitted to linked channels.</source>
<translation>Jeśli zaznaczone, szept będzie również wysyłany do połączonych kanałów.</translation>
</message>
<message>
- <location filename="GlobalShortcutTarget.ui" line="84"/>
+ <location/>
<source>Whisper to Linked channels</source>
<translation>Szepnij do połączonych kanałów</translation>
</message>
<message>
- <location filename="GlobalShortcutTarget.ui" line="91"/>
+ <location/>
<source>If checked this whisper will also be sent to the subchannels of the channel target.</source>
<translation>Jeśli zaznaczone, szept będzie również wysyłany do pod-kanałów danego kanału.</translation>
</message>
<message>
- <location filename="GlobalShortcutTarget.ui" line="94"/>
+ <location/>
<source>Whisper to subchannels</source>
<translation>Szepnij do pod-kanałów</translation>
</message>
<message>
- <location filename="GlobalShortcutTarget.ui" line="110"/>
+ <location/>
<source>List of users</source>
<translation>Lista użytkowników</translation>
</message>
<message>
- <location filename="GlobalShortcutTarget.ui" line="122"/>
+ <location/>
<source>Add</source>
<translation>Dodaj</translation>
</message>
<message>
- <location filename="GlobalShortcutTarget.ui" line="129"/>
+ <location/>
<source>Remove</source>
<translation>Usuń</translation>
</message>
<message>
- <location filename="GlobalShortcutTarget.ui" line="166"/>
+ <location/>
<source>Whisper to Channel</source>
<translation>Szepnij do kanału</translation>
</message>
<message>
- <location filename="GlobalShortcutTarget.ui" line="173"/>
+ <location/>
<source>Modifiers</source>
<translation>Zmienne</translation>
</message>
<message>
- <location filename="GlobalShortcutTarget.ui" line="179"/>
+ <location/>
<source>Do not send positional audio information when using this whisper shortcut.</source>
<translation>Nie wysyłaj pozycyjnego dźwięku podczas szeptu.</translation>
</message>
<message>
- <location filename="GlobalShortcutTarget.ui" line="182"/>
+ <location/>
<source>Ignore positional audio</source>
<translation>Ignoruj dźwięk pozycyjny</translation>
</message>
@@ -4130,7 +4013,7 @@ of the possible locations.</source>
<context>
<name>GlobalShortcutX</name>
<message>
- <location filename="GlobalShortcut_unix.cpp" line="325"/>
+ <location filename="GlobalShortcut_unix.cpp" line="+325"/>
<source>Mouse %1</source>
<translation>Mysz %1</translation>
</message>
@@ -4138,7 +4021,7 @@ of the possible locations.</source>
<context>
<name>LCD</name>
<message>
- <location filename="LCD.cpp" line="280"/>
+ <location filename="LCD.cpp" line="+280"/>
<source>Not connected</source>
<translation>Niepołączony</translation>
</message>
@@ -4146,32 +4029,29 @@ of the possible locations.</source>
<context>
<name>LCDConfig</name>
<message>
- <location filename="LCD.cpp" line="0"/>
<source>Graphic</source>
<translation type="obsolete">Grafika</translation>
</message>
<message>
- <location filename="LCD.cpp" line="0"/>
<source>Character</source>
<translation type="obsolete">Tekst</translation>
</message>
<message>
- <location filename="LCD.cpp" line="120"/>
+ <location line="-160"/>
<source>Enable this device</source>
<translation>Uaktywnij to urządzenie</translation>
</message>
<message>
- <location filename="LCD.cpp" line="129"/>
+ <location line="+9"/>
<source>LCD</source>
<translation>LCD</translation>
</message>
<message>
- <location filename="LCD.ui" line="14"/>
+ <location filename="LCD.ui"/>
<source>Form</source>
<translation>Formularz</translation>
</message>
<message>
- <location filename="LCD.ui" line="0"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -4189,22 +4069,21 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;p, li { white-space: pre-wrap; }&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;To jest lista wszystkich dostępnych urządzeń LCD w twoim systemie. Listuje wszystkie urządzdenia alfabetycznie oraz podaje informacje o rozmiarze ekranu czy jego typie. Mumble wspiera wyświetlanie napisów na kilku urządzeniach LCD jednocześnie.&lt;/p&gt;&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;span style=&quot; font-weight:600; font-style:italic;&quot;&gt;Typ:&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;Mumble wspierda 2 rodzaje urządzeń LCD. Graficzny ekran LCD pozwala na wypełnienie pojedyńczych pikseli na ekranie, natomiast tekstowy ekran LCD pozwala na pokazywanie poszczególnych znaków na ekranie. Niektóre opcje programu działają tylko na graficznym ekranie LCD.&lt;/p&gt;&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;span style=&quot; font-weight:600; font-style:italic;&quot;&gt;Rozmiar:&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;Te pole ocenia rozmiar urządzenia LCD. Piksele dla graficznych ekranów LCD lub tekstowe dla tekstowych LCD.&lt;/p&gt;&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;span style=&quot; font-weight:600; font-style:italic;&quot;&gt;Uaktywniony:&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-weight:600; font-style:italic;&quot;&gt;&lt;span style=&quot; font-weight:400; font-style:normal;&quot;&gt;Ta opcja decyduje czy na danym ekranie LCD jest coś wyświetlane czy nie.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="LCD.ui" line="34"/>
+ <location/>
<source>Devices</source>
<translation>Urządzenia</translation>
</message>
<message>
- <location filename="LCD.ui" line="50"/>
+ <location/>
<source>Name</source>
<translation>Nazwa</translation>
</message>
<message>
- <location filename="LCD.ui" line="0"/>
<source>Type</source>
<translation type="obsolete">Typ</translation>
</message>
<message>
- <location filename="LCD.ui" line="26"/>
+ <location/>
<source>&lt;p&gt;This is the list of available LCD devices on your system. It lists devices by name, but also includes the size of the display. Mumble supports outputting to several LCD devices at a time.&lt;/p&gt;
&lt;h3&gt;Size:&lt;/h3&gt;
&lt;p&gt;
@@ -4219,27 +4098,27 @@ Te pole opisuje rozmiar urządzenia LCD. Rozmiar jest podany w pikselach lub w z
&lt;p&gt;Te pole decyduje czy Mumble powinno używać danego urządzenia LCD czy nie.&lt;/p&gt;</translation>
</message>
<message>
- <location filename="LCD.ui" line="55"/>
+ <location/>
<source>Size</source>
<translation>Rozmiar</translation>
</message>
<message>
- <location filename="LCD.ui" line="60"/>
+ <location/>
<source>Enabled</source>
<translation>Uaktywniony</translation>
</message>
<message>
- <location filename="LCD.ui" line="77"/>
+ <location/>
<source>Views</source>
<translation>Podgląd</translation>
</message>
<message>
- <location filename="LCD.ui" line="83"/>
+ <location/>
<source>Minimum Column Width</source>
<translation>Minimalna szerokość kolumny</translation>
</message>
<message>
- <location filename="LCD.ui" line="90"/>
+ <location/>
<source>&lt;p&gt;This option decides the minimum width a column in the User View.&lt;/p&gt;
&lt;p&gt;If too many people are speaking at once, the User View will split itself into columns. You can use this option to pick a compromise between number of users shown on the LCD, and width of user names.&lt;/p&gt;
</source>
@@ -4247,12 +4126,11 @@ Te pole opisuje rozmiar urządzenia LCD. Rozmiar jest podany w pikselach lub w z
&lt;p&gt;Jeśli zbyt wiely ludzi mówi na raz widok użytkownika podzieli się na dwie kolumny. Możesz używać tej opcji, aby wybrać kompromis pomiędzy ilością użytkowników pokazanych na ekranie a rozmiarem ich nazw.&lt;/p&gt;</translation>
</message>
<message>
- <location filename="LCD.ui" line="128"/>
+ <location/>
<source>This setting decides the width of column splitter.</source>
<translation>Pomaga w ustaleniu szerokości kolumny podzielonych okien.</translation>
</message>
<message>
- <location filename="LCD.ui" line="0"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -4265,17 +4143,15 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;p, li { white-space: pre-wrap; }&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Ta opcja ustawia minimalną szerokość kolumny w Widoku Graczy.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;Jeśli rozmawia zbyt duża ilość ludzi jednocześnie to kolumna z Widokiem Graczy podzieli się na dwie różne kolumny.&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;Możesz użyc tej opcji aby wybrać kompromis pomiędzy liczbą wyświetlanych graczy na ekranie LCD oraz szerokością nazw graczy.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="LCD.ui" line="0"/>
<source>TextLabel</source>
<translation type="obsolete">Tekst</translation>
</message>
<message>
- <location filename="LCD.ui" line="121"/>
+ <location/>
<source>Splitter Width</source>
<translation>Szerokość rozdzielnika</translation>
</message>
<message>
- <location filename="LCD.ui" line="0"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -4287,188 +4163,178 @@ p, li { white-space: pre-wrap; }
<context>
<name>Log</name>
<message>
- <location filename="Log.cpp" line="218"/>
+ <location filename="Log.cpp" line="+218"/>
<source>Debug</source>
<translation>Debug</translation>
</message>
<message>
- <location filename="Log.cpp" line="219"/>
+ <location line="+1"/>
<source>Critical</source>
<translation>Błąd krytyczny</translation>
</message>
<message>
- <location filename="Log.cpp" line="220"/>
+ <location line="+1"/>
<source>Warning</source>
<translation>Ostrzeżenie</translation>
</message>
<message>
- <location filename="Log.cpp" line="221"/>
+ <location line="+1"/>
<source>Information</source>
<translation>Informacja</translation>
</message>
<message>
- <location filename="Log.cpp" line="222"/>
+ <location line="+1"/>
<source>Server Connected</source>
<translation>Połączenie z serwerem</translation>
</message>
<message>
- <location filename="Log.cpp" line="223"/>
+ <location line="+1"/>
<source>Server Disconnected</source>
<translation>Rozłączenie od serwera</translation>
</message>
<message>
- <location filename="Log.cpp" line="0"/>
<source>Player Joined Server</source>
<translation type="obsolete">Użytkownik dołączył do serwera</translation>
</message>
<message>
- <location filename="Log.cpp" line="0"/>
<source>Player Left Server</source>
<translation type="obsolete">Użytkownik opuścił serwer</translation>
</message>
<message>
- <location filename="Log.cpp" line="0"/>
<source>Player kicked (you or by you)</source>
<translation type="obsolete">Użytkownik wykopany (ty lub przez ciebie) </translation>
</message>
<message>
- <location filename="Log.cpp" line="0"/>
<source>Player kicked</source>
<translation type="obsolete">Użytkownik wykopany</translation>
</message>
<message>
- <location filename="Log.cpp" line="228"/>
+ <location line="+5"/>
<source>You self-muted/deafened</source>
<translation>Ogłuszenie oraz wyciszenie (twoje)</translation>
</message>
<message>
- <location filename="Log.cpp" line="229"/>
+ <location line="+1"/>
<source>Other self-muted/deafened</source>
<translation>Ogłuszenie oraz wyciszenie (kogoś innego)</translation>
</message>
<message>
- <location filename="Log.cpp" line="0"/>
<source>Player muted (you)</source>
<translation type="obsolete">Użytkownik wyciszył twój mikrofon</translation>
</message>
<message>
- <location filename="Log.cpp" line="0"/>
<source>Player muted (by you)</source>
<translation type="obsolete">Użytkownik ma wyciszony mikrofon (przez ciebie)</translation>
</message>
<message>
- <location filename="Log.cpp" line="0"/>
<source>Player muted (other)</source>
<translation type="obsolete">Użytkownik ma wyciszony mikrofon</translation>
</message>
<message>
- <location filename="Log.cpp" line="0"/>
<source>Player Joined Channel</source>
<translation type="obsolete">Użytkownik wszedł na kanał</translation>
</message>
<message>
- <location filename="Log.cpp" line="0"/>
<source>Player Left Channel</source>
<translation type="obsolete">Użytkownik opuścił kanał</translation>
</message>
<message>
- <location filename="Log.cpp" line="235"/>
+ <location line="+6"/>
<source>Permission Denied</source>
<translation>Brak dostępu</translation>
</message>
<message>
- <location filename="Log.cpp" line="237"/>
+ <location line="+1"/>
<source>Text Message</source>
<translation>Wiadomość tekstowa</translation>
</message>
<message>
- <location filename="Log.cpp" line="0"/>
<source>Script Errors</source>
<translation type="obsolete">Błędy skryptów</translation>
</message>
<message>
- <location filename="Log.cpp" line="224"/>
+ <location line="-12"/>
<source>User Joined Server</source>
<translation>Dołączenie do serwera</translation>
</message>
<message>
- <location filename="Log.cpp" line="225"/>
+ <location line="+1"/>
<source>User Left Server</source>
<translation>Opuszczenie serwera</translation>
</message>
<message>
- <location filename="Log.cpp" line="226"/>
+ <location line="+1"/>
<source>User kicked (you or by you)</source>
<translation>Wykopanie użytkownika (ciebie lub przez ciebie)</translation>
</message>
<message>
- <location filename="Log.cpp" line="227"/>
+ <location line="+1"/>
<source>User kicked</source>
<translation>Wykopanie użytkownika</translation>
</message>
<message>
- <location filename="Log.cpp" line="230"/>
+ <location line="+3"/>
<source>User muted (you)</source>
<translation>Wyciszenie (ciebie)</translation>
</message>
<message>
- <location filename="Log.cpp" line="231"/>
+ <location line="+1"/>
<source>User muted (by you)</source>
<translation>Wyciszenie (przez ciebie)</translation>
</message>
<message>
- <location filename="Log.cpp" line="232"/>
+ <location line="+1"/>
<source>User muted (other)</source>
<translation>Wyciszenie (ktoś inny)</translation>
</message>
<message>
- <location filename="Log.cpp" line="233"/>
+ <location line="+1"/>
<source>User Joined Channel</source>
<translation>Dołączenie do kanału</translation>
</message>
<message>
- <location filename="Log.cpp" line="234"/>
+ <location line="+1"/>
<source>User Left Channel</source>
<translation>Opuszczenie kanału</translation>
</message>
<message>
- <location filename="Log.cpp" line="286"/>
+ <location line="+52"/>
<source>the server</source>
<translation>serwer</translation>
</message>
<message>
- <location filename="Log.cpp" line="403"/>
+ <location line="+117"/>
<source>[[ Text object too large to display ]]</source>
<translation>[[ Obiekt tekstowy jest zbyt duży, aby go wyświetlić ]]</translation>
</message>
<message>
- <location filename="Log.cpp" line="445"/>
+ <location line="+42"/>
<source>[Date changed to %1]
</source>
<translation>[Data zmieniona na %1]</translation>
</message>
<message>
- <location filename="Log.cpp" line="578"/>
+ <location line="+133"/>
<source>link to %1</source>
<translation>połączenie do %1</translation>
</message>
<message>
- <location filename="Log.cpp" line="580"/>
+ <location line="+2"/>
<source>ftp link to %1</source>
<translation>połaczenie ftp do %1</translation>
</message>
<message>
- <location filename="Log.cpp" line="582"/>
+ <location line="+2"/>
<source>player link</source>
<translation>połaczenie gracza</translation>
</message>
<message>
- <location filename="Log.cpp" line="584"/>
+ <location line="+2"/>
<source>channel link</source>
<translation>połączenie kanału</translation>
</message>
<message>
- <location filename="Log.cpp" line="586"/>
+ <location line="+2"/>
<source>%1 link</source>
<translation>%1 połączenie</translation>
</message>
@@ -4476,167 +4342,162 @@ p, li { white-space: pre-wrap; }
<context>
<name>LogConfig</name>
<message>
- <location filename="Log.cpp" line="77"/>
+ <location line="-509"/>
<source>Toggle console for %1 events</source>
<translation>Włącz konsolę dla zdarzeń: %1</translation>
</message>
<message>
- <location filename="Log.cpp" line="78"/>
+ <location line="+1"/>
<source>Toggle pop-up notifications for %1 events</source>
<translation>Włącz powiadomienia dla zdarzeń: %1</translation>
</message>
<message>
- <location filename="Log.cpp" line="79"/>
+ <location line="+1"/>
<source>Toggle Text-To-Speech for %1 events</source>
<translation>Włącz Tekst-Na-Mowę dla %1</translation>
</message>
<message>
- <location filename="Log.cpp" line="80"/>
+ <location line="+1"/>
<source>Click here to toggle sound notification for %1 events</source>
<translation>Kliknij tutaj żeby włączyć powiadomienia dźwiękowe dla %1</translation>
</message>
<message>
- <location filename="Log.cpp" line="81"/>
+ <location line="+1"/>
<source>Path to sound file used for sound notifications in the case of %1 events&lt;br /&gt;Single click to play&lt;br /&gt;Double-click to change</source>
<translation>Ścieżka do pliku dźwiękowego dla powiadomień dźwiękowych w przypadku wydarzeń typu %1&lt;br /&gt;Kliknięcie pojedyncze odtwarza dźwięk&lt;br /&gt;Kliknięcie podwójne zmienia plik</translation>
</message>
<message>
- <location filename="Log.cpp" line="83"/>
+ <location line="+2"/>
<source>Click here to toggle console output for %1 events.&lt;br /&gt;If checked, this option makes Mumble output all %1 events in its message log.</source>
<translation>Kliknij tutaj, aby włączyć wpisy w konsoli dla %1.&lt;br /&gt;Jeśli zaznaczone Mumble będzie pokazywać wszystkie %1 w logu.</translation>
</message>
<message>
- <location filename="Log.cpp" line="84"/>
+ <location line="+1"/>
<source>Click here to toggle pop-up notifications for %1 events.&lt;br /&gt;If checked, a notification pop-up will be created by Mumble for every %1 event.</source>
<translation>Kliknij tutaj, aby włączyć powiadomienia dla %1.&lt;br /&gt;Jeśli zaznaczone Mumble będzie pokazywać wszystkie %1 w obszarze powiadomień.</translation>
</message>
<message>
- <location filename="Log.cpp" line="87"/>
+ <location line="+3"/>
<source>Path to sound file used for sound notifications in the case of %1 events.&lt;br /&gt;Single click to play&lt;br /&gt;Double-click to change&lt;br /&gt;Ensure that sound notifications for these events are enabled or this field will not have any effect.</source>
<translation>Ścieżka do pliku dźwiękowego dla powiadomień dźwiękowych w przypadku wydarzeń typu %1&lt;br /&gt;Kliknięcie pojedyncze odtwarza dźwięk&lt;br /&gt;Kliknięcie podwójne zmienia plik&lt;br /&gt;Upewnij się, że powiadomienia tego typu wydarzeń są włączone inaczej powyższe ustawienia nie odniosą skutku.</translation>
</message>
<message>
- <location filename="Log.cpp" line="0"/>
<source>Click here to toggle Text-To-Speech for %1 events.&lt;br /&gt;If checked, Mumble uses Text-To-Speech to read %1 events out loud to you. Text-To-Speech is also able to read the contents of the event which is not true for soundfiles. Text-To-Speech and soundfiles cannot be used at the same time.</source>
<translation type="obsolete">Kliknij tutaj, aby włączyć tekst na mowęi dla %1.&lt;br /&gt;Jeśli zaznaczone Mumble będzie używać tekstu na mowę do odczytania %1 na głos. Tekst na mowę i powiadomienia dźwiękowe nie mogą być uaktywnione razem.</translation>
</message>
<message>
- <location filename="Log.cpp" line="85"/>
+ <location line="-2"/>
<source>Click here to toggle Text-To-Speech for %1 events.&lt;br /&gt;If checked, Mumble uses Text-To-Speech to read %1 events out loud to you. Text-To-Speech is also able to read the contents of the event which is not true for sound files. Text-To-Speech and sound files cannot be used at the same time.</source>
<translation>Kliknij tutaj, aby włączyć powiadomienia dźwiękowe dla %1.&lt;br /&gt;Jeśli zaznaczone Mumble będzie odtwarzać dźwięki dla %1. Powiadomienia dźwiękowe nie mogą być uaktywnione razem z tekstem na mowę.</translation>
</message>
<message>
- <location filename="Log.cpp" line="86"/>
+ <location line="+1"/>
<source>Click here to toggle sound notification for %1 events.&lt;br /&gt;If checked, Mumble uses a sound file predefined by you to indicate %1 events. Sound files and Text-To-Speech cannot be used at the same time.</source>
<translation>Ścieżka do pliku użytego do powiadomień dźwiękowych w przypadku dla %1.&lt;br /&gt;Jeśli zaznaczone, Mumble używa dźwięku aby powiadomić o zdarzeniach typu %1. Plik dźwiękowe oraz Tekst-Na-Mowę nie mogą działać razem.</translation>
</message>
<message>
- <location filename="Log.cpp" line="0"/>
<source>Choose sound file</source>
<translation type="obsolete">Wybierz plik dźwiękowy</translation>
</message>
<message>
- <location filename="Log.cpp" line="0"/>
<source>Invalid sound file</source>
<translation type="obsolete">Nieprawidłowy plik dźwiękowy</translation>
</message>
<message>
- <location filename="Log.ui" line="14"/>
+ <location filename="Log.ui"/>
<source>Messages</source>
<translation>Wiadomości</translation>
</message>
<message>
- <location filename="Log.ui" line="41"/>
+ <location/>
<source>Console</source>
<translation>Konsola</translation>
</message>
<message>
- <location filename="Log.ui" line="0"/>
<source>Enable console for %1</source>
<translation type="obsolete">Uaktywnij konsolę dla %1</translation>
</message>
<message>
- <location filename="Log.ui" line="0"/>
<source>Enable Text-To-Speech for %1</source>
<translation type="obsolete">Uaktywnij tekst na mowę dla %1</translation>
</message>
<message>
- <location filename="Log.ui" line="69"/>
+ <location/>
<source>Text To Speech</source>
<translation>Tekst na mowę</translation>
</message>
<message>
- <location filename="Log.ui" line="75"/>
+ <location/>
<source>Volume</source>
<translation>Głośność</translation>
</message>
<message>
- <location filename="Log.ui" line="85"/>
+ <location/>
<source>Volume of Text-To-Speech Engine</source>
<translation>Głośność tekstu na mowę</translation>
</message>
<message>
- <location filename="Log.ui" line="88"/>
+ <location/>
<source>&lt;b&gt;This is the volume used for the speech synthesis.&lt;/b&gt;</source>
<translation>&lt;b&gt;Głośność tekstu na mowę.&lt;/b&gt;</translation>
</message>
<message>
- <location filename="Log.ui" line="113"/>
+ <location/>
<source>Length threshold</source>
<translation>Długość</translation>
</message>
<message>
- <location filename="Log.ui" line="123"/>
+ <location/>
<source>Message length threshold for Text-To-Speech Engine</source>
<translation>Długość wiadomości dla tekstu na mowę</translation>
</message>
<message>
- <location filename="Log.ui" line="126"/>
+ <location/>
<source>&lt;b&gt;This is the length threshold used for the Text-To-Speech Engine.&lt;/b&gt;&lt;br /&gt;Messages longer than this limit will not be read aloud in their full length.</source>
<translation>&lt;b&gt;Ustala długość wiadomości odczytywanej przez tekst na mowę.&lt;/b&gt;&lt;br /&gt;Wiadomości większe niż ustalony limit nie będą odczytywane.</translation>
</message>
<message>
- <location filename="Log.ui" line="161"/>
+ <location/>
<source>Whisper</source>
<translation>Szepnij</translation>
</message>
<message>
- <location filename="Log.ui" line="167"/>
+ <location/>
<source>If checked you will only hear whispers from users you added to your friend list.</source>
<translation>Jeśli zaznaczone będziesz słyszeć tylko szepty od innych użytkowników dodanych do twojej listy znajomych.</translation>
</message>
<message>
- <location filename="Log.ui" line="170"/>
+ <location/>
<source>Only accept whispers from friends</source>
<translation>Akceptuj szepty tylko od znajomych</translation>
</message>
<message>
- <location filename="Log.ui" line="36"/>
+ <location/>
<source>Message</source>
<translation>Wiadomość</translation>
</message>
<message>
- <location filename="Log.ui" line="46"/>
+ <location/>
<source>Notification</source>
<translation>Powiadomienie</translation>
</message>
<message>
- <location filename="Log.ui" line="51"/>
+ <location/>
<source>Text-To-Speech</source>
<translation>Tekst-Na-Mowę</translation>
</message>
<message>
- <location filename="Log.ui" line="56"/>
+ <location/>
<source>Soundfile</source>
<translation>Plik dźwiękowy</translation>
</message>
<message>
- <location filename="Log.ui" line="61"/>
+ <location/>
<source>Path</source>
<translation>Ścieżka do pliku dźwiękowego</translation>
</message>
<message>
- <location filename="Log.ui" line="132"/>
+ <location/>
<source> Characters</source>
<translation> liter(y)</translation>
</message>
@@ -4644,387 +4505,370 @@ p, li { white-space: pre-wrap; }
<context>
<name>LookConfig</name>
<message>
- <location filename="LookConfig.ui" line="204"/>
+ <location filename="LookConfig.ui"/>
<source>Language</source>
<translation>Język</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="157"/>
+ <location/>
<source>Look and Feel</source>
<translation>Wygląd</translation>
</message>
<message>
- <location filename="LookConfig.cpp" line="58"/>
+ <location filename="LookConfig.cpp" line="+52"/>
+ <location line="+11"/>
<source>System default</source>
<translation>Domyślny</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="214"/>
+ <location filename="LookConfig.ui"/>
<source>Language to use (requires restart)</source>
<translation>Wybierz język (wymagany restart)</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="217"/>
+ <location/>
<source>&lt;b&gt;This sets which language Mumble should use.&lt;/b&gt;&lt;br /&gt;You have to restart Mumble to use the new language.</source>
<translation>&lt;b&gt;Wybiera który język będzie używany.&lt;/b&gt;&lt;br /&gt;Będziesz musiał zrestartować Mumble by używać nowego języka.</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="163"/>
+ <location/>
<source>Style</source>
<translation>Styl okienek</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="20"/>
+ <location/>
<source>Layout</source>
<translation>Ułożenie</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="32"/>
+ <location/>
<source>Classic</source>
<translation>Klasyczny</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="51"/>
+ <location/>
<source>Stacked</source>
<translation>Stos</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="105"/>
+ <location/>
<source>Hybrid</source>
<translation>Hybryda</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="124"/>
+ <location/>
<source>Custom</source>
<translation>Własny</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="367"/>
+ <location/>
<source>This changes the behavior when moving channels.</source>
<translation>Zmienia zachowanie podczas przenoszenia kanałów.</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="370"/>
+ <location/>
<source>This sets the behavior of channel drags; it can be used to prevent accidental dragging. &lt;i&gt;Move&lt;/i&gt; moves the channel without prompting. &lt;i&gt;Do Nothing&lt;/i&gt; does nothing and prints an error message. &lt;i&gt;Ask&lt;/i&gt; uses a message box to confirm if you really wanted to move the channel.</source>
<translation>Zmienia zachowanie przeciągania kanałów, może zostać użyte by zapobiec przypadkowemu przeciąganiu. &lt;i&gt;Przenieś&lt;/i&gt; przenosi kanał bez powiadomienia. &lt;i&gt;Nic nie rób&lt;/i&gt; nic nie robi i wyświetla wiadomość z błędem. &lt;i&gt;Pytaj&lt;/i&gt; używa powiadomienia tekstowego, by upewnić się czy na pewno chciałeś przenieść kanał.</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="170"/>
+ <location/>
<source>Basic widget style</source>
<translation>Styl okienek</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="173"/>
+ <location/>
<source>&lt;b&gt;This sets the basic look and feel to use.&lt;/b&gt;</source>
<translation>&lt;b&gt;Ustawia podstawowy wygląd okienek.&lt;/b&gt;</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="180"/>
+ <location/>
<source>Skin</source>
<translation>Skórka</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="187"/>
+ <location/>
<source>Skin file to use</source>
<translation>Plik skórki</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="224"/>
+ <location/>
<source>Apply some high contrast optimizations for visually impaired users</source>
<translation>Zastosuj optymalizacje wysokiego kontrastu dla osób niedowidzących</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="227"/>
+ <location/>
<source>Optimize for high contrast</source>
<translation>Optymalizuj dla wysokiego kontrastu</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="250"/>
+ <location/>
<source>Application</source>
<translation>Aplikacja</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="0"/>
<source>Check to show chat bar</source>
<translation type="obsolete">Wyświetlaj pasek czatu</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="0"/>
<source>&lt;b&gt;If checked the chat bar is shown.&lt;/b&gt;&lt;br /&gt;Uncheck this to hide it.</source>
<translation type="obsolete">&lt;b&gt;Jeśli zaznaczone pasek czatu będzie widoczny.&lt;/b&gt;&lt;br /&gt;Odznacz, jeśli chcesz go ukryć.</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="0"/>
<source>Show chatbar</source>
<translation type="obsolete">Wyświetlaj pasek czatu</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="293"/>
+ <location/>
<source>Adds user and channel context menus into the menu bar</source>
<translation>Dodaje menu kontekstowe do głównego paska menu</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="319"/>
+ <location/>
<source>Tray Icon</source>
<translation>Ikona w pasku zadań</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="354"/>
+ <location/>
<source>Channel Tree</source>
<translation>Drzewo kanałów</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="407"/>
+ <location/>
<source>Show number of users in each channel</source>
<translation>Wyświetlaj liczbę użytkowników na każdym kanale</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="410"/>
+ <location/>
<source>Show channel user count</source>
<translation>Wyświetlaj liczbę użytkowników na kanałach</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="0"/>
<source>List players above subchannels (requires restart).</source>
<translation type="obsolete">Listuj użytkowników nad kanałem (wymaga restartu).</translation>
</message>
<message>
- <location filename="LookConfig.cpp" line="72"/>
+ <location filename="LookConfig.cpp" line="+14"/>
<source>User Interface</source>
<translation>Interfejs</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="197"/>
+ <location filename="LookConfig.ui"/>
<source>...</source>
<translation>...</translation>
</message>
<message>
- <location filename="LookConfig.cpp" line="199"/>
+ <location filename="LookConfig.cpp" line="+127"/>
<source>Choose skin file</source>
<translation>Wybierz plik ze skórką</translation>
</message>
<message>
- <location filename="LookConfig.cpp" line="0"/>
<source>&lt;b&gt;If set, players will be shown above subchannels in the channel view.&lt;/b&gt;&lt;br /&gt;A restart of Mumble is required to see the change.</source>
<translation type="obsolete">&lt;b&gt;Użytkownicy będą listowani nad kanałem (wymaga restartu).</translation>
</message>
<message>
- <location filename="LookConfig.cpp" line="0"/>
<source>Players above Channels</source>
<translation type="obsolete">Wyświetlaj nazwy użytkowników nad nazwą kanału</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="190"/>
+ <location filename="LookConfig.ui"/>
<source>&lt;b&gt;This sets which skin Mumble should use.&lt;/b&gt;&lt;br /&gt;The skin is a style file applied on top of the basic widget style. If there are icons in the same directory as the style sheet, those will replace the default icons.</source>
<translation>&lt;b&gt;Ustawia jakiej skórki powinien używać Mumble.&lt;/b&gt;&lt;br /&gt;Skórka to plik ze stylem, który jest nakładany na domyślny styl aplikacji. Jeśli w folderze skórki znajdują się ikony zastąpią one standardowy zestaw ikon.</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="14"/>
+ <location/>
<source>Form</source>
<translation>Formularz</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="0"/>
<source>New version check</source>
<translation type="obsolete">Aktualizacje programu</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="0"/>
<source>Check for updates on startup</source>
<translation type="obsolete">Sprawdzaj, czy istnieje nowsza wersja Mumble przy starcie</translation>
</message>
<message>
- <location filename="LookConfig.cpp" line="62"/>
+ <location filename="LookConfig.cpp" line="-137"/>
<source>None</source>
<translation>Żadne</translation>
</message>
<message>
- <location filename="LookConfig.cpp" line="0"/>
<source>Only with players</source>
<translation type="obsolete">rozwijaj tylko te kanały, na których są użytkownicy</translation>
</message>
<message>
- <location filename="LookConfig.cpp" line="64"/>
+ <location line="+2"/>
<source>All</source>
<translation>Wszystkie</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="377"/>
+ <location filename="LookConfig.ui"/>
<source>Expand</source>
<translation>Rozwijanie kanałów</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="384"/>
+ <location/>
<source>When to automatically expand channels</source>
<translation>Kiedy automatycznie rozwijać kanały</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="0"/>
<source>This sets which channels to automatically expand. &lt;i&gt;None&lt;/i&gt; and &lt;i&gt;All&lt;/i&gt; will expand no or all channels, while &lt;i&gt;Only with players&lt;/i&gt; will expand and collapse channels as players join and leave them.</source>
<translation type="obsolete">Ta opcja ustawia, które kanały powinny być automatycznie rozwijane.</translation>
</message>
<message>
- <location filename="LookConfig.cpp" line="63"/>
+ <location filename="LookConfig.cpp" line="-1"/>
<source>Only with users</source>
<translation>Tylko z użytkownikami</translation>
</message>
<message>
- <location filename="LookConfig.cpp" line="66"/>
+ <location line="+3"/>
<source>Ask</source>
<translation>Pytaj</translation>
</message>
<message>
- <location filename="LookConfig.cpp" line="67"/>
+ <location line="+1"/>
<source>Do Nothing</source>
<translation>Nie rób nic</translation>
</message>
<message>
- <location filename="LookConfig.cpp" line="68"/>
+ <location line="+1"/>
<source>Move</source>
<translation>Przenieś</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="360"/>
+ <location filename="LookConfig.ui"/>
<source>Channel Dragging</source>
<translation>Przeciąganie kanałów</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="0"/>
<source>This changes the behaviour when moving channels.</source>
<translation type="obsolete">Ta opcja zmienia zachowanie kiedy przenosisz kanał.</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="0"/>
<source>This sets the behaviour of channel drags, it can be used to prevent accidental dragging. &lt;i&gt;Move Channel&lt;/i&gt; moves the channel without prompting. &lt;i&gt;Do Nothing&lt;/i&gt; does nothing and prints an error message. &lt;i&gt;Ask&lt;/i&gt; uses a message box to confirm if you really wanted to move the channel.</source>
<translation type="obsolete">Ogranicza możliwość przypadkowego przestawienia układu kanałów.</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="303"/>
+ <location/>
<source>Ask whether to close or minimize when quitting Mumble.</source>
<translation>Mumble będzie pytać czy chcesz zamknąć czy zminimalizować program.</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="0"/>
<source>&lt;b&gt;If set, will verify you want to quit if connected.&lt;b&gt;</source>
<translation type="obsolete">&lt;b&gt;Jeśli ta opcja jest zaznaczona to zobaczysz komunikat czy rzeczywiście chcesz zamknąć Mumble (abyś przypadkiem nie zamknął programu), ujrzysz go tylko wtedy, gdy jesteś aktualnie połączony z jakimś serwerem.&lt;b&gt;</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="309"/>
+ <location/>
<source>Ask on quit while connected</source>
<translation>Ostrzegaj przed zamknięciem programu</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="0"/>
<source>Make the Mumble window appear on top of other windows.</source>
<translation type="obsolete">Okno Mumble wyświetlane zawsze na wierzchu.</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="0"/>
<source>&lt;b&gt;This makes the Mumble window a topmost window.&lt;/b&gt;</source>
<translation type="obsolete">&lt;b&gt;Sprawia, że okno Mumble jest zawsze na pierwszym planie.&lt;/b&gt;</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="256"/>
+ <location/>
<source>Always On Top</source>
<translation>Zawsze na wierzchu</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="328"/>
+ <location/>
<source>&lt;b&gt;If set, minimizing the Mumble main window will cause it to be hidden and accessible only from the tray. Otherwise, it will be minimized as a window normally would.&lt;/b&gt;</source>
<translation>&lt;b&gt;Jeśli zaznaczone, minimalizacja głównego okna Mumble sprawi, że okno zostanie ukryte a dostęp do niego będzie możliwy tylko po przez ikonę w zasobniku systemowym. Jeśli opcja jest niezaznaczona, minimalizacja Mumble ukryje okno w normalny sposób (na pasku zadań).&lt;/b&gt;</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="387"/>
+ <location/>
<source>This sets which channels to automatically expand. &lt;i&gt;None&lt;/i&gt; and &lt;i&gt;All&lt;/i&gt; will expand no or all channels, while &lt;i&gt;Only with users&lt;/i&gt; will expand and collapse channels as users join and leave them.</source>
<translation>Określa, kiedy kanały mają być automatycznie rozwijane. &lt;i&gt;Żadne&lt;/i&gt; i &lt;i&gt;Wszystkie&lt;/i&gt; - Żaden kanał lub wszystkie kanały będą rozwijane. &lt;i&gt;Tylko z użytkownikami&lt;/i&gt; - rozwija i zwija kanały na których znajdują się użytkownicy.</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="394"/>
+ <location/>
<source>List users above subchannels (requires restart).</source>
<translation>Nazwy użytkowników będą wyświetlane ponad kanałami (wymaga restartu).</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="397"/>
+ <location/>
<source>&lt;b&gt;If set, users will be shown above subchannels in the channel view.&lt;/b&gt;&lt;br /&gt;A restart of Mumble is required to see the change.</source>
<translation>&lt;b&gt;Nazwy użytkowników będą wyświetlane ponad pod-kanałami w widoku kanałów.&lt;/b&gt;&lt;br /&gt;Restart Mumble jest wymagany, aby zobaczyć zmiany.</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="400"/>
+ <location/>
<source>Users above Channels</source>
<translation>Wyświetlaj nazwy użytkowników ponad pod-kanałami</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="306"/>
+ <location/>
<source>&lt;b&gt;If set, will verify you want to quit if connected.&lt;/b&gt;</source>
<translation>&lt;b&gt;Jeśli ustawione, program będzie sprawdzać czy chcesz go zamknąć, gdy jesteś na serwerze.&lt;/b&gt;</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="331"/>
+ <location/>
<source>Hide in tray when minimized</source>
<translation>Ukryj w zasobniku systemowym podczas minimalizacji</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="0"/>
<source>Show all configuration items</source>
<translation type="obsolete">Pokazuj wszystkie pozycje do skonfigurowania</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="0"/>
<source>&lt;b&gt;This will show all configuration items.&lt;/b&gt;&lt;br /&gt;Mumble contains a lot of configuration items that most users won&apos;t need to change. Checking this will show all configurable items.</source>
<translation type="obsolete">&lt;b&gt;Pokazuj wszystkie opcje programu.&lt;/b&gt; Większość użytkowników Mumble i tak nie zmienia tych ustawień, uaktywnij tą opcję aby zobaczyć wszystkie funkcje programu.</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="0"/>
<source>Expert Config</source>
<translation type="obsolete">Zaawansowana konfiguracja</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="325"/>
+ <location/>
<source>Hide the main Mumble window in the tray when it is minimized.</source>
<translation>Ukryj Mumble w zasobniku systemowym, gdy główne okno zostanie zminimalizowane.</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="263"/>
+ <location/>
<source>This setting controls when the application will be always on top.</source>
<translation>Określa kiedy aplikacja ma pozostawać zawsze na wierzchu.</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="266"/>
+ <location/>
<source>This setting controls in which situations the application will stay always on top. If you select &lt;i&gt;Never&lt;/i&gt; the application will not stay on top. &lt;i&gt;Always&lt;/i&gt; will always keep the application on top. &lt;i&gt;In minimal view&lt;/i&gt; / &lt;i&gt;In normal view&lt;/i&gt; will only keep the application always on top when minimal view is activated / deactivated.</source>
<translation>Określa w jakich sytuacjach aplikacją pozostanie zawsze na wierzchu. Jeżeli wybierzesz &lt;i&gt;Nigdy&lt;/i&gt; aplikacja nie zostanie na wierzchu. &lt;i&gt;Zawsze&lt;/i&gt; bedzie utrzymywać aplikację na wierzchu cały czas. &lt;i&gt;W widoku minimalnym&lt;/i&gt; / &lt;i&gt;W widoku nomalnym&lt;/i&gt; aplikacja pozostanie zawsze na wierzchu tylko gdy widok minimalny będzie włączony/wyłączony.</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="270"/>
+ <location/>
<source>Never</source>
<translation>Nigdy</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="275"/>
+ <location/>
<source>Always</source>
<translation>Zawsze</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="280"/>
+ <location/>
<source>In minimal view</source>
<translation>W widoku minimalnym</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="285"/>
+ <location/>
<source>In normal view</source>
<translation>W widoku normalnym</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="338"/>
+ <location/>
<source>Displays talking status in system tray</source>
<translation>Wyświetla status mowy</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="344"/>
+ <location/>
<source>Show talking status in tray icon</source>
<translation>Wyświetlaj status mowy</translation>
</message>
<message>
- <location filename="LookConfig.ui" line="296"/>
+ <location/>
<source>Show context menu in menu bar</source>
<translation>Wyświetlaj menu kontekstowe w głównym pasku menu</translation>
</message>
@@ -5032,397 +4876,381 @@ p, li { white-space: pre-wrap; }
<context>
<name>MainWindow</name>
<message>
- <location filename="MainWindow.cpp" line="1972"/>
+ <location filename="MainWindow.cpp" line="+148"/>
+ <location line="+1831"/>
<source>Root</source>
<translation>Źródło</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="198"/>
+ <location filename="MainWindow.ui"/>
<source>&amp;Connect</source>
<translation>&amp;Połącz</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="201"/>
+ <location/>
<source>Open the server connection dialog</source>
<translation>Wyświetl listę serwerów</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Shows a dialog of registered servers, and also allows quick connect.</source>
<translation type="obsolete">Pokazuje serwery zarejestrowane, pozwala na szybkie dołączenie.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="215"/>
+ <location/>
<source>&amp;Disconnect</source>
<translation>&amp;Rozłącz</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="218"/>
+ <location/>
<source>Disconnect from server</source>
<translation>Rozłącz od serwera</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="221"/>
+ <location/>
<source>Disconnects you from the server.</source>
<translation>Rozłącza cię od serwera.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="229"/>
+ <location/>
<source>&amp;Ban lists</source>
<translation>&amp;Lista banów</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="232"/>
+ <location/>
<source>Edit ban lists on server</source>
<translation>Edycja listy banów z serwera</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="235"/>
+ <location/>
<source>This lets you edit the server-side IP ban lists.</source>
<translation>Pozwala na edycję listy zbanowanych IP.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="261"/>
+ <location/>
<source>&amp;Kick</source>
<translation>&amp;Kopnij</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Kick player (with reason)</source>
<translation type="obsolete">Wyrzuć użytkownika (podaj powód)</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Kick selected player off server. You&apos;ll be asked to specify a reason.</source>
<translation type="obsolete">Wyrzuca użytkownika z serwera.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="286"/>
+ <location/>
<source>&amp;Ban</source>
<translation>&amp;Banuj</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Kick and ban player (with reason)</source>
<translation type="obsolete">Wyrzuć i zablokuj dostęp (podaj powód)</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Kick and ban selected player from server. You&apos;ll be asked to specify a reason.</source>
<translation type="obsolete">Blokuje dostęp do serwera temu użytkownikowi.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="275"/>
+ <location/>
<source>&amp;Mute</source>
<translation>&amp;Wycisz</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Mute player</source>
<translation type="obsolete">Wycisz użytkownika</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Mute or unmute player on server. Unmuting a deafened player will also undeafen them.</source>
<translation type="obsolete">Wycisza użytkownika na serwerze.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="300"/>
+ <location/>
<source>&amp;Deafen</source>
<translation>&amp;Ogłusz</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Deafen player</source>
<translation type="obsolete">Wycisz słuchawki i mikrofon użytkownika</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Deafen or undeafen player on server. Deafening a player will also mute them.</source>
<translation type="obsolete">Wycisz słuchawki i mikrofon użytkownika na serwerze.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="314"/>
+ <location/>
<source>&amp;Local Mute</source>
<translation>&amp;Wycisz lokalnie</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="336"/>
+ <location/>
<source>&amp;Add</source>
<translation>&amp;Dodaj</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="339"/>
+ <location/>
<source>Add new channel</source>
<translation>Dodaj nowy kanał</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="342"/>
+ <location/>
<source>This adds a new sub-channel to the currently selected channel.</source>
<translation>Dodaje nowy pod-kanał w aktualnie wskazanym kanale.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="347"/>
+ <location/>
<source>&amp;Remove</source>
<translation>&amp;Usuń</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="350"/>
+ <location/>
<source>Remove channel</source>
<translation>Usuń kanał</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="353"/>
+ <location/>
<source>This removes a channel and all sub-channels.</source>
<translation>Usuwa kanał wraz ze wszystkimi pod-kanałami.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>&amp;Edit ACL</source>
<translation type="obsolete">&amp;Edytuj ACL</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="361"/>
+ <location/>
<source>Edit Groups and ACL for channel</source>
<translation>Edytuj grupy oraz reguły ACL kanału</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="364"/>
+ <location/>
<source>This opens the Group and ACL dialog for the channel, to control permissions.</source>
<translation>Otwiera okno dialogowe z grupami oraz regułami ACL, które pozwala na edycję uprawnień.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>&amp;Rename</source>
<translation type="obsolete">&amp;Zmień nazwę</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>&amp;Change Description</source>
<translation type="obsolete">Z&amp;mień opis</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Changes the channel description</source>
<translation type="obsolete">Zmienia opis kanału</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>This changes the description of a channel.</source>
<translation type="obsolete">Ta opcja zmienia opis kanału.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="369"/>
+ <location/>
<source>&amp;Link</source>
<translation>&amp;Połącz kanały</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="372"/>
+ <location/>
<source>Link your channel to another channel</source>
<translation>Połącz swój kanał z innym kanałem</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>This links your current channel to the selected channel. If they have permission to speak in the other channel, players can now hear each other. This is a permanent link, and will last until manually unlinked or the server is restarted. Please see the shortcuts for push-to-link.</source>
<translation type="obsolete">Ta opcja łączy obecny kanał z zaznaczonym kanałem.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="383"/>
+ <location/>
<source>Unlink your channel from another channel</source>
<translation>Rozłącz swój kanał od innego kanału</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="386"/>
+ <location/>
<source>This unlinks your current channel from the selected channel.</source>
<translation>Rozłącza bieżący kanał od wskazanego kanału.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Unlink &amp;All</source>
<translation type="obsolete">&amp;Rozłącz wszystkie kanały</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="394"/>
+ <location/>
<source>Unlinks your channel from all linked channels.</source>
<translation>Rozłącza twój kanał od wszystkich kanałów z nim połączonych.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="397"/>
+ <location/>
<source>This unlinks your current channel (not the selected one) from all linked channels.</source>
<translation>Rozłącza twój obecny kanał (nie ten wybrany) od wszystkich kanałów z nim połączonych.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="402"/>
+ <location/>
<source>&amp;Reset</source>
<translation>&amp;Resetuj sprzęt audio</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="405"/>
+ <location/>
<source>Reset audio preprocessor</source>
<translation>Resetuj preprocessor audio</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="408"/>
+ <location/>
<source>This will reset the audio preprocessor, including noise cancellation, automatic gain and voice activity detection. If something suddenly worsens the audio environment (like dropping the microphone) and it was temporary, use this to avoid having to wait for the preprocessor to readjust.</source>
<translation>Resetuje preprocessor audio, wliczając w to usuwanie echa oraz wykrywanie mowy. Jeśli coś się nagle pogarsza dźwięk i jest to stan przejściowy, użyj tej opcji by nie czekać na automatyczą rekonfigurację preprocesora.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="422"/>
+ <location/>
<source>&amp;Mute Self</source>
<translation>&amp;Wycisz</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="425"/>
+ <location/>
<source>Mute yourself</source>
<translation>Wycisz mikrofon</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="428"/>
+ <location/>
<source>Mute or unmute yourself. When muted, you will not send any data to the server. Unmuting while deafened will also undeafen.</source>
<translation>Wycisza lub wyłącza wyciszenie. Gdy jesteś wyciszony nie wysyłasz żadnych danych na serwer. Wyłączenie wyciszenia również wyłącza ogłuszenie.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="445"/>
+ <location/>
<source>&amp;Deafen Self</source>
<translation>&amp;Ogłusz</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="448"/>
+ <location/>
<source>Deafen yourself</source>
<translation>Ogłusz</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="451"/>
+ <location/>
<source>Deafen or undeafen yourself. When deafened, you will not hear anything. Deafening yourself will also mute.</source>
<translation>Ogłusza lub wyłącza ogłuszenie. Gdy jesteś ogłuszony nie będziesz nic słyszał. Ogłuszenie samego siebie włąc za również wyciszenie mikrofonu.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="462"/>
+ <location/>
<source>&amp;Text-To-Speech</source>
<translation>&amp;Tekst-Na-Mowę</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="465"/>
+ <location/>
<source>Toggle Text-To-Speech</source>
<translation>Włącz/Wyłącz Tekst-Na-Mowę</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="468"/>
+ <location/>
<source>Enable or disable the text-to-speech engine. Only messages enabled for TTS in the Configuration dialog will actually be spoken.</source>
<translation>Włącza lub wyłącza Tekst-Na-Mowę. Tylko wiadomości z włączoną obsługą Tekstu-Na-Mowę zostaną przeczytane na głos.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>S&amp;tatistics</source>
<translation type="obsolete">S&amp;tatystyki</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="476"/>
+ <location/>
<source>Display audio statistics</source>
<translation>Wyświetla statystyki audio</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="479"/>
+ <location/>
<source>Pops up a small dialog with information about your current audio input.</source>
<translation>Wyświetla informacje o twoim wejściu audio.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="487"/>
+ <location/>
<source>Forcibly unlink plugin</source>
<translation>Wymuś rozłączenie wtyczki</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="490"/>
+ <location/>
<source>This forces the current plugin to unlink, which is handy if it is reading completely wrong data.</source>
<translation>Wymusza rozłączenie bieżącej wtyczki, przydatne jeśli odczytuje ona całkowicie złe dane.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="499"/>
+ <location/>
<source>&amp;Settings</source>
<translation>&amp;Konfiguracja</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="502"/>
+ <location/>
<source>Configure Mumble</source>
<translation>Konfiguracja</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="505"/>
+ <location/>
<source>Allows you to change most settings for Mumble.</source>
<translation>Pozwala na zmianę większości ustawień Mumble.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="527"/>
+ <location/>
<source>&amp;What&apos;s This?</source>
<translation>&amp;Co to jest?</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="530"/>
+ <location/>
<source>Enter What&apos;s This? mode</source>
<translation>Wejdź w tryb &quot;Co to jest?&quot;</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="533"/>
+ <location/>
<source>Click this to enter &quot;What&apos;s This?&quot; mode. Your cursor will turn into a question mark. Click on any button, menu choice or area to show a description of what it is.</source>
<translation>Uaktywnia tryb &quot;Co to jest?&quot;. Klikaj kursorem na poszczególne elementy interfejsu, aby dowiedzieć się do czego służą.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="538"/>
+ <location/>
<source>&amp;About</source>
<translation>O &amp;programie</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="541"/>
+ <location/>
<source>Information about Mumble</source>
<translation>Informacje na temat Mumble</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="544"/>
+ <location/>
<source>Shows a small dialog with information and license for Mumble.</source>
<translation>Wyświetla małe okno z informacjami o licencji Mumble.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="552"/>
+ <location/>
<source>About &amp;Speex</source>
<translation>O &amp;Speex</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="555"/>
+ <location/>
<source>Information about Speex</source>
<translation>Informacje na temat Speex</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="558"/>
+ <location/>
<source>Shows a small dialog with information about Speex.</source>
<translation>Wyświetla małe okno z informacjami na temat Speex.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="569"/>
+ <location/>
<source>Information about Qt</source>
<translation>Informacje na temat Qt</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="572"/>
+ <location/>
<source>Shows a small dialog with information about Qt.</source>
<translation>Wyświetla małe okno z informacjami na temat Qt.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="580"/>
+ <location/>
<source>Check for &amp;Updates</source>
<translation>Sprawdź dostępność &amp;aktualizacji</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="583"/>
+ <location/>
<source>Check for new version of Mumble</source>
<translation>Sprawdź czy jest nowa wersja Mumble</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="586"/>
+ <location/>
<source>Connects to the Mumble webpage to check if a new version is available, and notifies you with an appropriate download URL if this is the case.</source>
<translation>Łączy się ze stroną Mumble by sprawdzić czy jest dostępna nowsza wersja, następnie powiadamia użytkownika odpowiednim adresem URL gdy jest tak potrzeba.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="753"/>
+ <location/>
<source>&amp;Change Comment</source>
<translation>&amp;Edytuj komentarz</translation>
</message>
@@ -5431,1611 +5259,1561 @@ p, li { white-space: pre-wrap; }
<translation type="obsolete">Edytuj komentarz wybranemu użytkownikowi.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="3"/>
<source>This allows you to change the comment (shown as a tooltip) of a user. Unless you&apos;ve been given extra privileges on the server, you can only change your own comment.</source>
<translation type="obsolete">Pozwala na zmianę komentarza (wyświetlanego jako podpowiedź) użytkownika. Jeżeli nie masz przydzielonych specjalnych uprawnień na serwerze, możesz edytować tylko swój komentarz.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Certificate Wizard</source>
<translation type="obsolete">Kreator certyfikatów</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="633"/>
+ <location/>
<source>Configure certificates for strong authentication</source>
<translation>Konfiguruj certyfikaty dla silnej autoryzacji</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="636"/>
+ <location/>
<source>This starts the wizard for creating, importing and exporting certificates for authentication against servers.</source>
<translation>Uruchamia kreator umożliwiający tworzenie, importowanie i eksportowanie certyfikatów uwierzytelniających na serwerach.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Register</source>
<translation type="obsolete">Zarejestruj</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="644"/>
+ <location/>
<source>Register user on server</source>
<translation>Rejestruje użytkownika na serwerze</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="647"/>
+ <location/>
<source>This will permanently register the user on the server.</source>
<translation>Stałe rejestruje użytkownika na serwerze.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="652"/>
+ <location/>
<source>Add &amp;Friend</source>
<translation>Dodaj &amp;znajomego</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="655"/>
+ <location/>
<source>Adds a user as your friend.</source>
<translation>Dodaje użytkownika do znajomych.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="658"/>
+ <location/>
<source>This will add the user as a friend, so you can recognize him on this and other servers.</source>
<translation>Dodaje użytkownika do twojej listy znajomych, abyś w przyszłości mógł rozpoznać go na tym oraz innych serwerach.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="663"/>
+ <location/>
<source>&amp;Remove Friend</source>
<translation>&amp;Usuń znajomego</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="666"/>
+ <location/>
<source>Removes a user from your friends.</source>
<translation>Usuwa użytkownika z listy znajomych.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="669"/>
+ <location/>
<source>This will remove a user from your friends list.</source>
<translation>Usuwa użytkownika z twojej listy znajomych.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="674"/>
+ <location/>
<source>&amp;Update Friend</source>
<translation>&amp;Aktualizuj znajomego</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="677"/>
+ <location/>
<source>Update name of your friend.</source>
<translation>Aktualizuje nazwę twojego znajomego.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="680"/>
+ <location/>
<source>Your friend uses a different name than what is in your database. This will update the name.</source>
<translation>Twój znajomy używa innej nazwy niż ta która jest zapisana w twojej bazie danych. Uaktualnia tą nazwę.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="685"/>
+ <location/>
<source>Registered &amp;Users</source>
<translation>&amp;Użytkownicy</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="688"/>
+ <location/>
<source>Edit registered users list</source>
<translation>Edytuj listę zarejestrowanych użytkowników</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="691"/>
+ <location/>
<source>This opens the editor for registered users, which allow you to change their name or unregister them.</source>
<translation>Otwiera edytor zarejestrowanych użytkowników, pozwala on na edycję nazw oraz wyrejestrowanie użytkowników.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Change Texture</source>
<translation type="obsolete">Zmień awatar</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Change your overlay texture on this server</source>
<translation type="obsolete">Zmienia twoją teksturę widoczną na nakładce na tym serwerze</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="704"/>
+ <location/>
<source>&amp;Access Tokens</source>
<translation>&amp;Hasła dostępu</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="707"/>
+ <location/>
<source>Add or remove text-based access tokens</source>
<translation>Dodaje lub usuwa hasła dostępu</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Remove Texture</source>
<translation type="obsolete">Usuń awatar</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Remove currently defined user texture.</source>
<translation type="obsolete">Usuwa obecną teksturę z nakładki.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2180"/>
+ <location filename="MainWindow.cpp" line="-1736"/>
+ <location line="+12"/>
+ <location line="+1932"/>
<source>Mumble -- %1</source>
<translation>Mumble -- %1</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="114"/>
+ <location filename="MainWindow.ui"/>
<source>This shows all recent activity. Connecting to servers, errors and information messages all show up here.&lt;br /&gt;To configure exactly which messages show up here, use the &lt;b&gt;Settings&lt;/b&gt; command from the menu.</source>
<translation>Dziennik wyświetla wszystkie ostatnie wydarzenia takie jak: próby połączenia z serwerem, błędy oraz wiadomości użytkowników.&lt;br /&gt;Możesz dowolnie skonfigurować okno dziennika w&lt;b&gt; Ustawienia&lt;/b&gt;.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>&amp;Server</source>
<translation type="obsolete">&amp;Serwer</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>&amp;Player</source>
<translation type="obsolete">&amp;Użytkownik</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="165"/>
+ <location filename="MainWindow.cpp" line="-2022"/>
<source>&amp;Channel</source>
<translation>&amp;Kanał</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>&amp;Audio</source>
<translation type="obsolete">&amp;Dźwięk</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="59"/>
+ <location filename="MainWindow.ui"/>
<source>C&amp;onfigure</source>
<translation>&amp;Opcje</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="65"/>
+ <location/>
<source>&amp;Help</source>
<translation>&amp;Pomoc</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Kicking player %1</source>
<translation type="obsolete">Wykopywanie użytkownika %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1197"/>
+ <location filename="MainWindow.cpp" line="+1018"/>
+ <location line="+19"/>
<source>Enter reason</source>
<translation>Podaj powód</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>Banning player %1</source>
<translation type="obsolete">Banowanie użytkownika %1</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="14"/>
+ <location filename="MainWindow.ui"/>
<source>Mumble</source>
<translation>Mumble</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="201"/>
+ <location filename="MainWindow.cpp" line="-1001"/>
<source>Push and hold this button to send voice.</source>
<comment>Global Shortcut</comment>
<translation>Naciśnij i przytrzymaj ten przycisk, aby transmitować głos.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="202"/>
+ <location line="+1"/>
<source>This configures the push-to-talk button, and as long as you hold this button down, you will transmit voice.</source>
<comment>Global Shortcut</comment>
<translation>Wyświetla twój status PTT, w zależności jak długo będziesz trzymać przycisk, tak długo będziesz transmitować swój głos.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>Toggle self-mute status.</source>
<comment>Global Shortcut</comment>
<translation type="obsolete">Włącz tryb wyciszenia mikrofonu</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>This will toggle your muted status. If you toggle this off, you will also disable self-deafen.</source>
<comment>Global Shortcut</comment>
<translation type="obsolete">Ta opcja pokaże twój status wyciszenia. Jeśli wyłączysz tą opcję zablokujesz wyciszenie słuchawek i mikrofonu.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>Toggle self-deafen status.</source>
<comment>Global Shortcut</comment>
<translation type="obsolete">Włącz tryb wyciszenia słuchawek</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="229"/>
+ <location line="+27"/>
<source>Toggle state of in-game overlay.</source>
<comment>Global Shortcut</comment>
<translation>Włącz tryb nakładki w grze.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>This will switch the states of the ingame overlay between showing everybody, just the players who are talking, and nobody.</source>
<comment>Global Shortcut</comment>
<translation type="obsolete">Ta opcja zmieni tryb nakładki w grze trzema dostępnymi trybami.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>Channel Name</source>
<translation type="obsolete">Podaj nazwę kanału:</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>Change description of channel %1</source>
<translation type="obsolete">Zmień opis kanału %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1638"/>
+ <location line="+1416"/>
<source>Unmuted and undeafened.</source>
<translation>Wyłączono ogłuszenie oraz wyciszenie mikrofonu.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1640"/>
+ <location line="+2"/>
<source>Unmuted.</source>
<translation>Wyłączono wyciszenie mikrofonu.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1642"/>
+ <location line="+2"/>
<source>Muted.</source>
<translation>Wyciszono.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1666"/>
+ <location line="+24"/>
<source>Muted and deafened.</source>
<translation>Ogłuszono oraz wyciszono mikrofon.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1668"/>
+ <location line="+2"/>
<source>Deafened.</source>
<translation>Ogłuszono.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1670"/>
+ <location line="+2"/>
<source>Undeafened.</source>
<translation>Wyłączono ogłuszenie.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1737"/>
+ <location line="+67"/>
<source>About Qt</source>
<translation>O Qt</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>Joining %1.</source>
<translation type="obsolete">Dołączam %1.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2145"/>
+ <location line="+408"/>
<source>Server connection failed: %1.</source>
<translation>Połączenie z serwerem zostało przerwane z powodu: %1.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2147"/>
+ <location line="+2"/>
<source>Disconnected from server.</source>
<translation>Rozłączony od serwera.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="800"/>
+ <location line="-1351"/>
<source>Reconnecting.</source>
<translation>Ponowne łączenie.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>Joined server: %1.</source>
<translation type="obsolete">%1 dołączył do serwera.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>the server</source>
<translation type="obsolete">serwer</translation>
</message>
<message>
- <location filename="Messages.cpp" line="285"/>
+ <location filename="Messages.cpp" line="+285"/>
<source>You were muted and deafened by %1.</source>
<translation>Zostałeś ogłuszony oraz wyciszony przez %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="287"/>
+ <location line="+2"/>
<source>You were unmuted and undeafened by %1.</source>
<translation>%1 wyłączył twoje ogłuszenie oraz wyciszenie.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="0"/>
<source>You were suppressed by %1.</source>
<translation type="obsolete">Zostałeś wyciszony przez %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="309"/>
+ <location line="+22"/>
<source>You were unsuppressed by %1.</source>
<translation>%1 zezwolił na mowę.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="316"/>
+ <location line="+7"/>
<source>You muted and deafened %1.</source>
<translation>Ogłuszyłeś oraz wyciszyłeś %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="318"/>
+ <location line="+2"/>
<source>You unmuted and undeafened %1.</source>
<translation>Wyłączyłeś ogłuszenie oraz wyciszenie %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="322"/>
+ <location line="+4"/>
<source>You muted %1.</source>
<translation>Wyciszyłeś %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="324"/>
+ <location line="+2"/>
<source>You unmuted %1.</source>
<translation>Wyłączyłeś wyciszenie %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="329"/>
+ <location line="+5"/>
<source>You undeafened %1.</source>
<translation>Wyłączyłeś ogłuszenie %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="336"/>
+ <location line="+7"/>
<source>You suppressed %1.</source>
<translation>Wyciszyłeś %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="338"/>
+ <location line="+2"/>
<source>You unsuppressed %1.</source>
<translation>Wyłączyłeś wyciszenie %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="343"/>
+ <location line="+5"/>
<source>%1 muted and deafened by %2.</source>
<translation>%1 został ogłuszony oraz wyciszony przez %2.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="345"/>
+ <location line="+2"/>
<source>%1 unmuted and undeafened by %2.</source>
<translation>%2 wyłączył ogłuszenie oraz wyciszenie %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="363"/>
+ <location line="+18"/>
<source>%1 suppressed by %2.</source>
<translation>%1 został pozbawiony możliwości mowy przez %2.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="365"/>
+ <location line="+2"/>
<source>%1 unsuppressed by %2.</source>
<translation>%1 może ponownie mówić dzięki: %2.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="388"/>
+ <location line="+23"/>
<source>%1 moved to %2.</source>
<translation>%1 przeniósł się do kanału %2.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="390"/>
+ <location line="+2"/>
<source>%1 moved to %2 by %3.</source>
<translation>%1 został przeniesiony do kanału %2 przez %3.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="400"/>
+ <location line="+10"/>
<source>%1 moved in from %2 by %3.</source>
<translation>%1 został przeniesiony z kanału %2 przez %3.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="446"/>
+ <location line="+46"/>
<source>%1 disconnected.</source>
<translation>%1 rozłączony.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="537"/>
+ <location line="+91"/>
<source>(Tree) </source>
<translation>(Drzewo) </translation>
</message>
<message>
- <location filename="Messages.cpp" line="539"/>
+ <location line="+2"/>
<source>(Channel) </source>
<translation>(Kanał) </translation>
</message>
<message>
- <location filename="Messages.cpp" line="542"/>
+ <location line="+3"/>
<source>%2%1: %3</source>
<translation>%2%1: %3</translation>
</message>
<message>
- <location filename="Messages.cpp" line="0"/>
<source>Left server: %1.</source>
<translation type="obsolete">%1 opuścił serwer.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="0"/>
<source>the server</source>
<comment>message from</comment>
<translation type="obsolete">serwera</translation>
</message>
<message>
- <location filename="Messages.cpp" line="678"/>
+ <location line="+136"/>
<source>Unable to find matching CELT codecs with other clients. You will not be able to talk to all users.</source>
<translation>Nie udało się odnaleźć pasujących kodeków CELT. Nie będziesz mógł rozmawiać do wszystkich użytkowników.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="266"/>
+ <location line="-412"/>
<source>%1 is now muted and deafened.</source>
<translation>%1 jest teraz ogłuszony oraz wyciszony.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="136"/>
+ <location line="-170"/>
+ <location line="+40"/>
<source>Welcome message: %1</source>
<translation>Wiadomość powitalna: %1</translation>
</message>
<message>
- <location filename="Messages.cpp" line="129"/>
+ <location line="-7"/>
<source>Mumble: %1</source>
<translation>Mumble: %1</translation>
</message>
<message>
- <location filename="Messages.cpp" line="157"/>
+ <location line="+28"/>
<source>You were denied %1 privileges in %2.</source>
<translation>Nie posiadasz uprawnienia: &lt;i&gt;%1&lt;/i&gt; w %2.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="159"/>
+ <location line="+2"/>
<source>%3 was denied %1 privileges in %2.</source>
<translation>%3 nie posiada uprawnienia: &lt;i&gt;%1&lt;/i&gt; w %2.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="163"/>
+ <location line="+4"/>
<source>Denied: Cannot modify SuperUser.</source>
<translation>Brak dostępu: Nie można modyfikować SuperUser&apos;a.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="167"/>
+ <location line="+4"/>
<source>Denied: Invalid channel name.</source>
<translation>Brak dostępu: Nieprawidłowa nazwa kanału.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="171"/>
+ <location line="+4"/>
<source>Denied: Text message too long.</source>
<translation>Brak dostępu: Wiadomość tekstowa jest zbyt długa.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="191"/>
+ <location line="+20"/>
<source>Denied: Operation not permitted in temporary channel.</source>
<translation>Brak dostępu: Operacja niedozwolona na kanale tymczasowym.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="198"/>
+ <location line="+7"/>
<source>You need a certificate to perform this operation.</source>
<translation>Potrzebujesz certyfikatu, aby wykonać tą operację.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="200"/>
+ <location line="+2"/>
<source>%1 does not have a certificate.</source>
<translation>%1 nie ma certyfikatu.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="205"/>
+ <location line="+5"/>
<source>Invalid username: %1.</source>
<translation>Niepoprawna nazwa użytkownika: %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="207"/>
+ <location line="+2"/>
<source>Invalid username.</source>
<translation>Niepoprawna nazwa użytkownika.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="211"/>
+ <location line="+4"/>
<source>Channel is full.</source>
<translation>Kanał jest pełny.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="218"/>
+ <location line="+7"/>
<source>Permission denied.</source>
<translation>Brak dostępu.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="255"/>
+ <location line="+37"/>
<source>%1 connected.</source>
<translation>%1 połączony.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="268"/>
+ <location line="+13"/>
<source>%1 is now muted.</source>
<translation>%1 ma teraz wyciszony mikrofon.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="270"/>
+ <location line="+2"/>
<source>%1 is now unmuted.</source>
<translation>%1 nie jest już wyciszony.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="0"/>
<source>server</source>
<translation type="obsolete">Serwer</translation>
</message>
<message>
- <location filename="Messages.cpp" line="291"/>
+ <location line="+21"/>
<source>You were muted by %1.</source>
<translation>Zostałeś wyciszony przez %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="293"/>
+ <location line="+2"/>
<source>You were unmuted by %1.</source>
<translation>%1 wyłączył twoje wyciszenie mikrofonu.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="304"/>
+ <location line="+11"/>
<source>You were suppressed.</source>
<translation>Zostałeś pozbawiony możliwości mowy.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="307"/>
+ <location line="+3"/>
<source>You were unsuppressed.</source>
<translation>Twoje wyciszenie zostało wyłączone.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="349"/>
+ <location line="+42"/>
<source>%1 muted by %2.</source>
<translation>%2 wyciszył mikrofon %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="351"/>
+ <location line="+2"/>
<source>%1 unmuted by %2.</source>
<translation>%2 wyłączył wyciszenie mikrofonu %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="0"/>
<source>You were deafened by %1.</source>
<translation type="obsolete">Twoje słuchawki i mikrofon zostały wyciszone przez: %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="298"/>
+ <location line="-53"/>
<source>You were undeafened by %1.</source>
<translation>%1 wyłączył twoje ogłuszenie.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="0"/>
<source>%1 deafened by %2.</source>
<translation type="obsolete">Słuchawki i mikrofon %1 zostały wyciszone przez %2.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="356"/>
+ <location line="+58"/>
<source>%1 undeafened by %2.</source>
<translation>%2 wyłączył ogłuszenie %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="439"/>
+ <location line="+83"/>
<source>You were kicked from the server by %1: %2.</source>
<translation>Zostałeś wykopany z serwera przez %1. Z powodu: %2.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="444"/>
+ <location line="+5"/>
<source>%3 was kicked from the server by %1: %2.</source>
<translation>%3 został wykopany z serwera przez %1. Z powodu: %2.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="437"/>
+ <location line="-7"/>
<source>You were kicked and banned from the server by %1: %2.</source>
<translation>Dostałeś bana od %1 z powodu %2.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="442"/>
+ <location line="+5"/>
<source>%3 was kicked and banned from the server by %1: %2.</source>
<translation>%3 dostał bana od %1 z powodu: %2.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="385"/>
+ <location line="-57"/>
<source>You were moved to %1 by %2.</source>
<translation>Zostałeś przeniesiony do kanału %1 przez %2.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="0"/>
<source>%1 left channel.</source>
<translation type="obsolete">%1 opuścił kanał.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="0"/>
<source>%1 moved out by %2 to %3.</source>
<translation type="obsolete">%1 przeniesiony przez %2 do kanału %3.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="0"/>
<source>%1 moved in by %2 from %3.</source>
<translation type="obsolete">%1 przeniesiony przez %2 do kanału %3.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="0"/>
<source>%1 moved out by %2.</source>
<translation type="obsolete">%2 przeniósł %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="398"/>
+ <location line="+13"/>
<source>%1 entered channel.</source>
<translation>%1 dołączył do kanału.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="0"/>
<source>%1 moved in by %2.</source>
<translation type="obsolete">%2 przeniósł %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="88"/>
+ <location line="-310"/>
<source>Server connection rejected: %1.</source>
<translation>Połączenie odrzucone: %1.</translation>
</message>
<message>
- <location filename="Messages.cpp" line="216"/>
+ <location line="+128"/>
<source>Denied: %1.</source>
<translation>Zabroniono: %1.</translation>
</message>
<message>
- <location filename="main.cpp" line="311"/>
+ <location filename="main.cpp" line="-52"/>
<source>Welcome to Mumble.</source>
<translation>Witamy w Mumble.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="199"/>
+ <location filename="MainWindow.cpp" line="-604"/>
<source>Push-to-Talk</source>
<comment>Global Shortcut</comment>
<translation>Aktywacja przyciskiem</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="205"/>
+ <location line="+6"/>
<source>Reset Audio Processor</source>
<comment>Global Shortcut</comment>
<translation>Restart preprocesora audio</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>Toggle Mute Self</source>
<comment>Global Shortcut</comment>
<translation type="obsolete">Wycisz mikrofon</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>Toggle Deafen Self</source>
<comment>Global Shortcut</comment>
<translation type="obsolete">Wycisz słuchawki i mikrofon</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>Force Center Position</source>
<comment>Global Shortcut</comment>
<translation type="obsolete">Wymuś pozycję w środku</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>Chan Parent</source>
<comment>Global Shortcut</comment>
<translation type="obsolete">Źródło kanału</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>Chan Sub#%1</source>
<comment>Global Shortcut</comment>
<translation type="obsolete">Pod-Kanał # %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>Chan All Subs</source>
<comment>Global Shortcut</comment>
<translation type="obsolete">Wszystkie pod-kanały</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="221"/>
+ <location line="+16"/>
<source>Push-to-Mute</source>
<comment>Global Shortcut</comment>
<translation>Wyciszenie przyciskiem</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="224"/>
+ <location line="+3"/>
<source>Join Channel</source>
<comment>Global Shortcut</comment>
<translation>Dołącz do kanału</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="227"/>
+ <location line="+3"/>
<source>Toggle Overlay</source>
<comment>Global Shortcut</comment>
<translation>Włącz nakładkę</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>Alt Push-to-Talk</source>
<comment>Global Shortcut</comment>
<translation type="obsolete">Alternatywny przycisk - aktywacji przyciskiem</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="218"/>
+ <location line="-9"/>
<source>Unlink Plugin</source>
<comment>Global Shortcut</comment>
<translation>Wyłącz wtyczki</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="790"/>
+ <location line="+391"/>
+ <location line="+184"/>
<source>Connecting to server %1.</source>
<translation>Łączenie z serwerem &lt;b&gt;%1&lt;/b&gt;.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="923"/>
+ <location line="+133"/>
<source>&lt;h2&gt;Version&lt;/h2&gt;&lt;p&gt;Protocol %1.%2.%3.&lt;/p&gt;</source>
<translation>&lt;h2&gt;Wersja&lt;/h2&gt;&lt;p&gt;Protokół %1.%2.%3.&lt;/p&gt;</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="928"/>
+ <location line="+5"/>
<source>&lt;p&gt;No build information or OS version available.&lt;/p&gt;</source>
<translation>&lt;p&gt;Brak informacji o wersji lub wersji dla twojego systemu.&lt;/p&gt;</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="931"/>
+ <location line="+2"/>
<source>&lt;p&gt;%1 (%2)&lt;br /&gt;%3&lt;/p&gt;</source>
<translation>&lt;p&gt;%1 (%2)&lt;br /&gt;%3&lt;/p&gt;</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>&lt;h2&gt;Control channel&lt;/h2&gt;&lt;p&gt;Encrypted with %1 bit %2&lt;br /&gt;%3 ms average latency (%4 deviation)&lt;/p&gt;</source>
<translation type="obsolete">&lt;h2&gt;Kanały&lt;/h2&gt;&lt;p&gt;Szyfrowany %1 bit %2&lt;br /&gt;%3 ms przeciętne opóźnienie (%4 załamanie)&lt;/p&gt;</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="950"/>
+ <location line="+20"/>
<source>&lt;h2&gt;Voice channel&lt;/h2&gt;&lt;p&gt;Encrypted with 128 bit OCB-AES128&lt;br /&gt;%1 ms average latency (%4 deviation)&lt;/p&gt;</source>
<translation>&lt;h2&gt;Kanał głosowy&lt;/h2&gt;&lt;p&gt;Szyfrowanie 128 bitowym OCV-AES 128&lt;br /&gt;Średnie opóźnienie %1 ms (%4 odchylenie)&lt;/p&gt;</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="961"/>
+ <location line="+11"/>
<source>&lt;h2&gt;Audio bandwidth&lt;/h2&gt;&lt;p&gt;Maximum %1 kbit/s&lt;br /&gt;Current %2 kbit/s&lt;/p&gt;</source>
<translation>&lt;h2&gt;Pasmo dźwięku&lt;/h2&gt;&lt;p&gt;Maksymalne %1 kbit/s&lt;br /&gt;Obecne %2 kbit/s&lt;/p&gt;</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1136"/>
+ <location line="-104"/>
+ <location line="+281"/>
<source>Register yourself as %1</source>
<translation>Zarejestruj się jako %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1136"/>
+ <location line="-281"/>
+ <location line="+281"/>
<source>&lt;p&gt;You are about to register yourself on this server. This action cannot be undone, and your username cannot be changed once this is done. You will forever be known as &apos;%1&apos; on this server.&lt;/p&gt;&lt;p&gt;Are you sure you want to register yourself?&lt;/p&gt;</source>
<translation>&lt;p&gt;Masz zamiar zarejestrować się na tym serwerze. Akcja ta nie może zostać cofnięta, twoja nazwa użytkownika również nie może ulec zmianie w przyszłości. Na zawsze będziesz znany jako &apos;%1&apos; na tym serwerze.&lt;/p&gt;&lt;p&gt;Czy jesteś pewien, że chcesz się zarejestrować?&lt;/p&gt;</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1138"/>
+ <location line="+2"/>
<source>Register user %1</source>
<translation>Zarejestruj użytkownika %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1138"/>
+ <location line="+0"/>
<source>&lt;p&gt;You are about to register %1 on the server. This action cannot be undone, the username cannot be changed, and as a registered user, %1 will have access to the server even if you change the server password.&lt;/p&gt;&lt;p&gt;From this point on, %1 will be authenticated with the certificate currently in use.&lt;/p&gt;&lt;p&gt;Are you sure you want to register %1?&lt;/p&gt;</source>
<translation>&lt;p&gt;Masz zamiar zarejestrować %1. Akcja ta nie może zostać cofnięta, nazwa użytkownika również nie może ulec zmianie w przyszłości, a jako zarejestrowany użytkownik %1 będzie mieć dostęp do tego serwera, nawet jeśli zmienisz hasło na ten serwer.&lt;/p&gt;&lt;p&gt;Od tej chwili, %1 będzie autoryzowany certyfikatem, którego obecnie używa.&lt;/p&gt;&lt;p&gt;Czy jesteś pewien, że chcesz zarejestrować %1?&lt;/p&gt;</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1178"/>
+ <location line="+40"/>
<source>Kicking user %1</source>
<translation>Wykopywanie użytkownika %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1197"/>
+ <location line="+19"/>
<source>Banning user %1</source>
<translation>Banowanie użytkownika %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="406"/>
<source>Change comment on user %1</source>
<translation type="obsolete">Edycja komentarza użytkownika %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>To channel %1: %2</source>
<translation type="obsolete">Do kanału %1: %2</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1529"/>
+ <location line="+107"/>
+ <location line="+227"/>
<source>Message to channel %1</source>
<translation>Wiadomość do kanału %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1447"/>
+ <location line="-82"/>
<source>Are you sure you want to delete %1 and all its sub-channels?</source>
<translation>Czy jesteś pewien, że chcesz usunąć %1 oraz wszystkie pod-kanały?</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2252"/>
+ <location line="+805"/>
<source>Type message to channel &apos;%1&apos; here</source>
<translation>Wiadomość do kanału &apos;%1&apos;</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2255"/>
+ <location line="+3"/>
<source>Type message to user &apos;%1&apos; here</source>
<translation>Wiadomość do użytkownika &apos;%1&apos;</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2346"/>
+ <location line="+91"/>
<source>Choose image file</source>
<translation>Wybierz plik obrazka</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>Images (*.png *.jpg)</source>
<translation type="obsolete">Obrazki (*.png *.jpg)</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2370"/>
+ <location line="+7"/>
+ <location line="+17"/>
<source>Failed to load image</source>
<translation>Nie udało się załadować obrazka</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2353"/>
+ <location line="-17"/>
<source>Could not open file for reading.</source>
<translation>Nie udało się otworzyć pliku do odczytu.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2370"/>
+ <location line="+17"/>
<source>Image format not recognized.</source>
<translation>Nieznany format obrazka.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="180"/>
+ <location filename="MainWindow.ui"/>
<source>&amp;Quit Mumble</source>
<translation>&amp;Zakończ</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="183"/>
+ <location/>
<source>Closes the program</source>
<translation>Zamyka program</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="186"/>
+ <location/>
<source>Exits the application.</source>
<translation>Wyłącza aplikację.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Send Messa&amp;ge</source>
<translation type="obsolete">Wyślij wiado&amp;mość</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="594"/>
+ <location/>
<source>Send a Text Message</source>
<translation>Wyślij wiadomość tekstową</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="939"/>
+ <location filename="MainWindow.cpp" line="-1435"/>
<source>&lt;h2&gt;Control channel&lt;/h2&gt;&lt;p&gt;Encrypted with %1 bit %2&lt;br /&gt;%3 ms average latency (%4 deviation)&lt;/p&gt;&lt;p&gt;Remote host %5 (port %6)&lt;/p&gt;</source>
<translation>&lt;h2&gt;Kanał kontrolny&lt;/h2&gt;&lt;p&gt;Szyfrowanie %1 bit %2&lt;br /&gt;Średnie opóźnienie %3 ms (%4 odchylenie)&lt;/p&gt;&lt;p&gt;Zdalny host %5 (port %6)&lt;/p&gt;</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1215"/>
+ <location line="+278"/>
<source>Sending message to %1</source>
<translation>Wysyłanie wiadomości do %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1308"/>
+ <location line="+10"/>
+ <location line="+79"/>
+ <location line="+4"/>
<source>To %1: %2</source>
<translation>Do %1: %2</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1308"/>
+ <location line="-83"/>
+ <location line="+83"/>
<source>Message to %1</source>
<translation>Wiadomość do %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1248"/>
+ <location line="-60"/>
<source>View comment on user %1</source>
<translation>Podgląd komentarza użytkownika %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1264"/>
+ <location line="+16"/>
<source>Are you sure you want to reset the comment of user %1?</source>
<translation>Czy jesteś pewny, że chcesz usunąć komentarz użytkownika %1?</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1527"/>
+ <location line="+265"/>
<source>(Tree) %1: %2</source>
<translation>(Drzewo) %1: %2</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1529"/>
+ <location line="+2"/>
<source>%1: %2</source>
<translation>%1: %2</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1965"/>
+ <location line="+436"/>
<source>Connected.</source>
<translation>Połączono.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2112"/>
+ <location line="+147"/>
<source>SSL Version mismatch</source>
<translation>Nieprawidłowa wersja SSL</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2112"/>
+ <location line="+0"/>
<source>This server is using an older encryption standard. It might be an older 1.1 based Mumble server.&lt;br /&gt;Would you like to launch the compatibility client to connect to it?</source>
<translation>Ten serwer używa starszej wersji szyfrowania. Być może jest to starszy serwer bazujący na wersji 1.1 Mumble.&lt;br /&gt;Czy chcesz uruchomić klient kompatybilny wstecz, aby się połączyć?</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2138"/>
+ <location line="+26"/>
<source>Failed to launch compatibility client</source>
<translation>Nie udało się włączyć klienta kompatybilnego wstecz</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2138"/>
+ <location line="+0"/>
<source>The compatibility client could not be found, or failed to start.&lt;br /&gt;Note that the compatibility client is an optional component for most installations, and might not be installed.</source>
<translation>Klient kompatybilny wstecz nie został odnaleziony lub nie udało się go uruchomić.&lt;br /&gt;Pamiętaj, że klient kompatybilny wstecz to opcjonalny składnik instalacji i może wcale nie być zainstalowany.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2159"/>
+ <location line="+21"/>
<source>Invalid username</source>
<translation>Niepoprawna nazwa użytkownika</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2159"/>
+ <location line="+0"/>
<source>You connected with an invalid username, please try another one.</source>
<translation>Połączyłeś się do serwera z niewłaściwą nazwą użytkownika, spróbuj innej nazwy.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2159"/>
+ <location line="+0"/>
<source>That username is already in use, please try another username.</source>
<translation>Ta nazwa użytkownika jest już zajęta, spróbuj innej.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2164"/>
+ <location line="+5"/>
<source>Wrong password</source>
<translation>Błędne hasło</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2164"/>
+ <location line="+0"/>
<source>Wrong password for registered users, please try again.</source>
<translation>Podałeś złe hasło dla zarejestrowanych użytkowników, spróbuj jeszcze raz.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2164"/>
+ <location line="+0"/>
<source>Wrong server password for unregistered user account, please try again.</source>
<translation>Podałeś złe hasło dla niezarejestrowanych użytkowników, spróbuj jeszcze raz.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>From %1: %2</source>
<translation type="obsolete">Od %1: %2</translation>
</message>
<message>
- <location filename="Messages.cpp" line="543"/>
+ <location filename="Messages.cpp" line="+327"/>
<source>Message from %1</source>
<translation>Wiadomość od %1</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="516"/>
+ <location filename="MainWindow.ui"/>
<source>&amp;Audio Wizard</source>
<translation>Kreator ustawień &amp;dźwięku</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="331"/>
+ <location/>
<source>Sends a text message to another user.</source>
<translation>Wysyła wiadomość tekstową do innego użytkownika.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="164"/>
+ <location filename="MainWindow.cpp" line="-2007"/>
<source>&amp;User</source>
<translation>&amp;Użytkownik</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="132"/>
+ <location filename="MainWindow.ui"/>
<source>This is the chatbar&lt;br /&gt;If you enter text here and then press enter the text is sent to the user or channel that was selected. If nothing is selected the message is sent to your current channel.</source>
<translation>To jest pasek czatu.&lt;br /&gt;Jeśli wpiszesz w nim tekst i naciśniesz enter zostanie on wysłany do kanału lub użytkownika, który w chwili obecnej jest zaznaczony. Jeśli nic nie jest zaznaczone wiadomość zostanie wysłana do kanału, na którym się znajdujesz.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="138"/>
+ <location/>
<source>Chatbar</source>
<translation>Pasek czatu</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="204"/>
+ <location/>
<source>Shows a dialog of registered servers, and also allows quick-connect.</source>
<translation>Wyświetla okno z zarejestrowanymi serwerami, pozwala również na szybkie łączenie.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="264"/>
+ <location/>
<source>Kick user (with reason)</source>
<translation>Kopnij użytkownika (z podaniem powodu)</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="267"/>
+ <location/>
<source>Kick selected user off server. You&apos;ll be asked to specify a reason.</source>
<translation>Wyrzuca zaznaczonego użytkownika z serwera. Zostaniesz poproszony o podanie powodu.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="278"/>
+ <location/>
<source>Mute user</source>
<translation>Wycisz użytkownika</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="281"/>
+ <location/>
<source>Mute or unmute user on server. Unmuting a deafened user will also undeafen them.</source>
<translation>Wycisza lub wyłącza wyciszenie użytkownika na serwerze. Wyłączenie wyciszenia ogłuszonemu użytkownikowi wyłączy również ogłuszenie.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="289"/>
+ <location/>
<source>Kick and ban user (with reason)</source>
<translation>Wykop i zbanuj użytkownika (z podaniem powodu)</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="292"/>
+ <location/>
<source>Kick and ban selected user from server. You&apos;ll be asked to specify a reason.</source>
<translation>Wyrzuca i blokuje dostęp zaznaczonego użytkownika do serwera. Zostaniesz poproszony o podanie powodu.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="303"/>
+ <location/>
<source>Deafen user</source>
<translation>Ogłusz użytkownika</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="306"/>
+ <location/>
<source>Deafen or undeafen user on server. Deafening a user will also mute them.</source>
<translation>Ogłusza lub wyłącza ogłuszenie użytkownika na serwerze. Ogłuszenie użytkownika spowoduje również wyciszenie jego mikrofonu.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="317"/>
+ <location/>
<source>Mute user locally</source>
<translation>Wycisz użytkownika lokalnie</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="320"/>
+ <location/>
<source>Mute or unmute user locally. Use this on other users in the same room.</source>
<translation>Wycisza lub wyłącza wyciszenie użytkownika lokalnie. Używaj tej opcji na innych użytkownikach w tym samym kanale.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="358"/>
+ <location/>
<source>&amp;Edit</source>
<translation>&amp;Edytuj</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="375"/>
+ <location/>
<source>This links your current channel to the selected channel. If users in a channel have permission to speak in the other channel, users can now hear each other. This is a permanent link, and will last until manually unlinked or the server is restarted. Please see the shortcuts for push-to-link.</source>
<translation>Umożliwia połączenie twojego kanału z innym wybranym kanałem. Jeżeli użytkownicy posiadają uprawnienie &lt;i&gt;Mowa&lt;/i&gt; na łączonych kanałach będą mogli się nawzajem słyszeć. Połączenie jest aktywne dopóki nie rozłączysz kanałów lub do czasu gdy serwer zostanie zrestartowany. Prosimy zapoznać się ze skrótami Push-To-Link (Naciśnij-i-Połącz).</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="519"/>
+ <location/>
<source>Start the audio configuration wizard</source>
<translation>Rozpocznij konfigurację dźwięku</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="522"/>
+ <location/>
<source>This will guide you through the process of configuring your audio hardware.</source>
<translation>Ten kreator poprowadzi cię przez proces konfiguracji ustawień dźwięku.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2074"/>
+ <location filename="MainWindow.cpp" line="+1917"/>
<source>SSL Verification failed: %1</source>
<translation>Weryfikacja SSL nie powiodła się: %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2079"/>
+ <location line="+5"/>
<source>&lt;b&gt;WARNING:&lt;/b&gt; The server presented a certificate that was different from the stored one.</source>
<translation>&lt;b&gt;OSTRZEŻENIE:&lt;/b&gt; Ten serwer posiada obecnie inny certyfikat niż poprzedni, który masz zachowany u siebie.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2081"/>
+ <location line="+2"/>
<source>Sever presented a certificate which failed verification.</source>
<translation>Serwer posiada certyfikat, który nie przeszedł weryfikacji.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2090"/>
+ <location line="+7"/>
<source>&lt;p&gt;%1.&lt;br /&gt;The specific errors with this certificate are: &lt;/p&gt;&lt;ol&gt;%2&lt;/ol&gt;&lt;p&gt;Do you wish to accept this certificate anyway?&lt;br /&gt;(It will also be stored so you won&apos;t be asked this again.)&lt;/p&gt;</source>
<translation>&lt;p&gt;%1.&lt;br /&gt;Błędy certyfikatu: &lt;/p&gt;&lt;ol&gt;%2&lt;/ol&gt;&lt;p&gt;Czy mimo to chcesz go zaakceptować?&lt;br /&gt;(Mumble więcej cię o to nie zapyta.)&lt;/p&gt;</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="741"/>
+ <location filename="MainWindow.ui"/>
<source>&amp;Information</source>
<translation>&amp;Informacje</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="250"/>
+ <location/>
<source>Show information about the server connection</source>
<translation>Wyświetl informacje o połączeniu</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="253"/>
+ <location/>
<source>This will show extended information about the connection to the server.</source>
<translation>Wyświetla zaawansowane informacje na temat połączenia z serwerem.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="963"/>
+ <location filename="MainWindow.cpp" line="-1129"/>
<source>Mumble Server Information</source>
<translation>Serwer Mumble - Informacje</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2095"/>
+ <location line="+4"/>
+ <location line="+1132"/>
<source>&amp;View Certificate</source>
<translation>&amp;Zobacz certyfikat</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="509"/>
+ <location line="-1591"/>
<source>Opening URL %1</source>
<translation>Otwieranie adresu %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="208"/>
+ <location line="-303"/>
<source>Mute Self</source>
<comment>Global Shortcut</comment>
<translation>Wyciszenie</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="210"/>
+ <location line="+2"/>
<source>Set self-mute status.</source>
<comment>Global Shortcut</comment>
<translation>Przełącza stan wyciszenia (Włącza/Wyłącza).</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="211"/>
+ <location line="+1"/>
<source>This will set or toggle your muted status. If you turn this off, you will also disable self-deafen.</source>
<comment>Global Shortcut</comment>
<translation>Przełącza stan wyciszenia. Jeżeli wyłączasz wyciszenie, wyłączasz również ogłuszenie.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="213"/>
+ <location line="+2"/>
<source>Deafen Self</source>
<comment>Global Shortcut</comment>
<translation>Ogłuszenie</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="215"/>
+ <location line="+2"/>
<source>Set self-deafen status.</source>
<comment>Global Shortcut</comment>
<translation>Przełącza stan ogłuszenia (Włącza/Wyłącza).</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="216"/>
+ <location line="+1"/>
<source>This will set or toggle your deafened status. If you turn this on, you will also enable self-mute.</source>
<comment>Global Shortcut</comment>
<translation>Przełącza stan ogłuszenia. Jeżeli włączasz, włączasz również wyciszenie.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="230"/>
+ <location line="+14"/>
<source>This will switch the states of the in-game overlay between showing everybody, just the users who are talking, and nobody.</source>
<comment>Global Shortcut</comment>
<translation>Przełącza stan nakładki podczas gry, będzie ona wyświetlała wszystkich, nikogo, lub użytkowników którzy aktualnie mówią.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="246"/>
+ <location line="+16"/>
<source>Whisper</source>
<translation>Szepnij</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2246"/>
+ <location line="+58"/>
+ <location line="+1949"/>
<source>Not connected</source>
<translation>Nie połączony</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="513"/>
+ <location line="-1738"/>
<source>File does not exist</source>
<translation>Plik nie istnieje</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="523"/>
+ <location line="+10"/>
<source>File is not a configuration file.</source>
<translation>Plik nie jest plikiem konfiguracyjnym.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="529"/>
+ <location line="+6"/>
<source>Settings merged from file.</source>
<translation>Ustawienia połączone z pliku.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="535"/>
+ <location line="+6"/>
<source>URL scheme is not &apos;mumble&apos;</source>
<translation>Adres URL nie jest obsługiwany przez Mumble (brak mumble:// w adresie)</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="560"/>
+ <location line="+25"/>
<source>This version of Mumble can&apos;t handle URLs for Mumble version %1.%2.%3</source>
<translation>Ta wersja Mumble nie obsługuje URL starszych wersji Mumble %1.%2.%3</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="589"/>
+ <location line="+29"/>
<source>Connecting to %1</source>
<translation>Łączenie z %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="589"/>
+ <location line="+0"/>
<source>Enter username</source>
<translation>Nazwa użytkownika</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>Renames the channel</source>
<translation type="obsolete">Zmienia nazwę kanału</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>This renames a channel.</source>
<translation type="obsolete">Zmienia nazwę kanału.</translation>
</message>
<message>
- <location filename="main.cpp" line="330"/>
+ <location filename="main.cpp" line="+19"/>
<source>This is the first time you&apos;re starting Mumble.&lt;br /&gt;Would you like to go through the Audio Wizard to configure your soundcard?</source>
<translation>Program Mumble został uruchomiony po raz pierwszy na tym komputerze.&lt;br /&gt; Czy chciałbyś uruchomić kreator ustawień dźwięku, aby skonfigurować podstawowe opcje aplikacji?</translation>
</message>
<message>
- <location filename="main.cpp" line="0"/>
<source>&lt;h2&gt;Control channel&lt;/h2&gt;&lt;p&gt;Encrypted with %1 bit %2&lt;br /&gt;%3 ms average latency (%4 variance)&lt;/p&gt;</source>
<translation type="obsolete">&lt;h2&gt;Kanał kontrolny&lt;/h2&gt;&lt;p&gt;Szyfrowanie %1 bit %2&lt;br /&gt;%1 ms przeciętnego opóźnienia (%4 niezgodności)&lt;/p&gt;</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="948"/>
+ <location filename="MainWindow.cpp" line="+360"/>
<source>Voice channel is sent over control channel.</source>
<translation>Kanał głosowy jest wysyłany przez kanał kontrolny.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>&lt;h2&gt;Voice channel&lt;/h2&gt;&lt;p&gt;Encrypted with 128 bit OCB-AES128&lt;br /&gt;%1 ms average latency (%4 variance)&lt;/p&gt;</source>
<translation type="obsolete">&lt;h2&gt;Kanał głosowy&lt;/h2&gt;&lt;p&gt;Szyfrowanie 128-bitowym kluczem OCB-AES128&lt;br /&gt;%1 ms przeciętnego opóźnienia (%4 niezgodności)&lt;/p&gt;</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="957"/>
+ <location line="+9"/>
<source>UDP Statistics</source>
<translation>Statystyki UDP</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="957"/>
+ <location line="+0"/>
<source>To Server</source>
<translation>Do serwera</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="957"/>
+ <location line="+0"/>
<source>From Server</source>
<translation>Od serwera</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="957"/>
+ <location line="+0"/>
<source>Good</source>
<translation>Dobre</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="957"/>
+ <location line="+0"/>
<source>Late</source>
<translation>Opóźnione</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="957"/>
+ <location line="+0"/>
<source>Lost</source>
<translation>Utracone</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="957"/>
+ <location line="+0"/>
<source>Resync</source>
<translation>Re-synchronizowane</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="189"/>
+ <location filename="MainWindow.ui"/>
<source>Ctrl+Q</source>
<translation>Ctrl+Q</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Mute player locally</source>
<translation type="obsolete">Wycisz użytkownika lokalnie</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Mute or unmute player locally. Use this on other players in the same room.</source>
<translation type="obsolete">Wyciszanie mikrofonu lub przywracanie głosu danego użytkownika lokalnie. Używaj tego na innych użytkownikach na tym samym kanale.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>&amp;Rename Channel</source>
<translation type="obsolete">&amp;Zmień nazwę</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="566"/>
+ <location/>
<source>About &amp;Qt</source>
<translation>O &amp;Qt</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1518"/>
+ <location filename="MainWindow.cpp" line="+565"/>
<source>Sending message to channel %1</source>
<translation>Wysyłanie wiadomości na kanał: %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>Sending message to channel tree %1</source>
<translation type="obsolete">Wyślij wiadomość do wszystkich na: %1</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>To tree %1: %2</source>
<translation type="obsolete">Do kanału %1: %2</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="1527"/>
+ <location line="+9"/>
<source>Message to tree %1</source>
<translation>Wyślij do kanału %1</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="597"/>
+ <location filename="MainWindow.ui"/>
<source>Sends a text message to all users in a channel.</source>
<translation>Wysyła wiadomość tekstową do wszystkich użytkowników na tym kanale.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Send &amp;Tree Message</source>
<translation type="obsolete">Wyślij do &amp;drzewa kanałów</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Send message to channel tree.</source>
<translation type="obsolete">Wyślij wiadomość do wszystkich na tym kanale.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>This sends a text message to a channel and it&apos;s subchannels.</source>
<translation type="obsolete">Wysyła wiadomość do wszystkich na tym kanale oraz do wszystkich pod-kanałów.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Server maximum bandwidth is only %1 kbit/s. Quality auto-adjusted.</source>
<translation type="obsolete">Maksymalny transfer serwera to %1 kbit/s. Jakość ustawiona automatycznie.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>&lt;h2&gt;Audio bandwidth&lt;/h2&gt;&lt;p&gt;Maximum %1 kbit/s&lt;br /&gt;Current %2 kbit/s (Quality %3)&lt;/p&gt;</source>
<translation type="obsolete">&lt;h2&gt;Szerokość pasma dźwięku&lt;/h2&gt;&lt;p&gt;Maksymalnie %1 kbit/s&lt;br /&gt;Obecnie %2 kbit/s (Jakość %3)&lt;/p&gt;</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Connected to server %1.</source>
<translation type="obsolete">Połączony z serwerem %1.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="358"/>
+ <location filename="MainWindow.cpp" line="-1174"/>
<source>Mumble is currently connected to a server. Do you want to Close or Minimize it?</source>
<translation>&lt;b&gt;UWAGA!&lt;/b&gt; Mumble jest obecnie połączony z serwerem. Chcesz zakończyć czy zminimalizować program?</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="359"/>
+ <location line="+1"/>
<source>Close</source>
<translation>Zakończ</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="360"/>
+ <location line="-100"/>
+ <location line="+101"/>
<source>Minimize</source>
<translation>Minimalizuj</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="259"/>
+ <location line="-103"/>
<source>&amp;Window</source>
<translation>&amp;Okno</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="261"/>
+ <location line="+2"/>
<source>Ctrl+M</source>
<translation>Ctrl+M</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="0"/>
<source>Ctrl+W</source>
<translation type="obsolete">Ctrl+W</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="233"/>
+ <location line="-28"/>
<source>Toggle Minimal</source>
<comment>Global Shortcut</comment>
<translation>Tryb minimalny</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="605"/>
+ <location filename="MainWindow.ui"/>
<source>&amp;Minimal View</source>
<translation>&amp;Widok minimalny</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="608"/>
+ <location/>
<source>Toggle minimal window modes</source>
<translation>Włącz/Wyłącz widok minimalny</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="611"/>
+ <location/>
<source>This will toggle minimal mode, where the log window and menu is hidden.</source>
<translation>Przełącza na widok minimalny, gdzie okno z dziennikiem i menu są ukryte.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="104"/>
+ <location/>
<source>Log</source>
<translation>Dziennik</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="236"/>
+ <location filename="MainWindow.cpp" line="+3"/>
<source>Volume Up (+10%)</source>
<comment>Global Shortcut</comment>
<translation>Głośność w górę (+10%)</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="239"/>
+ <location line="+3"/>
<source>Volume Down (-10%)</source>
<comment>Global Shortcut</comment>
<translation>Głośność w dół (-10%)</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="503"/>
+ <location line="+266"/>
<source>Clear</source>
<translation>Wyczyść</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="1380"/>
+ <location filename="UserModel.cpp" line="+1382"/>
<source>You have Channel Dragging set to &quot;Do Nothing&quot; so the channel wasn&apos;t moved.</source>
<translation>Masz wyłączone przeciąganie kanałów, więc kanał nie został przeniesiony.</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="1386"/>
+ <location line="+6"/>
<source>Unknown Channel Drag mode in UserModel::dropMimeData.</source>
<translation>Nieznany sposób przeciągania kanałów w UserModel::dropMimeData.</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="0"/>
<source>Unknown Channel Drag mode in PlayerModel::dropMimeData.</source>
<translation type="obsolete">Nieznany tryb Przeciągania Kanału w PlayerModel::dropMimeData.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="380"/>
+ <location filename="MainWindow.ui"/>
<source>&amp;Unlink</source>
<comment>Channel</comment>
<translation>&amp;Rozłącz kanały</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>&amp;Unlink</source>
<comment>Plugin</comment>
<translation type="obsolete">&amp;Wyłącz wtyczki</translation>
</message>
<message>
- <location filename="Messages.cpp" line="534"/>
+ <location filename="Messages.cpp" line="-10"/>
+ <location line="+1"/>
<source>Server</source>
<comment>message from</comment>
<translation>Serwera</translation>
</message>
<message>
- <location filename="Messages.cpp" line="0"/>
<source>&amp;Quit</source>
<translation type="obsolete">&amp;Zakończ</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="619"/>
+ <location filename="MainWindow.ui"/>
<source>Hide Frame</source>
<translation>Ukryj ramkę</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="622"/>
+ <location/>
<source>Toggle showing frame on minimal window</source>
<translation>Uaktywnia obramowanie okna w trybie minimalnym</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="625"/>
+ <location/>
<source>This will toggle whether the minimal window should have a frame for moving and resizing.</source>
<translation>Uaktywnia obramowanie okna w trybie minimalnym dzięki czemu można przenosić i zmieniać rozmiar okna.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="591"/>
+ <location/>
<source>Send &amp;Message</source>
<translation>Wyślij &amp;wiadomość</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="391"/>
+ <location/>
<source>&amp;Unlink All</source>
<translation>R&amp;ozłącz wszystkie</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="630"/>
+ <location/>
<source>&amp;Certificate Wizard</source>
<translation>Kreator &amp;certyfikatów</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="641"/>
+ <location/>
<source>&amp;Register</source>
<translation>&amp;Zarejestruj</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>Change &amp;Texture</source>
<translation type="obsolete">Zmień &amp;Obrazek</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="0"/>
<source>&amp;Remove Texture</source>
<translation type="obsolete">&amp;Usuń Obrazek</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="720"/>
+ <location/>
<source>Reset &amp;Comment</source>
<translation>Usuń &amp;komentarz</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="723"/>
+ <location/>
<source>Reset the comment of the selected user.</source>
<translation>Usuwa komentarz wybranemu użytkownikowi.</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="728"/>
+ <location/>
<source>&amp;Join Channel</source>
<translation>&amp;Dołącz do kanału</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="733"/>
+ <location/>
<source>View Comment</source>
<translation>Wyświetl komentarz</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="736"/>
+ <location/>
<source>View comment in editor</source>
<translation>Podgląd komentarza w edytorze</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="744"/>
+ <location/>
<source>Query server for connection information for user</source>
<translation>Wyświetla okno z informacjami o użytkowniku</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="77"/>
+ <location/>
<source>S&amp;erver</source>
<translation>&amp;Serwer</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="82"/>
+ <location/>
<source>&amp;Self</source>
<translation>&amp;Własne</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="473"/>
+ <location/>
<source>Audio S&amp;tatistics</source>
<translation>&amp;Statystyki audio</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="484"/>
+ <location/>
<source>&amp;Unlink Plugins</source>
<translation>&amp;Wyłacz wtyczki</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="756"/>
+ <location/>
<source>Change your own comment.</source>
<translation>Zmień swój komentarz</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="764"/>
+ <location/>
<source>R&amp;egister</source>
<translation>&amp;Zarejestruj</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="767"/>
+ <location/>
<source>Register yourself on the server</source>
<translation>Zarejestruj siebie na serwerze</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="696"/>
+ <location/>
<source>Change &amp;Avatar</source>
<translation>Zmień &amp;awatar</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="699"/>
+ <location/>
<source>Change your avatar image on this server</source>
<translation>Zmień swój awatar na tym serwerze</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="712"/>
+ <location/>
<source>&amp;Remove Avatar</source>
<translation>&amp;Usuń awatar</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="715"/>
+ <location/>
<source>Remove currently defined avatar image.</source>
<translation>Usuwa aktualnie zdefiniowany awatar.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="831"/>
+ <location filename="MainWindow.cpp" line="+329"/>
<source>Change your comment</source>
<translation>Edycja własnego komentarza</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="2346"/>
+ <location line="+1519"/>
<source>Images (*.png *.jpg *.svg)</source>
<translation>Obrazki (*.png *.jpg *.svg)</translation>
</message>
<message>
- <location filename="MainWindow.ui" line="160"/>
+ <location filename="MainWindow.ui"/>
<source>Icon Toolbar</source>
<translation>Ikony</translation>
</message>
@@ -7043,269 +6821,264 @@ p, li { white-space: pre-wrap; }
<context>
<name>NetworkConfig</name>
<message>
- <location filename="NetworkConfig.cpp" line="52"/>
+ <location filename="NetworkConfig.cpp" line="+52"/>
<source>Network</source>
<translation>Sieć</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="14"/>
+ <location filename="NetworkConfig.ui"/>
<source>Form</source>
<translation>Formularz</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="26"/>
+ <location/>
<source>Connection</source>
<translation>Połączenie</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="32"/>
+ <location/>
<source>Use TCP compatibility mode</source>
<translation>Używaj trybu zgodności TCP</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="35"/>
+ <location/>
<source>&lt;b&gt;Enable TCP compatibility mode&lt;/b&gt;.&lt;br /&gt;This will make Mumble use only TCP when communicating with the server. This will increase overhead and cause lost packets to produce noticeable pauses in communication, so this should only be used if you are unable to use the default (which uses UDP for voice and TCP for control).</source>
<translation>&lt;b&gt;Uaktywnij tryb kompatybilności TCP.&lt;/b&gt; Dzięki tej opcji Mumble działa w przypadkach kiedy nie można się połączyć w trybie UDP. Negatywnym skutkiem tej opcji jest utracenie pewnej liczby pakietów.</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="0"/>
<source>Use TCP mode</source>
<translation type="obsolete">Używaj trybu TCP</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="58"/>
+ <location/>
<source>Reconnect when disconnected</source>
<translation>Automatycznie wznawiaj przerwane połączenie</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="61"/>
+ <location/>
<source>&lt;b&gt;Reconnect when disconnected&lt;/b&gt;.&lt;br /&gt;This will make Mumble try to automatically reconnect after 10 seconds if your server connection fails.</source>
<translation>&lt;b&gt;Automatycznie wznawiaj przerwane połączenie&lt;/b&gt; Mumble będzie ponawiać połączenie co 10 sekund.</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="64"/>
+ <location/>
<source>Reconnect automatically</source>
<translation>Automatycznie wznawiaj przerwane połączenie</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="93"/>
+ <location/>
<source>Proxy</source>
<translation>Proxy</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="99"/>
+ <location/>
<source>Type</source>
<translation>Typ</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="112"/>
+ <location/>
<source>Type of proxy to connect through</source>
<translation>Typ proxy</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="0"/>
<source>&lt;b&gt;Type of proxy to connect through&lt;/b&gt;&lt;br /&gt;This makes Mumble connect through a proxy for all outgoing connections. Note: Proxy tunneling forces Mumble into TCP compatibility mode, causing all voice data to be sent via the control channel.</source>
<translation type="obsolete">&lt;b&gt;Rodzaj proxy.&lt;/b&gt; Połączenia przez proxy wymuszają tryb zgodności TCP.</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="119"/>
+ <location/>
<source>Direct connection</source>
<translation>Połączenie bezpośrednie</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="124"/>
+ <location/>
<source>HTTP(S) proxy</source>
<translation>HTTP(S) Proxy</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="129"/>
+ <location/>
<source>SOCKS5 proxy</source>
<translation>SOCKS5 Proxy</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="137"/>
+ <location/>
<source>Hostname</source>
<translation>Host</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="153"/>
+ <location/>
<source>Hostname of the proxy</source>
<translation>Nazwa hosta proxy</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="0"/>
<source>&lt;b&gt;Hostname of the proxy.&lt;b&gt;&lt;br /&gt;This field specifies the hostname of the proxy you wish to tunnel network traffic through.</source>
<translation type="obsolete">Nazwa serwera proxy.</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="38"/>
+ <location/>
<source>Force TCP mode</source>
<translation>Wymuś tryb TCP</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="45"/>
+ <location/>
<source>Enable QoS to prioritize packets</source>
<translation>Włącz QoS, aby spriorytetyzować pakiety</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="48"/>
+ <location/>
<source>This will enable QoS, which will attempt to prioritize voice packets over other traffic.</source>
<translation>Uaktywnia QoS, który będzie próbował nadawać pakietom wychodzącym wyższy priorytet.</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="51"/>
+ <location/>
<source>Use Quality of Service</source>
<translation>Używaj Quality of Service</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="71"/>
+ <location/>
<source>Don&apos;t send certificate to server and don&apos;t save passwords. (Not saved).</source>
<translation>Nie wysyłaj certyfikatu na serwer ani nie zapamiętuj haseł.</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="74"/>
+ <location/>
<source>&lt;b&gt;This will suppress identity information from the client.&lt;/b&gt;&lt;p&gt;The client will not identify itself with a certificate, even if defined, and will not cache passwords for connections. This is primarily a test-option and is not saved.&lt;/p&gt;</source>
<translation>&lt;b&gt;Usuwa wszelkie informacje z klienta.&lt;/b&gt;&lt;p&gt;Klient nie będzie identyfikował się za pomocą certyfikatu, nawet jeśli wcześniej był tak skonfigurowany, oraz nie będzie zapisywał haseł dla połączeń. Jest to opcja testową i nie jest zapamiętywana.&lt;/p&gt;</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="77"/>
+ <location/>
<source>Suppress certificate and password storage</source>
<translation>Nie zachowuj haseł i certyfikatów</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="115"/>
+ <location/>
<source>&lt;b&gt;Type of proxy to connect through.&lt;/b&gt;&lt;br /&gt;This makes Mumble connect through a proxy for all outgoing connections. Note: Proxy tunneling forces Mumble into TCP compatibility mode, causing all voice data to be sent via the control channel.</source>
<translation>&lt;b&gt;Typ proxy używanego do połączenia.&lt;/b&gt;&lt;br /&gt;Zmusza Mumble do połączenia przez serwer proxy dla wszystkich wychodzących połączeń. Informacja: Tunelowanie proxy zmusza Mumble do używania trybu TCP, sprawiając że wszystkie dane będą przesyłane przez kanał kontrolny.</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="156"/>
+ <location/>
<source>&lt;b&gt;Hostname of the proxy.&lt;/b&gt;&lt;br /&gt;This field specifies the hostname of the proxy you wish to tunnel network traffic through.</source>
<translation>&lt;b&gt;Nazwa hosta proxy.&lt;/b&gt;&lt;br /&gt; Te pole określa nazwę hosta serwera proxy przez, który chcesz puścić cały ruch.</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="178"/>
+ <location/>
<source>Port</source>
<translation>Port</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="203"/>
+ <location/>
<source>Port number of the proxy</source>
<translation>Numer portu</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="206"/>
+ <location/>
<source>&lt;b&gt;Port number of the proxy.&lt;/b&gt;&lt;br /&gt;This field specifies the port number that the proxy expects connections on.</source>
<translation>Port na zdalnym serwerze.</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="222"/>
+ <location/>
<source>Username</source>
<translation>Użytkownik</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="229"/>
+ <location/>
<source>Username for proxy authentication</source>
<translation>Nazwa użytkownika dla proxy</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="232"/>
+ <location/>
<source>&lt;b&gt;Username for proxy authentication.&lt;/b&gt;&lt;br /&gt;This specifies the username you use for authenticating yourself with the proxy. In case the proxy does not use authentication, or you want to connect anonymously, simply leave this field blank.</source>
<translation>Nazwa użytkownika przy autoryzacji do proxy.</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="239"/>
+ <location/>
<source>Password</source>
<translation>Hasło</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="246"/>
+ <location/>
<source>Password for proxy authentication</source>
<translation>Hasło dla proxy</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="249"/>
+ <location/>
<source>&lt;b&gt;Password for proxy authentication.&lt;/b&gt;&lt;br /&gt;This specifies the password you use for authenticating yourself with the proxy. In case the proxy does not use authentication, or you want to connect anonymously, simply leave this field blank.</source>
<translation>Hasło do serwera proxy. Jeżeli dostęp ma być anonimowy pozostaw te pole puste.</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="268"/>
+ <location/>
<source>Misc</source>
<translation>Różne</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="274"/>
+ <location/>
<source>Prevent log from downloading images</source>
<translation>Nie zezwalaj na pobieranie obrazów w dzienniku</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="277"/>
+ <location/>
<source>&lt;b&gt;Disable image download&lt;/b&gt;&lt;br/&gt;
Prevents the client from downloading images embedded into chat messages with the img tag.</source>
<translation>&lt;b&gt;Nie pobieraj obrazów&lt;/b&gt;&lt;br/&gt;
Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku za pomocą tagu img.</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="281"/>
+ <location/>
<source>Disable image download</source>
<translation>Nie pobieraj obrazów</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="291"/>
+ <location/>
<source>Mumble services</source>
<translation>Usługi Mumble</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="297"/>
+ <location/>
<source>Check for new releases of Mumble automatically.</source>
<translation>Automatycznie sprawdzaj czy są nowe wersje Mumble.</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="300"/>
+ <location/>
<source>This will check for new releases of Mumble every time you start the program, and notify you if one is available.</source>
<translation>Sprawdza czy jest nowsza wersja Mumble za każdym razem kiedy uruchamiasz program, oraz powiadamia cię jeżeli jest dostępna.</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="303"/>
+ <location/>
<source>Check for application updates on startup</source>
<translation>Sprawdzaj dostępność aktualizacji</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="310"/>
+ <location/>
<source>Check for new releases of plugins automatically.</source>
<translation>Automatycznie sprawdzaj czy są nowe wersje wtyczek.</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="313"/>
+ <location/>
<source>This will check for new releases of plugins every time you start the program, and download them automatically.</source>
<translation>Sprawdza czy są nowsze wersje wtyczek za każdym razem kiedy włączasz program, pozwala również na ich automatyczne pobieranie.</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="316"/>
+ <location/>
<source>Download plugin updates on startup</source>
<translation>Pobieraj aktualizacje wtyczek przy starcie</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="326"/>
+ <location/>
<source>&lt;b&gt;Submit anonymous statistics.&lt;/b&gt;&lt;br /&gt;Mumble has a small development team, and as such needs to focus its development where it is needed most. By submitting a bit of statistics you help the project determine where to focus development.</source>
<translation>&lt;b&gt;Wysyłaj anonimowe statystyki.&lt;/b&gt;&lt;br /&gt;Mumble posiada mały zespół deweloperów, który musi skupić się na funkcjach, które są najbardziej potrzebne. Wysyłając statystyki pomagasz projektowi w określeniu na czym skupić się w przyszłości.</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="0"/>
<source>Check for updates on startup</source>
<translation type="obsolete">Sprawdzaj podczas uruchamiania czy jest nowsza wersja Mumble</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="323"/>
+ <location/>
<source>Submit anonymous statistics to the Mumble project</source>
<translation>Zezwalaj na wysyłanie anonimowych statystyk do twórców Mumble</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="0"/>
<source>&lt;b&gt;Submit anonymous statistics.&lt;/b&gt;&lt;br /&gt;Mumble has a small development team, and as such needs to focus it&apos;s development where it&apos;s needed most. By submitting a bit of statistics you help the project determine where to focus development.</source>
<translation type="obsolete">&lt;b&gt;Zezwalaj na wysyłanie anonimowych statystyk.&lt;/b&gt;&lt;br /&gt;Mumble ma małą drużynę deweloperów, która musi się skupić na opcjach, które są jak najbardziej potrzebne. Zezwalając na wysyłanie statystyk pomagasz ustalić nad czym skupić dalszy rozwój aplikacji.</translation>
</message>
<message>
- <location filename="NetworkConfig.ui" line="329"/>
+ <location/>
<source>Submit anonymous statistics</source>
<translation>Wysyłaj anonimowe statystyki</translation>
</message>
@@ -7313,17 +7086,15 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>Overlay</name>
<message>
- <location filename="NetworkConfig.ui" line="0"/>
<source>Mumble</source>
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="646"/>
+ <location filename="Overlay.cpp" line="+642"/>
<source>Failed to create communication with overlay at %2: %1. No overlay will be available.</source>
<translation>Tworzenie komunikacji z nakładką nie powiodło się w %2: %1. Nakładka nie będzie dostępna.</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="0"/>
<source>Failed to load overlay library. This means either that:
- the library (mumble_ol.dll) wasn&apos;t found in the directory you ran Mumble from
- you&apos;re on an OS earlier than WinXP SP2
@@ -7334,7 +7105,6 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
- nie masz zainstalowanego DirectX 9.0c z Czerwca 2007</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="0"/>
<source>Failed to load overlay library. This means either that:
- the library (mumble_ol.dll) wasn&apos;t found in the directory you ran Mumble from
- you&apos;re on an OS earlier than WinXP SP2</source>
@@ -7343,7 +7113,6 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
- jesteś na systemie starszym niż WinXP SP2</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="0"/>
<source>Failed to initialize overlay memory. This usually means that the shared memory is locked by the OS, and you need to reboot to release it.</source>
<translation type="obsolete">Nie udało się zainicjalizować pamięci nakładki. Ten błąd zazwyczaj oznacza, że pamięć współdzielona jest zablokowana przez system i musisz uruchomić komputer ponownie, aby ją zwolnić.</translation>
</message>
@@ -7351,267 +7120,263 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>OverlayConfig</name>
<message>
- <location filename="Overlay.ui" line="20"/>
+ <location filename="Overlay.ui"/>
<source>Options</source>
<translation>Opcje</translation>
</message>
<message>
- <location filename="Overlay.ui" line="78"/>
+ <location/>
<source>Position</source>
<translation>Pozycja nakładki na ekranie</translation>
</message>
<message>
- <location filename="Overlay.ui" line="171"/>
+ <location/>
<source>Font</source>
<translation>Czcionka</translation>
</message>
<message>
- <location filename="Overlay.ui" line="32"/>
+ <location/>
<source>Enable Overlay</source>
<translation>Włącz nakładkę</translation>
</message>
<message>
- <location filename="Overlay.ui" line="26"/>
+ <location/>
<source>Enable overlay.</source>
<translation>Włącza nakładkę.</translation>
</message>
<message>
- <location filename="Overlay.ui" line="0"/>
<source>This sets whether the overlay is enabled or not. This setting is only checked with D3D9 applications are started, so make sure Mumble is running and this option is on before you start the application.&lt;br /&gt;Please note that if you start the application after starting Mumble, or if you disable the overlay while running, there is no safe way to restart the overlay without also restarting the application.</source>
<translation type="obsolete">To ustawia czy nakładka jest aktywna, czy nie. Te ustawienia są sprawdzane tylko podczas uruchamiania aplikacji obsługujących D3D9, więc upewnij się czy nakładka jest włączona zanim uruchomisz aplikację.&lt;br /&gt;Należy pamiętać że jeżeli uruchomisz aplikację przed włączeniem Mumble, lub wyłączysz nakładkę podczas jej działania, to nie ma bezpiecznej metody by zrestartować nakładkę bez ponownego uruchomienia aplikacji.</translation>
</message>
<message>
- <location filename="Overlay.ui" line="39"/>
+ <location/>
<source>Who to show on the overlay</source>
<translation>Kogo wyświetlać w nakładce</translation>
</message>
<message>
- <location filename="Overlay.ui" line="42"/>
+ <location/>
<source>&lt;b&gt;This sets who to show in the in-game overlay.&lt;/b&gt;&lt;br /&gt;If many people are connected to the same channel, the overlay list might be very long. Use this to shorten it.&lt;br /&gt;&lt;i&gt;No one&lt;/i&gt; - Don&apos;t show anyone (but leave overlay running).&lt;br /&gt;&lt;i&gt;Only talking&lt;/i&gt; - Only show talking people.&lt;br /&gt;&lt;i&gt;Everyone&lt;/i&gt; - Show everyone.</source>
<translation>&lt;b&gt;Ustawia kogo widać na nakładce podczas gry.&lt;/b&gt;&lt;br /&gt;Jeśli wiele osób jest podłączonych do tego samego kanału nakładka może stać się bardzo długa. Użyj tej opcji, aby ją skrócić &lt;br /&gt;&lt;i&gt;Nie wyświetlaj nikogo&lt;/i&gt; - Nie wyświetla nikogo (ale pozostawia nakładkę włączoną).&lt;br /&gt;&lt;i&gt;Wyświetlaj tylko mówiących&lt;/i&gt; - Wyświetla tylko mówiących użytkowników.&lt;br /&gt;&lt;i&gt;Wyświetlaj wszystkich&lt;/i&gt; - Wyświetla wszystkich.</translation>
</message>
<message>
- <location filename="Overlay.ui" line="55"/>
+ <location/>
<source>Always Show Self</source>
<translation>Zawsze wyświetlaj móją nazwę na nakładce</translation>
</message>
<message>
- <location filename="Overlay.ui" line="49"/>
+ <location/>
<source>Always show yourself on overlay.</source>
<translation>Twoja nazwa użytkownika będzie zawsze wyświetlana na nakładce.</translation>
</message>
<message>
- <location filename="Overlay.ui" line="52"/>
+ <location/>
<source>This sets whether to always show yourself or not. This setting is useful if you aren&apos;t showing everyone in the overlay, as then you would only see your own status if you were talking, which wouldn&apos;t let you see that you were deafened or muted.</source>
<translation>Ustawia czy zobaczysz swoją nazwę użytkownika na nakładce czy też nie.</translation>
</message>
<message>
- <location filename="Overlay.ui" line="68"/>
<source>Show User Textures</source>
- <translation>Wyświetlaj awatary użytkowników</translation>
+ <translation type="obsolete">Wyświetlaj awatary użytkowników</translation>
</message>
<message>
- <location filename="Overlay.ui" line="62"/>
<source>Show User custom textures instead of text on the overlay.</source>
- <translation>Wyświetla awatary użytkowników zamiast ich nazw.</translation>
+ <translation type="obsolete">Wyświetla awatary użytkowników zamiast ich nazw.</translation>
</message>
<message>
- <location filename="Overlay.ui" line="65"/>
<source>This sets whether to download and use custom textures for registered users. If disabled, the regular outline text will be used instead.</source>
- <translation>Określa czy program ma pobierać awatary zarejestrowanych użytkowników. Jeśli wyłączone, w zamian zostanie użyty zwykły tekst.</translation>
+ <translation type="obsolete">Określa czy program ma pobierać awatary zarejestrowanych użytkowników. Jeśli wyłączone, w zamian zostanie użyty zwykły tekst.</translation>
</message>
<message>
- <location filename="Overlay.ui" line="119"/>
+ <location/>
<source>Grow Left</source>
<translation>Do lewej</translation>
</message>
<message>
- <location filename="Overlay.ui" line="113"/>
+ <location/>
<source>Let overlay grow to the left</source>
<translation>Do lewej</translation>
</message>
<message>
- <location filename="Overlay.ui" line="116"/>
+ <location/>
<source>The overlay tries to stay as small as possible and at the position you have selected. This allows the overlay to grow to the left if needed.</source>
<translation>Nakładka stara się pozostać najmniejszą jak tylko może w pozycji, którą ustawiłeś. Pozwala nakładce rosnąć w lewo jeśli trzeba.</translation>
</message>
<message>
- <location filename="Overlay.ui" line="132"/>
+ <location/>
<source>Grow Right</source>
<translation>Do prawej</translation>
</message>
<message>
- <location filename="Overlay.ui" line="90"/>
+ <location/>
<source>Grow Up</source>
<translation>Do góry</translation>
</message>
<message>
- <location filename="Overlay.ui" line="84"/>
+ <location/>
<source>Let overlay grow upwards</source>
<translation>Pozwala nakładce rosnąć w górę</translation>
</message>
<message>
- <location filename="Overlay.ui" line="145"/>
+ <location/>
<source>Grow Down</source>
<translation>Do dołu</translation>
</message>
<message>
- <location filename="Overlay.ui" line="139"/>
+ <location/>
<source>Let overlay grow downwards</source>
<translation>Pozwala nakładce rosnąć do dołu</translation>
</message>
<message>
- <location filename="Overlay.ui" line="152"/>
+ <location/>
<source>X-Position of Overlay</source>
<translation>Pozycja X Nakładki</translation>
</message>
<message>
- <location filename="Overlay.ui" line="155"/>
+ <location/>
<source>This sets the relative X position of the overlay.</source>
<translation>Ustawia pozycję X nakładki.</translation>
</message>
<message>
- <location filename="Overlay.ui" line="97"/>
+ <location/>
<source>Y-Position of Overlay</source>
<translation>Pozycja Y Nakładki</translation>
</message>
<message>
- <location filename="Overlay.ui" line="29"/>
+ <location/>
<source>This sets whether the overlay is enabled or not. This setting is only checked when applications are started, so make sure Mumble is running and this option is on before you start the application.&lt;br /&gt;Please note that if you start Mumble after starting the application, or if you disable the overlay while the application is running, there is no safe way to restart the overlay without also restarting the application.</source>
<translation>Określa czy nakładka jest włączona czy nie. Zaznaczaj ją zaraz po tym jak uruchomisz aplikację, tak więc upewnij się czy Mumble jest włączone i czy opcja ta jest zaznaczona zanim uruchomisz grę.&lt;br /&gt;Zwróć uwagę na to, że jeśli uruchomisz Mumble po tym jak uruchomisz grę albo jeśli wyłączysz nakładkę podczas gry, nie istnieje żaden sposób, aby zrestartować nakładkę bez ponownego uruchomienia aplikacji.</translation>
</message>
<message>
- <location filename="Overlay.ui" line="100"/>
+ <location/>
<source>This sets the relative Y position of the overlay.</source>
<translation>Ustawia pozycję Y nakładki.</translation>
</message>
<message>
- <location filename="Overlay.ui" line="177"/>
+ <location/>
<source>Current Font</source>
<translation>Obecna czcionka</translation>
</message>
<message>
- <location filename="Overlay.ui" line="191"/>
+ <location/>
<source>Set Font</source>
<translation>Czcionka</translation>
</message>
<message>
- <location filename="Overlay.ui" line="205"/>
+ <location/>
<source>Maximum height of names.</source>
<translation>Maksymalna wysokość nazw użytkownika.</translation>
</message>
<message>
- <location filename="Overlay.ui" line="208"/>
+ <location/>
<source>This sets the maximum height of names shown, relative to the screen height. If your active 3D window is 800 pixels tall and this is set to 5%, each name will be 40 pixels tall. Note that the names will not be taller than 60 pixels no matter what you set here.</source>
<translation>Maksymalna wysokość nazwy użytkownika na nakładce.</translation>
</message>
<message>
- <location filename="Overlay.ui" line="198"/>
+ <location/>
<source>Maximum height</source>
<translation>Maksymalna wysokość</translation>
</message>
<message>
- <location filename="Overlay.ui" line="322"/>
+ <location/>
<source>Change</source>
<translation>Zmień</translation>
</message>
<message>
- <location filename="Overlay.ui" line="0"/>
<source>Color for players</source>
<translation type="obsolete">Kolor użytkownika nieaktywnego</translation>
</message>
<message>
- <location filename="Overlay.ui" line="0"/>
<source>Color for talking players</source>
<translation type="obsolete">Kolor użytkownika aktywnego</translation>
</message>
<message>
- <location filename="Overlay.ui" line="0"/>
<source>Color for alt-talking players</source>
<translation type="obsolete">Alternatywny kolor użytkownika aktywnego</translation>
</message>
<message>
- <location filename="Overlay.ui" line="287"/>
+ <location/>
<source>Color for Channels</source>
<translation>Kolor kanałów</translation>
</message>
<message>
- <location filename="Overlay.ui" line="308"/>
+ <location/>
<source>Color for active Channels</source>
<translation>Kolor aktywnych kanałów</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="143"/>
+ <location filename="Overlay.cpp" line="-505"/>
<source>Overlay</source>
<translation>Nakładka</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="48"/>
+ <location line="-89"/>
<source>Show no one</source>
<translation>Nie wyświetlaj nikogo</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="49"/>
+ <location line="+1"/>
<source>Show only talking</source>
<translation>Wyświetlaj tylko mówiących</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="50"/>
+ <location line="+1"/>
<source>Show everyone</source>
<translation>Wyświetlaj wszystkich</translation>
</message>
<message>
- <location filename="Overlay.ui" line="231"/>
+ <location filename="Overlay.ui"/>
+ <location filename="Overlay.cpp" line="+67"/>
<source>Color for users</source>
<translation>Kolor dla użytkowników</translation>
</message>
<message>
- <location filename="Overlay.ui" line="245"/>
+ <location/>
+ <location filename="Overlay.cpp" line="+4"/>
<source>Color for talking users</source>
<translation>Kolor dla mówiących użytkowników</translation>
</message>
<message>
- <location filename="Overlay.ui" line="266"/>
+ <location/>
+ <location filename="Overlay.cpp" line="+4"/>
<source>Color for whispering users</source>
<translation>Kolor dla szepczących użytkowników</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="135"/>
+ <location filename="Overlay.cpp" line="+4"/>
<source>Color for channels</source>
<translation>Kolor dla kanałów</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="139"/>
+ <location line="+4"/>
<source>Color for active channels</source>
<translation>Kolor dla aktywnych kanałów</translation>
</message>
<message>
- <location filename="Overlay.ui" line="14"/>
+ <location filename="Overlay.ui"/>
<source>Form</source>
<translation>Formularz</translation>
</message>
<message>
- <location filename="Overlay.ui" line="87"/>
+ <location/>
<source>The overlay tries to stay as small as possible and at the position you have selected. This allows the overlay to grow upwards if needed.</source>
<translation>Nakładka stara się pozostać najmniejszą jak tylko może w pozycji, którą ustawiłeś. Pozwala nakładce rosnąć w górę jeśli trzeba.</translation>
</message>
<message>
- <location filename="Overlay.ui" line="126"/>
+ <location/>
<source>Let overlay grow to the right</source>
<translation>Pozwala nakładce rosnąć do prawej</translation>
</message>
<message>
- <location filename="Overlay.ui" line="129"/>
+ <location/>
<source>The overlay tries to stay as small as possible and at the position you have selected. This allows the overlay to grow to the right if needed.</source>
<translation>Nakładka stara się pozostać najmniejszą jak tylko może w pozycji, którą ustawiłeś. Pozwala nakładce rosnąć w prawo jeśli trzeba.</translation>
</message>
<message>
- <location filename="Overlay.ui" line="142"/>
+ <location/>
<source>The overlay tries to stay as small as possible and at the position you have selected. This allows the overlay to grow downwards if needed.</source>
<translation>Nakładka stara się pozostać najmniejszą jak tylko może w pozycji, którą ustawiłeś. Pozwala nakładce rosnąć w dół jeśli trzeba.</translation>
</message>
<message>
- <location filename="Overlay.ui" line="224"/>
+ <location/>
<source>TextLabel</source>
<translation>Tekst</translation>
</message>
@@ -7619,12 +7384,11 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>OverlayPrivateWin</name>
<message>
- <location filename="Overlay.ui" line="0"/>
<source>Mumble</source>
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location filename="Overlay_win.cpp" line="64"/>
+ <location filename="Overlay_win.cpp" line="+62"/>
<source>Failed to load overlay library. This means either that:
- the library (mumble_ol.dll) wasn&apos;t found in the directory you ran Mumble from
- you&apos;re on an OS earlier than WinXP SP2</source>
@@ -7636,37 +7400,30 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>PlayerModel</name>
<message>
- <location filename="Overlay_win.cpp" line="0"/>
<source>This is a player connected to the server. The icon to the left of the player indicates whether or not they are talking:&lt;br /&gt;&lt;img src=&quot;skin:talking_on.png&quot; /&gt; Talking&lt;br /&gt;&lt;img src=&quot;skin:talking_off.png&quot; /&gt; Not talking</source>
<translation type="obsolete">To jest użytkownik połączony do serwera. Ikona po lewej stronie wskazuje czy użytkownik mówi czy milczy.&lt;br /&gt;&lt;img src=&quot;skin:talking_on.png&quot; /&gt;Mówi&lt;br /&gt;&lt;img src=&quot;skin:talking_off.png&quot; /&gt;Milczy</translation>
</message>
<message>
- <location filename="Overlay_win.cpp" line="0"/>
<source>This is a channel on the server. Only players in the same channel can hear each other.</source>
<translation type="obsolete">To jest kanał na serwerze. Tylko użytkownicy znajdujący się na tym samym kanale mogą słyszeć się nawzajem.</translation>
</message>
<message>
- <location filename="Overlay_win.cpp" line="0"/>
<source>This shows the flags the player has on the server, if any:&lt;br /&gt;&lt;img src=&quot;skin:authenticated.png&quot; /&gt;Authenticated user&lt;br /&gt;&lt;img src=&quot;skin:muted_self.png&quot; /&gt;Muted (by self)&lt;br /&gt;&lt;img src=&quot;skin:muted_server.png&quot; /&gt;Muted (by admin)&lt;br /&gt;&lt;img src=&quot;skin:deafened_self.png&quot; /&gt;Deafened (by self)&lt;br /&gt;&lt;img src=&quot;skin:deafened_server.png&quot; /&gt;Deafened (by admin)&lt;br /&gt;A player muted by himself is probably just away, talking on the phone or something like that.&lt;br /&gt;A player muted by an admin is probably also just away, and the noise the player is making was annoying enough that an admin muted him.</source>
<translation type="obsolete">To są atrybuty jakie użytkownik posiada na serwerze:&lt;br /&gt;&lt;img src=&quot;skin:authenticated.png&quot; /&gt;Uwierzytelniony użytkownik&lt;br /&gt;&lt;img src=&quot;skin:muted_self.png&quot; /&gt;Wyciszony mikrofon (przez siebie)&lt;br /&gt;&lt;img src=&quot;skin:muted_server.png&quot; /&gt;Wyciszony mikrofon (przez administratora)&lt;br /&gt;&lt;img src=&quot;skin:deafened_self.png&quot; /&gt;Wyciszone słuchawki (przez użytkownika)&lt;br /&gt;&lt;img src=&quot;skin:deafened_server.png&quot; /&gt;Wyciszone słuchawki (przez administratora)&lt;br /&gt;Użytkownik który ma wyciszony mikrofon i/lub słuchawki przez siebie prawdopodobnie odszedł od komputera lub prowadzi inna rozmowę (np. przez telefon).&lt;br /&gt;Użytkownik, który ma wyciszony mikrofon i/lub słuchawki przez administratora prawdopodobnie wydawał dziwne dźwięki i denerwował innych przez to został wyciszony.</translation>
</message>
<message>
- <location filename="Overlay_win.cpp" line="0"/>
<source>Name</source>
<translation type="obsolete">Kanał(y)</translation>
</message>
<message>
- <location filename="Overlay_win.cpp" line="0"/>
<source>Flags</source>
<translation type="obsolete">Atrybut(y)</translation>
</message>
<message>
- <location filename="Overlay_win.cpp" line="0"/>
<source>Mumble</source>
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location filename="Overlay_win.cpp" line="0"/>
<source>Are you sure you want to drag this channel?</source>
<translation type="obsolete">Czy jesteś pewien, że chcesz przeciągnąć ten kanał?</translation>
</message>
@@ -7674,107 +7431,106 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>PluginConfig</name>
<message>
- <location filename="Plugins.ui" line="20"/>
+ <location filename="Plugins.ui"/>
<source>Options</source>
<translation>Opcje</translation>
</message>
<message>
- <location filename="Plugins.ui" line="42"/>
+ <location/>
+ <location filename="Plugins.cpp" line="+72"/>
<source>Plugins</source>
<translation>Wtyczki</translation>
</message>
<message>
- <location filename="Plugins.ui" line="32"/>
+ <location/>
<source>Link to Game and Transmit Position</source>
<translation>Połącz z grami i nadawaj pozycję graczy</translation>
</message>
<message>
- <location filename="Plugins.ui" line="26"/>
+ <location/>
<source>Enable plugins and transmit positional information</source>
<translation>Włącza wtyczki oraz nadaje informacje o pozycjach graczy względem siebie podczas gry</translation>
</message>
<message>
- <location filename="Plugins.ui" line="0"/>
<source>This enables plugins for supported games to fetch your in-game position and transmit that with each voice packet. This enables other players to hear your voice in-game from the direction your character is in relation to their own.</source>
<translation type="obsolete"> Uaktywnia to wtyczki, które przetwarzają dźwięk w zależności od położenia użytkownika na mapie, dzięki czemu możesz usłyszeć użytkowników ze względu na położenie na mapie. Ta funckja jest dostępna tylko do wybranych gier.</translation>
</message>
<message>
- <location filename="Plugins.ui" line="82"/>
+ <location/>
<source>&amp;Reload plugins</source>
<translation>&amp;Przeładuj wtyczki</translation>
</message>
<message>
- <location filename="Plugins.ui" line="76"/>
+ <location/>
<source>Reloads all plugins</source>
<translation>Przeładowuje wszystkie wtyczki</translation>
</message>
<message>
- <location filename="Plugins.ui" line="29"/>
+ <location/>
<source>This allows plugins for supported games to fetch your in-game position and transmit it with each voice packet. This enables other users to hear your voice in-game from the direction your character is in relation to their own.</source>
<translation>Zezwala wtyczkom dla wspieranych gier pobierać twoją pozycję oraz wysyłać ją razem z pakietami dźwięku. Inni użytkownicy będą cię słyszeć z kierunku, w którym znajduje się twoja postać w grze (relatywnie do pozycji ich postaci).</translation>
</message>
<message>
- <location filename="Plugins.ui" line="79"/>
+ <location/>
<source>This rescans and reloads plugins. Use this if you just added or changed a plugin to the plugins directory.</source>
<translation>Ponownie skanuje i przeładowuje wtyczki. Użyj tej opcji jeśli dodałeś lub zmieniłeś wtyczkę w katalogu &lt;i&gt;plugins&lt;/i&gt;.</translation>
</message>
<message>
- <location filename="Plugins.ui" line="108"/>
+ <location/>
<source>&amp;About</source>
<translation>&amp;O wtyczce</translation>
</message>
<message>
- <location filename="Plugins.ui" line="102"/>
+ <location/>
<source>Information about plugin</source>
<translation>Informacje o wtyczce</translation>
</message>
<message>
- <location filename="Plugins.ui" line="105"/>
+ <location/>
<source>This shows a small information message about the plugin.</source>
<translation>Wyświetla krótką informację na temat wtyczki.</translation>
</message>
<message>
- <location filename="Plugins.ui" line="121"/>
+ <location/>
<source>&amp;Configure</source>
<translation>&amp;Konfiguruj</translation>
</message>
<message>
- <location filename="Plugins.ui" line="115"/>
+ <location/>
<source>Show configuration page of plugin</source>
<translation>Otwiera okno konfiguracji</translation>
</message>
<message>
- <location filename="Plugins.ui" line="118"/>
+ <location/>
<source>This shows the configuration page of the plugin, if any.</source>
<translation>Wyświetla okno z konfiguracją wtyczki, jeżeli wtyczka posiadą konfigurację.</translation>
</message>
<message>
- <location filename="Plugins.ui" line="0"/>
<source>Mumble</source>
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location filename="Plugins.cpp" line="110"/>
+ <location filename="Plugins.cpp" line="+38"/>
<source>Plugin has no configure function.</source>
<translation>Wtyczka nie posiada konfiguracji.</translation>
</message>
<message>
- <location filename="Plugins.cpp" line="122"/>
+ <location line="+12"/>
<source>Plugin has no about function.</source>
<translation>Brak informacji o wtyczce.</translation>
</message>
<message>
- <location filename="Plugins.ui" line="14"/>
+ <location filename="Plugins.ui"/>
<source>Form</source>
<translation>Formularz</translation>
</message>
<message>
- <location filename="Plugins.ui" line="61"/>
+ <location/>
<source>Name</source>
<translation>Nazwa</translation>
</message>
<message>
- <location filename="Plugins.ui" line="66"/>
+ <location/>
<source>Enabled</source>
<translation>Włączona</translation>
</message>
@@ -7782,22 +7538,23 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>Plugins</name>
<message>
- <location filename="Plugins.cpp" line="532"/>
+ <location filename="Plugins.cpp" line="+417"/>
+ <location line="+6"/>
<source>Downloaded new or updated plugin to %1.</source>
<translation>Pobrano nowy lub uaktualniony plugin do %1.</translation>
</message>
<message>
- <location filename="Plugins.cpp" line="534"/>
+ <location line="+2"/>
<source>Failed to install new plugin to %1.</source>
<translation>Nie udało się zainstalować nowego pluginu do %1.</translation>
</message>
<message>
- <location filename="Plugins.cpp" line="306"/>
+ <location line="-228"/>
<source>%1 lost link.</source>
<translation>%1 utracił połączenie.</translation>
</message>
<message>
- <location filename="Plugins.cpp" line="353"/>
+ <location line="+47"/>
<source>%1 linked.</source>
<translation>%1 połączony.</translation>
</message>
@@ -7805,7 +7562,7 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>PortAudioSystem</name>
<message>
- <location filename="PAAudio.cpp" line="275"/>
+ <location filename="PAAudio.cpp" line="+275"/>
<source>Default Device</source>
<translation>Domyślne urządzenie</translation>
</message>
@@ -7813,12 +7570,12 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>PulseAudioSystem</name>
<message>
- <location filename="PulseAudio.cpp" line="549"/>
+ <location filename="PulseAudio.cpp" line="+549"/>
<source>Default Input</source>
<translation>Domyślne wejście</translation>
</message>
<message>
- <location filename="PulseAudio.cpp" line="550"/>
+ <location line="+1"/>
<source>Default Output</source>
<translation>Domyślne wyjście</translation>
</message>
@@ -7826,87 +7583,86 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>RichTextEditor</name>
<message>
- <location filename="RichTextEditor.cpp" line="241"/>
+ <location filename="RichTextEditor.cpp" line="+241"/>
<source>Failed to load image</source>
<translation>Nie udało się załadować obrazka</translation>
</message>
<message>
- <location filename="RichTextEditor.cpp" line="241"/>
+ <location line="+0"/>
<source>Image file too large to embed in document. Please use images smaller than %1 kB.</source>
<translation>Obrazek jest zbyt duży, aby umieścić go w dokumencie. Prosimy używać obrazków mniejszych niż %1 kB.</translation>
</message>
<message>
- <location filename="RichTextEditor.cpp" line="322"/>
+ <location line="+81"/>
<source>Message is too long.</source>
<translation>Wiadomość jest za długa.</translation>
</message>
<message>
- <location filename="RichTextEditor.cpp" line="0"/>
<source>TabWidget</source>
<translation type="obsolete">TabWidget</translation>
</message>
<message>
- <location filename="RichTextEditor.ui" line="24"/>
+ <location filename="RichTextEditor.ui"/>
<source>Display</source>
<translation>Podgląd</translation>
</message>
<message>
- <location filename="RichTextEditor.ui" line="41"/>
+ <location/>
<source>Source Text</source>
<translation>Tekst źródłowy</translation>
</message>
<message>
- <location filename="RichTextEditor.ui" line="58"/>
+ <location/>
<source>&amp;Bold</source>
<translation>&amp;Pogrubienie</translation>
</message>
<message>
- <location filename="RichTextEditor.ui" line="61"/>
+ <location/>
<source>Ctrl+B</source>
<translation>Ctrl+B</translation>
</message>
<message>
- <location filename="RichTextEditor.ui" line="73"/>
+ <location/>
<source>&amp;Italic</source>
<translation>&amp;Kursywa</translation>
</message>
<message>
- <location filename="RichTextEditor.ui" line="76"/>
+ <location/>
<source>Italic</source>
<translation>Kursywa</translation>
</message>
<message>
- <location filename="RichTextEditor.ui" line="79"/>
+ <location/>
<source>Ctrl+I</source>
<translation>Ctrl+I</translation>
</message>
<message>
- <location filename="RichTextEditor.ui" line="91"/>
+ <location/>
<source>Underline</source>
<translation>Podkreślenie</translation>
</message>
<message>
- <location filename="RichTextEditor.ui" line="94"/>
+ <location/>
<source>Ctrl+U</source>
<translation>Ctrl+U</translation>
</message>
<message>
- <location filename="RichTextEditor.ui" line="99"/>
+ <location/>
<source>Color</source>
<translation>Kolor</translation>
</message>
<message>
- <location filename="RichTextEditor.ui" line="108"/>
+ <location/>
<source>Insert Link</source>
<translation>Wstaw link</translation>
</message>
<message>
- <location filename="RichTextEditor.ui" line="111"/>
+ <location/>
<source>Ctrl+L</source>
<translation>Ctrl+L</translation>
</message>
<message>
- <location filename="RichTextEditor.ui" line="120"/>
+ <location/>
<source>Insert Image</source>
<translation>Wstaw obrazek</translation>
</message>
@@ -7914,17 +7670,17 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>RichTextEditorLink</name>
<message>
- <location filename="RichTextEditorLink.ui" line="14"/>
+ <location filename="RichTextEditorLink.ui"/>
<source>Add Link</source>
<translation>Dodaj link</translation>
</message>
<message>
- <location filename="RichTextEditorLink.ui" line="20"/>
+ <location/>
<source>URL</source>
<translation>URL</translation>
</message>
<message>
- <location filename="RichTextEditorLink.ui" line="33"/>
+ <location/>
<source>Text</source>
<translation>Tekst</translation>
</message>
@@ -7932,27 +7688,27 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>ServerHandler</name>
<message>
- <location filename="ServerHandler.cpp" line="394"/>
+ <location filename="ServerHandler.cpp" line="+394"/>
<source>UDP packets cannot be sent to or received from the server. Switching to TCP mode.</source>
<translation>Pakiety UDP nie mogły zostać wysłane lub odebrane z serwera. Nastąpiła zmiana na tryb TCP.</translation>
</message>
<message>
- <location filename="ServerHandler.cpp" line="396"/>
+ <location line="+2"/>
<source>UDP packets cannot be sent to the server. Switching to TCP mode.</source>
<translation>Pakiety UDP nie mogły zostać wysłane do serwera. Nastąpiła zmiana na tryb TCP.</translation>
</message>
<message>
- <location filename="ServerHandler.cpp" line="398"/>
+ <location line="+2"/>
<source>UDP packets cannot be received from the server. Switching to TCP mode.</source>
<translation>Pakiety UDP nie mogły zostać odebrane z serwera. Nastąpiła zmiana na tryb TCP.</translation>
</message>
<message>
- <location filename="ServerHandler.cpp" line="405"/>
+ <location line="+7"/>
<source>UDP packets can be sent to and received from the server. Switching back to UDP mode.</source>
<translation>Pakiety UDP mogą zostać wysłane i odebrane z serwera. Przywrócono tryb UDP.</translation>
</message>
<message>
- <location filename="ServerHandler.cpp" line="434"/>
+ <location line="+29"/>
<source>Connection timed out</source>
<translation>Przekroczono limit czasu połączenia</translation>
</message>
@@ -7960,47 +7716,47 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>ServerView</name>
<message>
- <location filename="ConnectDialog.cpp" line="72"/>
+ <location filename="ConnectDialog.cpp" line="-662"/>
<source>Favorite</source>
<translation>Ulubione</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="78"/>
+ <location line="+6"/>
<source>LAN</source>
<translation>LAN</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="86"/>
+ <location line="+8"/>
<source>Public Internet</source>
<translation>Publiczne</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="92"/>
+ <location line="+6"/>
<source>Africa</source>
<translation>Afryka</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="93"/>
+ <location line="+1"/>
<source>Asia</source>
<translation>Azja</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="94"/>
+ <location line="+1"/>
<source>North America</source>
<translation>Ameryka Północna</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="95"/>
+ <location line="+1"/>
<source>South America</source>
<translation>Ameryka Południowa</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="96"/>
+ <location line="+1"/>
<source>Europe</source>
<translation>Europa</translation>
</message>
<message>
- <location filename="ConnectDialog.cpp" line="97"/>
+ <location line="+1"/>
<source>Oceania</source>
<translation>Oceania</translation>
</message>
@@ -8008,7 +7764,7 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>ShortcutActionWidget</name>
<message>
- <location filename="GlobalShortcut.cpp" line="214"/>
+ <location filename="GlobalShortcut.cpp" line="-484"/>
<source>Unassigned</source>
<translation>Nieprzypisana</translation>
</message>
@@ -8016,22 +7772,22 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>ShortcutDelegate</name>
<message>
- <location filename="GlobalShortcut.cpp" line="574"/>
+ <location line="+360"/>
<source>On</source>
<translation>Włącz</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="576"/>
+ <location line="+2"/>
<source>Off</source>
<translation>Wyłącz</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="578"/>
+ <location line="+2"/>
<source>Toggle</source>
<translation>Przełączanie</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="584"/>
+ <location line="+6"/>
<source>Unassigned</source>
<translation>Nieprzypisana</translation>
</message>
@@ -8039,7 +7795,7 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>ShortcutKeyWidget</name>
<message>
- <location filename="GlobalShortcut.cpp" line="150"/>
+ <location line="-434"/>
<source>Press Shortcut</source>
<translation>Naciśnij klawisz</translation>
</message>
@@ -8047,22 +7803,22 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>ShortcutTargetDialog</name>
<message>
- <location filename="GlobalShortcut.cpp" line="353"/>
+ <location line="+203"/>
<source>Root</source>
<translation>Źródło</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="358"/>
+ <location line="+5"/>
<source>Parent</source>
<translation>Macierzysty</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="363"/>
+ <location line="+5"/>
<source>Current</source>
<translation>Obecny</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="368"/>
+ <location line="+5"/>
<source>Subchannel #%1</source>
<translation>Pod-kanał #%1</translation>
</message>
@@ -8070,42 +7826,42 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>ShortcutTargetWidget</name>
<message>
- <location filename="GlobalShortcut.cpp" line="455"/>
+ <location line="+87"/>
<source>...</source>
<translation>...</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="493"/>
+ <location line="+38"/>
<source>, </source>
<translation>,</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="499"/>
+ <location line="+6"/>
<source>Root</source>
<translation>Źródło</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="501"/>
+ <location line="+2"/>
<source>Parent</source>
<translation>Macierzysty</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="503"/>
+ <location line="+2"/>
<source>Current</source>
<translation>Obecny</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="505"/>
+ <location line="+2"/>
<source>Subchannel #%1</source>
<translation>Pod-kanał #%1</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="512"/>
+ <location line="+7"/>
<source>Invalid</source>
<translation>Nieprawidłowy</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="515"/>
+ <location line="+3"/>
<source>&lt;Empty&gt;</source>
<translation>&lt;Pusty&gt;</translation>
</message>
@@ -8113,17 +7869,17 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>ShortcutToggleWidget</name>
<message>
- <location filename="GlobalShortcut.cpp" line="254"/>
+ <location line="-261"/>
<source>Off</source>
<translation>Wyłącz</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="258"/>
+ <location line="+4"/>
<source>Toggle</source>
<translation>Przełączenie</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="262"/>
+ <location line="+4"/>
<source>On</source>
<translation>Włącz</translation>
</message>
@@ -8131,37 +7887,33 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>TextMessage</name>
<message>
- <location filename="GlobalShortcut.cpp" line="0"/>
<source>Message to send</source>
<translation type="obsolete">Wiadomość do wysłania</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="0"/>
<source>Preview</source>
<translation type="obsolete">Podgląd</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="0"/>
<source>Send raw message</source>
<translation type="obsolete">Wyślij nieprzetworzoną wiadomość</translation>
</message>
<message>
- <location filename="GlobalShortcut.cpp" line="0"/>
<source>Disables html formating</source>
<translation type="obsolete">Wyłącza formatowanie HTML</translation>
</message>
<message>
- <location filename="TextMessage.h" line="46"/>
+ <location filename="TextMessage.h" line="+46"/>
<source>Enter text</source>
<translation>Wpisz tekst</translation>
</message>
<message>
- <location filename="TextMessage.ui" line="24"/>
+ <location filename="TextMessage.ui"/>
<source>If checked the message is recursively sent to all subchannels</source>
<translation>Jeśli zaznaczone wiadomość jest wysyłana do wszystkich pod-kanałów</translation>
</message>
<message>
- <location filename="TextMessage.ui" line="27"/>
+ <location/>
<source>Send recursively to subchannels</source>
<translation>Wyślij do wszystkich pod-kanałów</translation>
</message>
@@ -8169,22 +7921,22 @@ Zapobiega pobieraniu obrazów przez klienta, które są umieszczane w dzienniku
<context>
<name>Tokens</name>
<message>
- <location filename="Tokens.cpp" line="69"/>
+ <location filename="Tokens.cpp" line="+69"/>
<source>Empty Token</source>
<translation>Puste hasło</translation>
</message>
<message>
- <location filename="Tokens.ui" line="14"/>
+ <location filename="Tokens.ui"/>
<source>Mumble - Access Tokens</source>
<translation>Mumble - Hasła dostępu</translation>
</message>
<message>
- <location filename="Tokens.ui" line="20"/>
+ <location/>
<source>List of access tokens on current server</source>
<translation>Lista haseł dostępu na obecnym serwerze</translation>
</message>
<message>
- <location filename="Tokens.ui" line="23"/>
+ <location/>
<source>&lt;b&gt;This is an editable list of access tokens on the connected server.&lt;/b&gt;
&lt;br /&gt;
An access token is a text string, which can be used as a password for very simple access management on channels. Mumble will remember the tokens you&apos;ve used and resend them to the server next time you reconnect, so you don&apos;t have to enter these every time.
@@ -8192,22 +7944,22 @@ An access token is a text string, which can be used as a password for very simpl
<translation>&lt;b&gt;To jest edytowalna lista haseł użytych na serwerze.&lt;/b&gt;&lt;br /&gt;Hasło dostępu to tekst, który może być użyty jako hasło służące do bardzo łatwego zarządzania dostępem do kanałów. Mumble będzie pamiętać hasła, które użyłeś i prześle je na serwer ponownie podczas łączenia żeby nie trzeba było każdorazowego wpisywać haseł.</translation>
</message>
<message>
- <location filename="Tokens.ui" line="47"/>
+ <location/>
<source>Add a token</source>
<translation>Dodaj hasło</translation>
</message>
<message>
- <location filename="Tokens.ui" line="50"/>
+ <location/>
<source>&amp;Add</source>
<translation>&amp;Dodaj</translation>
</message>
<message>
- <location filename="Tokens.ui" line="57"/>
+ <location/>
<source>Remove a token</source>
<translation>Usuń hasło</translation>
</message>
<message>
- <location filename="Tokens.ui" line="60"/>
+ <location/>
<source>&amp;Remove</source>
<translation>&amp;Usuń</translation>
</message>
@@ -8215,17 +7967,18 @@ An access token is a text string, which can be used as a password for very simpl
<context>
<name>UserEdit</name>
<message>
- <location filename="UserEdit.ui" line="20"/>
+ <location filename="UserEdit.ui"/>
<source>Registered Users</source>
<translation>Zarejestrowani użytkownicy</translation>
</message>
<message>
- <location filename="UserEdit.ui" line="26"/>
+ <location/>
+ <location filename="UserEdit.cpp" line="+96"/>
<source>Remove</source>
<translation>Usuń</translation>
</message>
<message>
- <location filename="UserEdit.cpp" line="91"/>
+ <location filename="UserEdit.cpp" line="-5"/>
<source>Rename</source>
<translation>Zmień nazwę</translation>
</message>
@@ -8233,184 +7986,184 @@ An access token is a text string, which can be used as a password for very simpl
<context>
<name>UserInformation</name>
<message>
- <location filename="UserInformation.ui" line="14"/>
+ <location filename="UserInformation.ui"/>
<source>User Information</source>
<translation>Informacje o użytkowniku</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="20"/>
+ <location/>
<source>Connection Information</source>
<translation>Informacje o połączeniu</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="26"/>
+ <location/>
<source>Version</source>
<translation>Wersja</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="52"/>
+ <location/>
<source>OS</source>
<translation>System</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="78"/>
+ <location/>
<source>Certificate</source>
<translation>Certyfikat</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="104"/>
+ <location/>
<source>IP Address</source>
<translation>Adres IP</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="127"/>
+ <location/>
<source>CELT Versions</source>
<translation>Wersja CELT</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="165"/>
+ <location/>
<source>Details...</source>
<translation>Szczegóły...</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="175"/>
+ <location/>
<source>Ping Statistics</source>
<translation>Statystyki opóźnień</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="181"/>
+ <location/>
<source>Pings recieved</source>
<translation>Odebrane</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="191"/>
+ <location/>
<source>Average ping</source>
<translation>Średnie opóźnienie</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="211"/>
+ <location/>
<source>TCP (Control)</source>
<translation>TCP (Kontrola)</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="257"/>
+ <location/>
<source>UDP (Voice)</source>
<translation>UDP (Głos)</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="306"/>
+ <location/>
<source>UDP Network statistics</source>
<translation>Statystyka sieci UDP</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="312"/>
+ <location/>
<source>Good</source>
<translation>Dobre</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="322"/>
+ <location/>
<source>Late</source>
<translation>Opóźnione</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="332"/>
+ <location/>
<source>Lost</source>
<translation>Utracone</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="342"/>
+ <location/>
<source>Resync</source>
<translation>Re-synchronizowane</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="352"/>
+ <location/>
<source>From Client</source>
<translation>Od klienta</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="411"/>
+ <location/>
<source>To Client</source>
<translation>Do klienta</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="473"/>
+ <location/>
<source>Bandwidth</source>
<comment>GroupBox</comment>
<translation>Połączenie</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="502"/>
+ <location/>
<source>Bandwidth</source>
<comment>Label</comment>
<translation>Przepustowość</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="0"/>
<source>Bandwidth</source>
<translation type="obsolete">Przepustowość</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="479"/>
+ <location/>
<source>Connection time</source>
<translation>Czas połączenia</translation>
</message>
<message>
- <location filename="UserInformation.cpp" line="88"/>
+ <location filename="UserInformation.cpp" line="+88"/>
<source>%1w</source>
<translation>%1w</translation>
</message>
<message>
- <location filename="UserInformation.cpp" line="90"/>
+ <location line="+2"/>
<source>%1d</source>
<translation>%1d</translation>
</message>
<message>
- <location filename="UserInformation.cpp" line="92"/>
+ <location line="+2"/>
<source>%1h</source>
<translation>%1h</translation>
</message>
<message>
- <location filename="UserInformation.cpp" line="94"/>
+ <location line="+2"/>
<source>%1m</source>
<translation>%1m</translation>
</message>
<message>
- <location filename="UserInformation.cpp" line="95"/>
+ <location line="+1"/>
<source>%1s</source>
<translation>%1s</translation>
</message>
<message>
- <location filename="UserInformation.cpp" line="163"/>
+ <location line="+25"/>
+ <location line="+43"/>
<source>, </source>
<translation>,</translation>
</message>
<message>
- <location filename="UserInformation.cpp" line="150"/>
+ <location line="-13"/>
<source>%1.%2.%3 (%4)</source>
<translation>%1.%2.%3 (%4)</translation>
</message>
<message>
- <location filename="UserInformation.cpp" line="151"/>
+ <location line="+1"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
<message>
- <location filename="UserInformation.cpp" line="196"/>
+ <location line="+45"/>
<source>%1 online (%2 idle)</source>
<translation>%1 online (%2 bezczynny)</translation>
</message>
<message>
- <location filename="UserInformation.cpp" line="198"/>
+ <location line="+2"/>
<source>%1 online</source>
<translation>%1 online</translation>
</message>
<message>
- <location filename="UserInformation.cpp" line="203"/>
+ <location line="+5"/>
<source>%1 kbit/s</source>
<translation>%1 kbit/s</translation>
</message>
<message>
- <location filename="UserInformation.ui" line="201"/>
+ <location filename="UserInformation.ui"/>
<source>Ping deviation</source>
<translation>Odchylenie</translation>
</message>
@@ -8418,142 +8171,142 @@ An access token is a text string, which can be used as a password for very simpl
<context>
<name>UserModel</name>
<message>
- <location filename="UserModel.cpp" line="577"/>
+ <location filename="UserModel.cpp" line="-811"/>
<source>This is a user connected to the server. The icon to the left of the user indicates whether or not they are talking:</source>
<translation>To jest użytkownik podłączony do serwera. Ikona po lewej wskazuje czy w chwili obecnej:</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="578"/>
+ <location line="+1"/>
<source>Talking to your channel.</source>
<translation>Mówi do twojego kanału.</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="579"/>
+ <location line="+1"/>
<source>Whispering directly to your channel.</source>
<translation>Szepcze bezpośrednio do twojego kanału.</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="580"/>
+ <location line="+1"/>
<source>Whispering directly to you.</source>
<translation>Szepcze bezpośrednio do ciebie.</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="582"/>
+ <location line="+1"/>
<source>Not talking.</source>
<translation>Nie mówi.</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="589"/>
+ <location line="+8"/>
<source>This is a channel on the server. The icon indicates the state of the channel:</source>
<translation>To jest kanał na serwerze. Ikona wskazuje stan kanału:</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="590"/>
+ <location line="+1"/>
<source>Your current channel.</source>
<translation>Twój obecny kanał.</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="591"/>
+ <location line="+1"/>
<source>A channel that is linked with your channel. Linked channels can talk to each other.</source>
<translation>Kanał, z którym twój kanał jest połączony. Połączone kanały mogą rozmawiać między sobą.</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="593"/>
+ <location line="+1"/>
<source>A channel on the server that you are not linked to.</source>
<translation>Kanał na serwerze, do którego nie jesteś połączony.</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="608"/>
+ <location line="+16"/>
<source>This shows the flags the user has on the server, if any:</source>
<translation>Wyświetla uprawnienia użytkownika, o ile jakieś posiada:</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="609"/>
+ <location line="+1"/>
<source>On your friend list</source>
<translation>Twój znajomy</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="610"/>
+ <location line="+1"/>
<source>Authenticated user</source>
<translation>Użytkownik uwierzytelniony</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="611"/>
+ <location line="+1"/>
<source>Muted (manually muted by self)</source>
<translation>Wyciszony (przez siebie)</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="612"/>
+ <location line="+1"/>
<source>Muted (manually muted by admin)</source>
<translation>Wyciszony (ręcznie wyciszony przez administratora)</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="613"/>
+ <location line="+1"/>
<source>Muted (not allowed to speak in current channel)</source>
<translation>Wyciszony (brak uprawnień mowy na tym kanale)</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="615"/>
+ <location line="+1"/>
<source>Muted (muted by you, only on your machine)</source>
<translation>Wyciszony (przez ciebie, tylko na twojej maszynie)</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="616"/>
+ <location line="+2"/>
<source>Deafened (by self)</source>
<translation>Ogłuszony (przez siebie)</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="617"/>
+ <location line="+1"/>
<source>Deafened (by admin)</source>
<translation>Ogłuszony (przez administratora)</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="618"/>
+ <location line="+1"/>
<source>User has a new comment set (click to show)</source>
<translation>Użytkownik ma nowy komentarz (kliknij, aby wyświetlić)</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="620"/>
+ <location line="+1"/>
<source>User has a comment set, which you&apos;ve already seen. (click to show)</source>
<translation>Użytkownik posiada komentarz, który już widziałeś (kliknij, aby wyświetlić)</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="626"/>
+ <location line="+7"/>
<source>This shows the flags the channel has, if any:</source>
<translation>Wyświetla atrybuty kanału, o ile jakieś posiada:</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="627"/>
+ <location line="+1"/>
<source>Channel has a new comment set (click to show)</source>
<translation>Kanał ma nowy komentarz (kliknij, aby wyświetlić)</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="629"/>
+ <location line="+1"/>
<source>Channel has a comment set, which you&apos;ve already seen. (click to show)</source>
<translation>Kanał ma komentarz, który już widziałeś (kliknij, aby wyświetlić)</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="646"/>
+ <location line="+18"/>
<source>Name</source>
<translation>Nazwa</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="648"/>
+ <location line="+2"/>
<source>Flags</source>
<translation>Atrybut(y)</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="0"/>
<source>Mumble</source>
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="1374"/>
+ <location line="+728"/>
<source>Are you sure you want to drag this channel?</source>
<translation>Czy jesteś pewien, że chcesz przeciągnąć ten kanał?</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="1484"/>
+ <location line="+90"/>
+ <location line="+20"/>
<source>Cannot perform this movement automatically, please reset the numeric sorting indicators or adjust it manually.</source>
<translation>Nie można przenieść automatycznie, prosimy o posortowanie numeryczne wskaźników lub ręczne ustawienie.</translation>
</message>
@@ -8561,7 +8314,7 @@ An access token is a text string, which can be used as a password for very simpl
<context>
<name>VersionCheck</name>
<message>
- <location filename="VersionCheck.cpp" line="97"/>
+ <location filename="VersionCheck.cpp" line="+97"/>
<source>Mumble failed to retrieve version information from the SourceForge server.</source>
<translation>Nie udało się pobrać informacji o wersji z serwera SourceForge.</translation>
</message>
@@ -8569,107 +8322,112 @@ An access token is a text string, which can be used as a password for very simpl
<context>
<name>ViewCert</name>
<message>
- <location filename="ViewCert.cpp" line="36"/>
+ <location filename="ViewCert.cpp" line="+36"/>
<source>Certificate Chain Details</source>
<translation>Szczegóły certyfikatu</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="42"/>
+ <location line="+6"/>
<source>Certificate chain</source>
<translation>Certyfikat</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="51"/>
+ <location line="+9"/>
<source>Certificate details</source>
<translation>Szczegóły certyfikatu</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="48"/>
+ <location line="-3"/>
<source>%1 %2</source>
<translation>%1 %2</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="107"/>
+ <location line="+31"/>
+ <location line="+28"/>
<source>Common Name: %1</source>
<translation>Nazwa pospolita: %1</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="108"/>
+ <location line="-27"/>
+ <location line="+28"/>
<source>Organization: %1</source>
<translation>Organizacja: %1</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="81"/>
+ <location line="-27"/>
<source>Subunit: %1</source>
<translation>Pod-jednostka: %1</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="110"/>
+ <location line="+1"/>
+ <location line="+28"/>
<source>Country: %1</source>
<translation>Kraj: %1</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="111"/>
+ <location line="-27"/>
+ <location line="+28"/>
<source>Locality: %1</source>
<translation>Lokalizacja: %1</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="112"/>
+ <location line="-27"/>
+ <location line="+28"/>
<source>State: %1</source>
<translation>Kraj: %1</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="85"/>
+ <location line="-27"/>
<source>Valid from: %1</source>
<translation>Ważny od: %1</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="86"/>
+ <location line="+1"/>
<source>Valid to: %1</source>
<translation>Ważny do: %1</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="87"/>
+ <location line="+1"/>
<source>Serial: %1</source>
<translation>Numer seryjny: %1</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="88"/>
+ <location line="+1"/>
<source>Public Key: %1 bits %2</source>
<translation>Klucz publiczny: %1 bitów %2</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="88"/>
+ <location line="+0"/>
<source>RSA</source>
<translation>RSA</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="88"/>
+ <location line="+0"/>
<source>DSA</source>
<translation>DSA</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="89"/>
+ <location line="+1"/>
<source>Digest (MD5): %1</source>
<translation>Odcisk (MD5): %1</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="93"/>
+ <location line="+4"/>
<source>Email: %1</source>
<translation>Email: %1</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="97"/>
+ <location line="+4"/>
<source>DNS: %1</source>
<translation>DNS: %1</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="106"/>
+ <location line="+9"/>
<source>Issued by:</source>
<translation>Wydany przez:</translation>
</message>
<message>
- <location filename="ViewCert.cpp" line="109"/>
+ <location line="+3"/>
<source>Unit Name: %1</source>
<translation>Nazwa jednostki: %1</translation>
</message>
@@ -8677,7 +8435,7 @@ An access token is a text string, which can be used as a password for very simpl
<context>
<name>WASAPISystem</name>
<message>
- <location filename="WASAPI.cpp" line="172"/>
+ <location filename="WASAPI.cpp" line="+172"/>
<source>Default Device</source>
<translation>Urządzenie domyślne</translation>
</message>
diff --git a/src/mumble/mumble_ru.ts b/src/mumble/mumble_ru.ts
index 7c615db7e..aae42fc66 100644
--- a/src/mumble/mumble_ru.ts
+++ b/src/mumble/mumble_ru.ts
@@ -2667,7 +2667,7 @@ Mumble is under continuous development, and the development team wants to focus
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="+363"/>
+ <location filename="main.cpp" line="+390"/>
<source>&lt;b&gt;Certificate Expiry:&lt;/b&gt; Your certificate is about to expire. You need to renew it, or you will no longer be able to connect to servers you are registered on.</source>
<translation type="unfinished"></translation>
</message>
@@ -4645,7 +4645,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="LookConfig.cpp" line="+47"/>
+ <location filename="LookConfig.cpp" line="+52"/>
<location line="+11"/>
<source>System default</source>
<translation type="unfinished"></translation>
@@ -4936,7 +4936,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<name>MainWindow</name>
<message>
<location filename="MainWindow.cpp" line="+148"/>
- <location line="+1824"/>
+ <location line="+1831"/>
<source>Root</source>
<translation>Корень</translation>
</message>
@@ -5400,9 +5400,9 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>Присоединяется к вебстранице Mumble, чтобы проверить доступность новой версии, и уведомляет вас о ссылке для закачки в этом случае.</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1729"/>
+ <location filename="MainWindow.cpp" line="-1736"/>
<location line="+12"/>
- <location line="+1925"/>
+ <location line="+1932"/>
<source>Mumble -- %1</source>
<translation>Mumble -- %1</translation>
</message>
@@ -5424,7 +5424,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">&amp;Игрок</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-2015"/>
+ <location filename="MainWindow.cpp" line="-2022"/>
<source>&amp;Channel</source>
<translation type="unfinished">&amp;Канал</translation>
</message>
@@ -5537,7 +5537,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">Выкидывание игрока %1</translation>
</message>
<message>
- <location line="+949"/>
+ <location line="+954"/>
<location line="+19"/>
<source>Enter reason</source>
<translation>Введите причину</translation>
@@ -5556,7 +5556,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">Имя канала</translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="+250"/>
+ <location filename="MainWindow.cpp" line="+252"/>
<source>Are you sure you want to delete %1 and all its sub-channels?</source>
<translation>Вы уверены, что хотите удалить %1 и все его подканалы?</translation>
</message>
@@ -5614,7 +5614,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>Отключен от сервера.</translation>
</message>
<message>
- <location line="-1347"/>
+ <location line="-1351"/>
<source>Reconnecting.</source>
<translation>Повтор связи.</translation>
</message>
@@ -5962,7 +5962,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="+415"/>
+ <location filename="MainWindow.cpp" line="+417"/>
<source>Sending message to %1</source>
<translation type="unfinished"></translation>
</message>
@@ -5985,7 +5985,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location line="+263"/>
+ <location line="+265"/>
<source>(Tree) %1: %2</source>
<translation type="unfinished"></translation>
</message>
@@ -6161,7 +6161,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1572"/>
+ <location filename="MainWindow.cpp" line="-1577"/>
<source>Opening URL %1</source>
<translation type="unfinished"></translation>
</message>
@@ -6202,7 +6202,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+18"/>
- <location line="+183"/>
+ <location line="+184"/>
<source>Connecting to server %1.</source>
<translation type="unfinished"></translation>
</message>
@@ -6243,7 +6243,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+4"/>
- <location line="+1128"/>
+ <location line="+1132"/>
<source>&amp;View Certificate</source>
<translation type="unfinished"></translation>
</message>
@@ -6253,14 +6253,14 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-1489"/>
- <location line="+279"/>
+ <location line="-1493"/>
+ <location line="+281"/>
<source>Register yourself as %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-279"/>
- <location line="+279"/>
+ <location line="-281"/>
+ <location line="+281"/>
<source>&lt;p&gt;You are about to register yourself on this server. This action cannot be undone, and your username cannot be changed once this is done. You will forever be known as &apos;%1&apos; on this server.&lt;/p&gt;&lt;p&gt;Are you sure you want to register yourself?&lt;/p&gt;</source>
<translation type="unfinished"></translation>
</message>
@@ -6291,7 +6291,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+56"/>
- <location line="+225"/>
+ <location line="+227"/>
<source>Message to channel %1</source>
<translation type="unfinished"></translation>
</message>
@@ -6352,17 +6352,17 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-1422"/>
+ <location line="-1426"/>
<source>Voice channel is sent over control channel.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-784"/>
+ <location line="-787"/>
<source>&amp;User</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="+775"/>
+ <location line="+778"/>
<source>&lt;h2&gt;Control channel&lt;/h2&gt;&lt;p&gt;Encrypted with %1 bit %2&lt;br /&gt;%3 ms average latency (%4 deviation)&lt;/p&gt;&lt;p&gt;Remote host %5 (port %6)&lt;/p&gt;</source>
<translation type="unfinished"></translation>
</message>
@@ -6402,7 +6402,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location line="+561"/>
+ <location line="+565"/>
<source>Sending message to channel %1</source>
<translation type="unfinished"></translation>
</message>
@@ -6432,7 +6432,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="MainWindow.cpp" line="-1169"/>
+ <location filename="MainWindow.cpp" line="-1174"/>
<source>Mumble is currently connected to a server. Do you want to Close or Minimize it?</source>
<translation type="unfinished"></translation>
</message>
@@ -6442,13 +6442,13 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-98"/>
- <location line="+99"/>
+ <location line="-100"/>
+ <location line="+101"/>
<source>Minimize</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-152"/>
+ <location line="-154"/>
<source>Mute Self</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6539,12 +6539,12 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+65"/>
- <location line="+1942"/>
+ <location line="+1949"/>
<source>Not connected</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-1743"/>
+ <location line="-1748"/>
<source>Clear</source>
<translation type="unfinished"></translation>
</message>
@@ -6554,7 +6554,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="UserModel.cpp" line="+1380"/>
+ <location filename="UserModel.cpp" line="+1382"/>
<source>You have Channel Dragging set to &quot;Do Nothing&quot; so the channel wasn&apos;t moved.</source>
<translation type="unfinished"></translation>
</message>
@@ -6987,7 +6987,7 @@ Prevents the client from downloading images embedded into chat messages with the
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="+646"/>
+ <location filename="Overlay.cpp" line="+642"/>
<source>Failed to create communication with overlay at %2: %1. No overlay will be available.</source>
<translation type="unfinished"></translation>
</message>
@@ -7200,27 +7200,12 @@ Prevents the client from downloading images embedded into chat messages with the
<translation>Цвет для Активных каналов</translation>
</message>
<message>
- <location filename="Overlay.cpp" line="-503"/>
+ <location filename="Overlay.cpp" line="-505"/>
<source>Overlay</source>
<translation>Замещение</translation>
</message>
<message>
<location filename="Overlay.ui"/>
- <source>Show User Textures</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location/>
- <source>Show User custom textures instead of text on the overlay.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location/>
- <source>This sets whether to download and use custom textures for registered users. If disabled, the regular outline text will be used instead.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location/>
<source>Maximum height of names.</source>
<translation type="unfinished"></translation>
</message>
@@ -7235,7 +7220,7 @@ Prevents the client from downloading images embedded into chat messages with the
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="Overlay.cpp" line="-95"/>
+ <location filename="Overlay.cpp" line="-89"/>
<source>Show no one</source>
<translation type="unfinished"></translation>
</message>
@@ -7251,7 +7236,7 @@ Prevents the client from downloading images embedded into chat messages with the
</message>
<message>
<location filename="Overlay.ui"/>
- <location filename="Overlay.cpp" line="+73"/>
+ <location filename="Overlay.cpp" line="+67"/>
<source>Color for users</source>
<translation type="unfinished"></translation>
</message>
@@ -7477,7 +7462,7 @@ Prevents the client from downloading images embedded into chat messages with the
<context>
<name>Plugins</name>
<message>
- <location filename="Plugins.cpp" line="+404"/>
+ <location filename="Plugins.cpp" line="+417"/>
<location line="+6"/>
<source>Downloaded new or updated plugin to %1.</source>
<translation type="unfinished"></translation>
@@ -8116,7 +8101,7 @@ An access token is a text string, which can be used as a password for very simpl
<context>
<name>UserModel</name>
<message>
- <location filename="UserModel.cpp" line="-809"/>
+ <location filename="UserModel.cpp" line="-811"/>
<source>This is a user connected to the server. The icon to the left of the user indicates whether or not they are talking:</source>
<translation type="unfinished"></translation>
</message>
@@ -8245,7 +8230,7 @@ An access token is a text string, which can be used as a password for very simpl
<translation type="obsolete">Mumble</translation>
</message>
<message>
- <location line="+726"/>
+ <location line="+728"/>
<source>Are you sure you want to drag this channel?</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/mumble/mumble_zh_CN.ts b/src/mumble/mumble_zh_CN.ts
index 50f648f3a..d9aba0207 100644
--- a/src/mumble/mumble_zh_CN.ts
+++ b/src/mumble/mumble_zh_CN.ts
@@ -2455,7 +2455,7 @@ Mumble is under continuous development, and the development team wants to focus
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="+363"/>
+ <location filename="main.cpp" line="+390"/>
<source>&lt;b&gt;Certificate Expiry:&lt;/b&gt; Your certificate is about to expire. You need to renew it, or you will no longer be able to connect to servers you are registered on.</source>
<translation type="unfinished"></translation>
</message>
@@ -4216,7 +4216,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<context>
<name>LookConfig</name>
<message>
- <location filename="LookConfig.cpp" line="+47"/>
+ <location filename="LookConfig.cpp" line="+52"/>
<location line="+11"/>
<source>System default</source>
<translation>系统默认</translation>
@@ -4569,12 +4569,12 @@ This field describes the size of an LCD device. The size is given either in pixe
<name>MainWindow</name>
<message>
<location filename="MainWindow.cpp" line="+148"/>
- <location line="+1824"/>
+ <location line="+1831"/>
<source>Root</source>
<translation>根</translation>
</message>
<message>
- <location line="-1773"/>
+ <location line="-1780"/>
<source>Push-to-Talk</source>
<comment>Global Shortcut</comment>
<translation>按键通话</translation>
@@ -4713,28 +4713,28 @@ This field describes the size of an LCD device. The size is given either in pixe
<message>
<location filename="MainWindow.cpp" line="+4"/>
<location line="+12"/>
- <location line="+1925"/>
+ <location line="+1932"/>
<source>Mumble -- %1</source>
<translation></translation>
</message>
<message>
- <location line="-1921"/>
+ <location line="-1928"/>
<source>&amp;Window</source>
<translation>&amp;窗口</translation>
</message>
<message>
<location line="+2"/>
- <location line="+99"/>
+ <location line="+101"/>
<source>Minimize</source>
<translation>最小化</translation>
</message>
<message>
- <location line="-99"/>
+ <location line="-101"/>
<source>Ctrl+M</source>
<translation></translation>
</message>
<message>
- <location line="+98"/>
+ <location line="+100"/>
<source>Close</source>
<translation>关闭</translation>
</message>
@@ -4744,7 +4744,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>Mumble 现在连接到了一个服务器。你想要关闭还是最小化它?</translation>
</message>
<message>
- <location line="-194"/>
+ <location line="-196"/>
<source>&amp;User</source>
<translation type="unfinished"></translation>
</message>
@@ -4797,12 +4797,12 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+58"/>
- <location line="+1942"/>
+ <location line="+1949"/>
<source>Not connected</source>
<translation type="unfinished">未连接</translation>
</message>
<message>
- <location line="-1743"/>
+ <location line="-1748"/>
<source>Clear</source>
<translation>清除</translation>
</message>
@@ -4848,7 +4848,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+18"/>
- <location line="+183"/>
+ <location line="+184"/>
<source>Connecting to server %1.</source>
<translation type="unfinished"></translation>
</message>
@@ -4893,19 +4893,19 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location line="+1385"/>
+ <location line="+1389"/>
<source>Images (*.png *.jpg *.svg)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-1489"/>
- <location line="+279"/>
+ <location line="-1493"/>
+ <location line="+281"/>
<source>Register yourself as %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-279"/>
- <location line="+279"/>
+ <location line="-281"/>
+ <location line="+281"/>
<source>&lt;p&gt;You are about to register yourself on this server. This action cannot be undone, and your username cannot be changed once this is done. You will forever be known as &apos;%1&apos; on this server.&lt;/p&gt;&lt;p&gt;Are you sure you want to register yourself?&lt;/p&gt;</source>
<translation type="unfinished"></translation>
</message>
@@ -4941,7 +4941,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+40"/>
- <location line="+225"/>
+ <location line="+227"/>
<source>Message to channel %1</source>
<translation type="unfinished"></translation>
</message>
@@ -5011,7 +5011,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">&lt;h2&gt;控制信道&lt;/h2&gt;&lt;p&gt;使用 %1 比特 %2 加密&lt;br /&gt;平均延迟 %3 毫秒(%4 方差)&lt;/p&gt;</translation>
</message>
<message>
- <location line="-1422"/>
+ <location line="-1426"/>
<source>Voice channel is sent over control channel.</source>
<translation>语音频道通过控制信道发送。</translation>
</message>
@@ -5065,7 +5065,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+4"/>
- <location line="+1128"/>
+ <location line="+1132"/>
<source>&amp;View Certificate</source>
<translation>&amp;查看认证</translation>
</message>
@@ -5074,7 +5074,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">踢出玩家 %1</translation>
</message>
<message>
- <location line="-917"/>
+ <location line="-919"/>
<location line="+19"/>
<source>Enter reason</source>
<translation>输入原因</translation>
@@ -5106,7 +5106,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">频道名</translation>
</message>
<message>
- <location line="+139"/>
+ <location line="+141"/>
<source>Are you sure you want to delete %1 and all its sub-channels?</source>
<translation>你确信要删除 %1和它的子频道吗?</translation>
</message>
@@ -5249,7 +5249,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">&amp;玩家</translation>
</message>
<message>
- <location line="-1999"/>
+ <location line="-2006"/>
<source>&amp;Channel</source>
<translation type="unfinished">&amp;频道</translation>
</message>
@@ -6269,7 +6269,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>来至 %1 的消息</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="+1380"/>
+ <location filename="UserModel.cpp" line="+1382"/>
<source>You have Channel Dragging set to &quot;Do Nothing&quot; so the channel wasn&apos;t moved.</source>
<translation>你设置频道拖动为“无动作&quot;因此频道没有被移动。</translation>
</message>
@@ -6694,7 +6694,7 @@ Prevents the client from downloading images embedded into chat messages with the
<context>
<name>Overlay</name>
<message>
- <location filename="Overlay.cpp" line="+646"/>
+ <location filename="Overlay.cpp" line="+642"/>
<source>Failed to create communication with overlay at %2: %1. No overlay will be available.</source>
<translation type="unfinished"></translation>
</message>
@@ -6712,7 +6712,7 @@ Prevents the client from downloading images embedded into chat messages with the
<context>
<name>OverlayConfig</name>
<message>
- <location line="-598"/>
+ <location line="-594"/>
<source>Show no one</source>
<translation>不显示任何人</translation>
</message>
@@ -6728,7 +6728,7 @@ Prevents the client from downloading images embedded into chat messages with the
</message>
<message>
<location filename="Overlay.ui"/>
- <location filename="Overlay.cpp" line="+73"/>
+ <location filename="Overlay.cpp" line="+67"/>
<source>Color for users</source>
<translation type="unfinished"></translation>
</message>
@@ -6809,19 +6809,16 @@ Prevents the client from downloading images embedded into chat messages with the
<translation>总是显示自己</translation>
</message>
<message>
- <location/>
<source>Show User custom textures instead of text on the overlay.</source>
- <translation>在 overlay 上显示用户自定义纹理而不是文本。</translation>
+ <translation type="obsolete">在 overlay 上显示用户自定义纹理而不是文本。</translation>
</message>
<message>
- <location/>
<source>This sets whether to download and use custom textures for registered users. If disabled, the regular outline text will be used instead.</source>
- <translation>设置是否让注册用户下载并使用自定义纹理。如果禁用该选项,常规边框文字将被使用。</translation>
+ <translation type="obsolete">设置是否让注册用户下载并使用自定义纹理。如果禁用该选项,常规边框文字将被使用。</translation>
</message>
<message>
- <location/>
<source>Show User Textures</source>
- <translation>显示用户纹理</translation>
+ <translation type="obsolete">显示用户纹理</translation>
</message>
<message>
<location/>
@@ -7120,7 +7117,7 @@ Prevents the client from downloading images embedded into chat messages with the
<context>
<name>Plugins</name>
<message>
- <location filename="Plugins.cpp" line="+404"/>
+ <location filename="Plugins.cpp" line="+417"/>
<location line="+6"/>
<source>Downloaded new or updated plugin to %1.</source>
<translation type="unfinished"></translation>
@@ -7740,7 +7737,7 @@ An access token is a text string, which can be used as a password for very simpl
<context>
<name>UserModel</name>
<message>
- <location filename="UserModel.cpp" line="-809"/>
+ <location filename="UserModel.cpp" line="-811"/>
<source>This is a user connected to the server. The icon to the left of the user indicates whether or not they are talking:</source>
<translation type="unfinished"></translation>
</message>
@@ -7865,7 +7862,7 @@ An access token is a text string, which can be used as a password for very simpl
<translation type="unfinished">标志</translation>
</message>
<message>
- <location line="+726"/>
+ <location line="+728"/>
<source>Are you sure you want to drag this channel?</source>
<translation type="unfinished">你确信要拖动这个频道吗?</translation>
</message>
diff --git a/src/mumble/mumble_zh_TW.ts b/src/mumble/mumble_zh_TW.ts
index e0b40858b..1f393e65c 100644
--- a/src/mumble/mumble_zh_TW.ts
+++ b/src/mumble/mumble_zh_TW.ts
@@ -2455,7 +2455,7 @@ Mumble is under continuous development, and the development team wants to focus
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="+363"/>
+ <location filename="main.cpp" line="+390"/>
<source>&lt;b&gt;Certificate Expiry:&lt;/b&gt; Your certificate is about to expire. You need to renew it, or you will no longer be able to connect to servers you are registered on.</source>
<translation type="unfinished"></translation>
</message>
@@ -4216,7 +4216,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<context>
<name>LookConfig</name>
<message>
- <location filename="LookConfig.cpp" line="+47"/>
+ <location filename="LookConfig.cpp" line="+52"/>
<location line="+11"/>
<source>System default</source>
<translation>系統默認</translation>
@@ -4569,12 +4569,12 @@ This field describes the size of an LCD device. The size is given either in pixe
<name>MainWindow</name>
<message>
<location filename="MainWindow.cpp" line="+148"/>
- <location line="+1824"/>
+ <location line="+1831"/>
<source>Root</source>
<translation>根</translation>
</message>
<message>
- <location line="-1773"/>
+ <location line="-1780"/>
<source>Push-to-Talk</source>
<comment>Global Shortcut</comment>
<translation>按鍵通話</translation>
@@ -4713,28 +4713,28 @@ This field describes the size of an LCD device. The size is given either in pixe
<message>
<location filename="MainWindow.cpp" line="+4"/>
<location line="+12"/>
- <location line="+1925"/>
+ <location line="+1932"/>
<source>Mumble -- %1</source>
<translation></translation>
</message>
<message>
- <location line="-1921"/>
+ <location line="-1928"/>
<source>&amp;Window</source>
<translation>&amp;窗口</translation>
</message>
<message>
<location line="+2"/>
- <location line="+99"/>
+ <location line="+101"/>
<source>Minimize</source>
<translation>最小化</translation>
</message>
<message>
- <location line="-99"/>
+ <location line="-101"/>
<source>Ctrl+M</source>
<translation></translation>
</message>
<message>
- <location line="+98"/>
+ <location line="+100"/>
<source>Close</source>
<translation>關閉</translation>
</message>
@@ -4744,7 +4744,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>Mumble 現在連接到了一個服務器。你想要關閉還是最小化它?</translation>
</message>
<message>
- <location line="-194"/>
+ <location line="-196"/>
<source>&amp;User</source>
<translation type="unfinished"></translation>
</message>
@@ -4797,12 +4797,12 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+58"/>
- <location line="+1942"/>
+ <location line="+1949"/>
<source>Not connected</source>
<translation type="unfinished">未連接</translation>
</message>
<message>
- <location line="-1743"/>
+ <location line="-1748"/>
<source>Clear</source>
<translation>清除</translation>
</message>
@@ -4848,7 +4848,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+18"/>
- <location line="+183"/>
+ <location line="+184"/>
<source>Connecting to server %1.</source>
<translation type="unfinished"></translation>
</message>
@@ -4893,19 +4893,19 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="unfinished"></translation>
</message>
<message>
- <location line="+1385"/>
+ <location line="+1389"/>
<source>Images (*.png *.jpg *.svg)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-1489"/>
- <location line="+279"/>
+ <location line="-1493"/>
+ <location line="+281"/>
<source>Register yourself as %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location line="-279"/>
- <location line="+279"/>
+ <location line="-281"/>
+ <location line="+281"/>
<source>&lt;p&gt;You are about to register yourself on this server. This action cannot be undone, and your username cannot be changed once this is done. You will forever be known as &apos;%1&apos; on this server.&lt;/p&gt;&lt;p&gt;Are you sure you want to register yourself?&lt;/p&gt;</source>
<translation type="unfinished"></translation>
</message>
@@ -4941,7 +4941,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+40"/>
- <location line="+225"/>
+ <location line="+227"/>
<source>Message to channel %1</source>
<translation type="unfinished"></translation>
</message>
@@ -5011,7 +5011,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">&lt;h2&gt;控制信道&lt;/h2&gt;&lt;p&gt;使用 %1 比特 %2 加密&lt;br /&gt;平均延遲 %3 毫秒(%4 方差)&lt;/p&gt;</translation>
</message>
<message>
- <location line="-1422"/>
+ <location line="-1426"/>
<source>Voice channel is sent over control channel.</source>
<translation>語音頻道通過控制信道發送。</translation>
</message>
@@ -5065,7 +5065,7 @@ This field describes the size of an LCD device. The size is given either in pixe
</message>
<message>
<location line="+4"/>
- <location line="+1128"/>
+ <location line="+1132"/>
<source>&amp;View Certificate</source>
<translation>&amp;查看認証</translation>
</message>
@@ -5074,7 +5074,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">踢出玩家 %1</translation>
</message>
<message>
- <location line="-917"/>
+ <location line="-919"/>
<location line="+19"/>
<source>Enter reason</source>
<translation>輸入原因</translation>
@@ -5106,7 +5106,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">頻道名</translation>
</message>
<message>
- <location line="+139"/>
+ <location line="+141"/>
<source>Are you sure you want to delete %1 and all its sub-channels?</source>
<translation>你確信要刪除 %1和它的子頻道嗎?</translation>
</message>
@@ -5249,7 +5249,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation type="obsolete">&amp;玩家</translation>
</message>
<message>
- <location line="-1999"/>
+ <location line="-2006"/>
<source>&amp;Channel</source>
<translation type="unfinished">&amp;頻道</translation>
</message>
@@ -6269,7 +6269,7 @@ This field describes the size of an LCD device. The size is given either in pixe
<translation>來至 %1 的消息</translation>
</message>
<message>
- <location filename="UserModel.cpp" line="+1380"/>
+ <location filename="UserModel.cpp" line="+1382"/>
<source>You have Channel Dragging set to &quot;Do Nothing&quot; so the channel wasn&apos;t moved.</source>
<translation>你設置頻道拖動為“無動作&quot;因此頻道沒有被移動。</translation>
</message>
@@ -6694,7 +6694,7 @@ Prevents the client from downloading images embedded into chat messages with the
<context>
<name>Overlay</name>
<message>
- <location filename="Overlay.cpp" line="+646"/>
+ <location filename="Overlay.cpp" line="+642"/>
<source>Failed to create communication with overlay at %2: %1. No overlay will be available.</source>
<translation type="unfinished"></translation>
</message>
@@ -6712,7 +6712,7 @@ Prevents the client from downloading images embedded into chat messages with the
<context>
<name>OverlayConfig</name>
<message>
- <location line="-598"/>
+ <location line="-594"/>
<source>Show no one</source>
<translation>不顯示任何人</translation>
</message>
@@ -6728,7 +6728,7 @@ Prevents the client from downloading images embedded into chat messages with the
</message>
<message>
<location filename="Overlay.ui"/>
- <location filename="Overlay.cpp" line="+73"/>
+ <location filename="Overlay.cpp" line="+67"/>
<source>Color for users</source>
<translation type="unfinished"></translation>
</message>
@@ -6809,19 +6809,16 @@ Prevents the client from downloading images embedded into chat messages with the
<translation>總是顯示自己</translation>
</message>
<message>
- <location/>
<source>Show User custom textures instead of text on the overlay.</source>
- <translation>在 overlay 上顯示用戶自定義紋理而不是文本。</translation>
+ <translation type="obsolete">在 overlay 上顯示用戶自定義紋理而不是文本。</translation>
</message>
<message>
- <location/>
<source>This sets whether to download and use custom textures for registered users. If disabled, the regular outline text will be used instead.</source>
- <translation>設置是否讓注冊用戶下載并使用自定義紋理。如果禁用該選項,常規邊框文字將被使用。</translation>
+ <translation type="obsolete">設置是否讓注冊用戶下載并使用自定義紋理。如果禁用該選項,常規邊框文字將被使用。</translation>
</message>
<message>
- <location/>
<source>Show User Textures</source>
- <translation>顯示用戶紋理</translation>
+ <translation type="obsolete">顯示用戶紋理</translation>
</message>
<message>
<location/>
@@ -7120,7 +7117,7 @@ Prevents the client from downloading images embedded into chat messages with the
<context>
<name>Plugins</name>
<message>
- <location filename="Plugins.cpp" line="+404"/>
+ <location filename="Plugins.cpp" line="+417"/>
<location line="+6"/>
<source>Downloaded new or updated plugin to %1.</source>
<translation type="unfinished"></translation>
@@ -7740,7 +7737,7 @@ An access token is a text string, which can be used as a password for very simpl
<context>
<name>UserModel</name>
<message>
- <location filename="UserModel.cpp" line="-809"/>
+ <location filename="UserModel.cpp" line="-811"/>
<source>This is a user connected to the server. The icon to the left of the user indicates whether or not they are talking:</source>
<translation type="unfinished"></translation>
</message>
@@ -7865,7 +7862,7 @@ An access token is a text string, which can be used as a password for very simpl
<translation type="unfinished">標志</translation>
</message>
<message>
- <location line="+726"/>
+ <location line="+728"/>
<source>Are you sure you want to drag this channel?</source>
<translation type="unfinished">你確信要拖動這個頻道嗎?</translation>
</message>
diff --git a/src/mumble11x/mumble_cs.ts b/src/mumble11x/mumble_cs.ts
index 9e0b907dd..0610a62cc 100644
--- a/src/mumble11x/mumble_cs.ts
+++ b/src/mumble11x/mumble_cs.ts
@@ -3494,7 +3494,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>MainWindow</name>
<message>
- <location filename="main.cpp" line="+227"/>
+ <location filename="main.cpp" line="+239"/>
<source>Welcome to Mumble.</source>
<translation>Vítejte v aplikaci Mumble.</translation>
</message>
diff --git a/src/mumble11x/mumble_de.ts b/src/mumble11x/mumble_de.ts
index b17ee2385..5ce95422c 100644
--- a/src/mumble11x/mumble_de.ts
+++ b/src/mumble11x/mumble_de.ts
@@ -4588,7 +4588,7 @@ p, li { white-space: pre-wrap; }
<translation>Abgelehnt: %1.</translation>
</message>
<message>
- <location filename="main.cpp" line="+227"/>
+ <location filename="main.cpp" line="+239"/>
<source>Welcome to Mumble.</source>
<translation>Willkommen in Mumble.</translation>
</message>
diff --git a/src/mumble11x/mumble_en.ts b/src/mumble11x/mumble_en.ts
index fc5260180..7cc6dd08e 100644
--- a/src/mumble11x/mumble_en.ts
+++ b/src/mumble11x/mumble_en.ts
@@ -3981,7 +3981,7 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="+227"/>
+ <location filename="main.cpp" line="+239"/>
<source>Welcome to Mumble.</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/mumble11x/mumble_es.ts b/src/mumble11x/mumble_es.ts
index 348ae2ca2..26c647b44 100644
--- a/src/mumble11x/mumble_es.ts
+++ b/src/mumble11x/mumble_es.ts
@@ -4018,7 +4018,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>MainWindow</name>
<message>
- <location filename="main.cpp" line="+227"/>
+ <location filename="main.cpp" line="+239"/>
<source>Welcome to Mumble.</source>
<translation>Bienvenido a Mumble.</translation>
</message>
diff --git a/src/mumble11x/mumble_fr.ts b/src/mumble11x/mumble_fr.ts
index 7338a61ed..286bf08d1 100644
--- a/src/mumble11x/mumble_fr.ts
+++ b/src/mumble11x/mumble_fr.ts
@@ -3824,7 +3824,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>MainWindow</name>
<message>
- <location filename="main.cpp" line="+227"/>
+ <location filename="main.cpp" line="+239"/>
<source>Welcome to Mumble.</source>
<translation>Bienvenue sur Mumble.</translation>
</message>
diff --git a/src/mumble11x/mumble_it.ts b/src/mumble11x/mumble_it.ts
index ab0ecceb5..a96ac403d 100644
--- a/src/mumble11x/mumble_it.ts
+++ b/src/mumble11x/mumble_it.ts
@@ -4172,7 +4172,7 @@ p, li { white-space: pre-wrap; }
<translation>Modalità trascianamento canale sconosciuta in PlayerModel::dropMimeData.</translation>
</message>
<message>
- <location filename="main.cpp" line="+227"/>
+ <location filename="main.cpp" line="+239"/>
<source>Welcome to Mumble.</source>
<translation>Benvenuto su Mumble.</translation>
</message>
diff --git a/src/mumble11x/mumble_ja.ts b/src/mumble11x/mumble_ja.ts
index dc202989a..531b50a38 100644
--- a/src/mumble11x/mumble_ja.ts
+++ b/src/mumble11x/mumble_ja.ts
@@ -4729,7 +4729,7 @@ p, li { white-space: pre-wrap; }
<translation>拒否されました: %1.</translation>
</message>
<message>
- <location filename="main.cpp" line="+227"/>
+ <location filename="main.cpp" line="+239"/>
<source>Welcome to Mumble.</source>
<translation>Mumbleへようこそ</translation>
</message>
diff --git a/src/mumble11x/mumble_pl.ts b/src/mumble11x/mumble_pl.ts
index 08f959f8a..3c2afae33 100644
--- a/src/mumble11x/mumble_pl.ts
+++ b/src/mumble11x/mumble_pl.ts
@@ -3786,7 +3786,7 @@ Możesz dowolnie skonfigurować okno dziennika w Konfiguracja&gt;Ustawienia&gt;W
<translation>Zabroniono: %1.</translation>
</message>
<message>
- <location filename="main.cpp" line="+227"/>
+ <location filename="main.cpp" line="+239"/>
<source>Welcome to Mumble.</source>
<translation>Witamy w Mumble.</translation>
</message>
diff --git a/src/mumble11x/mumble_ru.ts b/src/mumble11x/mumble_ru.ts
index aba1da74f..a3c5b1938 100644
--- a/src/mumble11x/mumble_ru.ts
+++ b/src/mumble11x/mumble_ru.ts
@@ -4365,7 +4365,7 @@ p, li { white-space: pre-wrap; }
<translation>Запрещено: %1.</translation>
</message>
<message>
- <location filename="main.cpp" line="+227"/>
+ <location filename="main.cpp" line="+239"/>
<source>Welcome to Mumble.</source>
<translation>Добро пожаловать в Mumble.</translation>
</message>
diff --git a/src/mumble11x/mumble_zh_CN.ts b/src/mumble11x/mumble_zh_CN.ts
index dc1621121..13d20f8d5 100644
--- a/src/mumble11x/mumble_zh_CN.ts
+++ b/src/mumble11x/mumble_zh_CN.ts
@@ -4138,7 +4138,7 @@ p, li { white-space: pre-wrap; }
<translation>未知的频道拖动模式 PlayerModel::dropMimeData。</translation>
</message>
<message>
- <location filename="main.cpp" line="+227"/>
+ <location filename="main.cpp" line="+239"/>
<source>Welcome to Mumble.</source>
<translation>欢迎来到 Mumble。</translation>
</message>
diff --git a/src/mumble11x/mumble_zh_TW.ts b/src/mumble11x/mumble_zh_TW.ts
index 0a4156930..c84ae6f56 100644
--- a/src/mumble11x/mumble_zh_TW.ts
+++ b/src/mumble11x/mumble_zh_TW.ts
@@ -4138,7 +4138,7 @@ p, li { white-space: pre-wrap; }
<translation>未知的頻道拖動模式 PlayerModel::dropMimeData。</translation>
</message>
<message>
- <location filename="main.cpp" line="+227"/>
+ <location filename="main.cpp" line="+239"/>
<source>Welcome to Mumble.</source>
<translation>歡迎來到 Mumble。</translation>
</message>