From: Mike Gelfand Date: Mon, 22 Dec 2014 03:06:09 +0000 (+0000) Subject: Move numeric units to the right of values (per KDE HIG) X-Git-Tag: 2.90~295 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f239d57e1dfb4d750f162bd17eb8ee994400ab9;p=transmission Move numeric units to the right of values (per KDE HIG) Sync translations with the code. Adjust translations for changed phrases (hopefully correct for the most of them). One phrase still left untouched (Preferences -> Downloading), need to think on better wording. --- diff --git a/qt/details.cc b/qt/details.cc index 903c47e24..36137c501 100644 --- a/qt/details.cc +++ b/qt/details.cc @@ -835,6 +835,7 @@ Details::refresh () ui.idleSpin->setVisible (uniform && (baselineInt == TR_RATIOLIMIT_SINGLE)); setIfIdle (ui.idleSpin, tor->seedIdleLimit ()); + onIdleLimitChanged (); } /// @@ -1005,6 +1006,14 @@ Details::onIdleModeChanged (int index) getNewData (); } +void +Details::onIdleLimitChanged () +{ + const QString unitsSuffix = tr (" minute(s)", 0, ui.idleSpin->value ()); + if (ui.idleSpin->suffix () != unitsSuffix) + ui.idleSpin->setSuffix (unitsSuffix); +} + void Details::onRatioModeChanged (int index) { @@ -1135,8 +1144,8 @@ Details::initOptionsTab () { const QString speed_K_str = Formatter::unitStr (Formatter::SPEED, Formatter::KB); - ui.singleDownCheck->setText (ui.singleDownCheck->text ().arg(speed_K_str)); - ui.singleUpCheck->setText (ui.singleUpCheck->text ().arg(speed_K_str)); + ui.singleDownSpin->setSuffix (QString::fromLatin1 (" %1").arg (speed_K_str)); + ui.singleUpSpin->setSuffix (QString::fromLatin1 (" %1").arg (speed_K_str)); ui.singleDownSpin->setProperty (PREF_KEY, TR_KEY_downloadLimit); ui.singleUpSpin->setProperty (PREF_KEY, TR_KEY_uploadLimit); @@ -1152,9 +1161,9 @@ Details::initOptionsTab () ui.ratioCombo->addItem (tr ("Seed regardless of ratio"), TR_RATIOLIMIT_UNLIMITED); ui.ratioCombo->addItem (tr ("Stop seeding at ratio:"), TR_RATIOLIMIT_SINGLE); - ui.idleCombo->addItem (tr ("Use Global Settings"), TR_IDLELIMIT_GLOBAL); - ui.idleCombo->addItem (tr ("Seed regardless of activity"), TR_IDLELIMIT_UNLIMITED); - ui.idleCombo->addItem (tr ("Stop seeding if idle for N minutes:"), TR_IDLELIMIT_SINGLE); + ui.idleCombo->addItem (tr ("Use Global Settings"), TR_IDLELIMIT_GLOBAL); + ui.idleCombo->addItem (tr ("Seed regardless of activity"), TR_IDLELIMIT_UNLIMITED); + ui.idleCombo->addItem (tr ("Stop seeding if idle for:"), TR_IDLELIMIT_SINGLE); connect (ui.sessionLimitCheck, SIGNAL (clicked (bool)), SLOT (onHonorsSessionLimitsToggled (bool))); connect (ui.singleDownCheck, SIGNAL (clicked (bool)), SLOT (onDownloadLimitedToggled (bool))); @@ -1166,6 +1175,7 @@ Details::initOptionsTab () connect (ui.ratioSpin, SIGNAL (editingFinished ()), SLOT (onSpinBoxEditingFinished ())); connect (ui.idleCombo, SIGNAL (currentIndexChanged (int)), SLOT (onIdleModeChanged (int))); connect (ui.idleSpin, SIGNAL (editingFinished ()), SLOT (onSpinBoxEditingFinished ())); + connect (ui.idleSpin, SIGNAL (valueChanged (int)), SLOT (onIdleLimitChanged ())); connect (ui.peerLimitSpin, SIGNAL (editingFinished ()), SLOT (onSpinBoxEditingFinished ())); } diff --git a/qt/details.h b/qt/details.h index cc91ff191..3ffbe908f 100644 --- a/qt/details.h +++ b/qt/details.h @@ -87,6 +87,7 @@ class Details: public QDialog void onUploadLimitedToggled (bool); void onRatioModeChanged (int); void onIdleModeChanged (int); + void onIdleLimitChanged (); void onShowTrackerScrapesToggled (bool); void onShowBackupTrackersToggled (bool); void onTrackerSelectionChanged (); diff --git a/qt/details.ui b/qt/details.ui index 23a2c943c..ebc572c7e 100644 --- a/qt/details.ui +++ b/qt/details.ui @@ -629,7 +629,7 @@ - Limit &download speed (%1): + Limit &download speed: form-label @@ -652,7 +652,7 @@ - Limit &upload speed (%1): + Limit &upload speed: form-label @@ -748,6 +748,9 @@ + + minute(s) + 1 diff --git a/qt/mainwin.ui b/qt/mainwin.ui index d27abb475..71a2cacce 100644 --- a/qt/mainwin.ui +++ b/qt/mainwin.ui @@ -425,6 +425,9 @@ Ctrl+Q + + QAction::QuitRole + @@ -446,6 +449,9 @@ &Preferences + + QAction::PreferencesRole + @@ -588,6 +594,9 @@ &About + + QAction::AboutRole + diff --git a/qt/prefs-dialog.cc b/qt/prefs-dialog.cc index 0810bffaa..8dfc424d1 100644 --- a/qt/prefs-dialog.cc +++ b/qt/prefs-dialog.cc @@ -213,18 +213,21 @@ PrefsDialog::altSpeedDaysEdited (int i) QWidget * PrefsDialog::createSpeedTab () { - QWidget *l, *r; + QWidget * l; + QSpinBox * r; HIG * hig = new HIG (this); hig->addSectionTitle (tr ("Speed Limits")); const QString speed_K_str = Formatter::unitStr (Formatter::SPEED, Formatter::KB); - l = checkBoxNew (tr ("&Upload (%1):").arg (speed_K_str), Prefs::USPEED_ENABLED); + l = checkBoxNew (tr ("&Upload:"), Prefs::USPEED_ENABLED); r = spinBoxNew (Prefs::USPEED, 0, INT_MAX, 5); + r->setSuffix (QString::fromLatin1 (" %1").arg (speed_K_str)); hig->addRow (l, r); enableBuddyWhenChecked (qobject_cast(l), r); - l = checkBoxNew (tr ("&Download (%1):").arg (speed_K_str), Prefs::DSPEED_ENABLED); + l = checkBoxNew (tr ("&Download:"), Prefs::DSPEED_ENABLED); r = spinBoxNew (Prefs::DSPEED, 0, INT_MAX, 5); + r->setSuffix (QString::fromLatin1 (" %1").arg (speed_K_str)); hig->addRow (l, r); enableBuddyWhenChecked (qobject_cast(l), r); @@ -244,12 +247,14 @@ PrefsDialog::createSpeedTab () QString s = tr ("Override normal speed limits manually or at scheduled times"); hig->addWideControl (new QLabel (s)); - s = tr ("U&pload (%1):").arg (speed_K_str); + s = tr ("U&pload:"); r = spinBoxNew (Prefs::ALT_SPEED_LIMIT_UP, 0, INT_MAX, 5); + r->setSuffix (QString::fromLatin1 (" %1").arg (speed_K_str)); hig->addRow (s, r); - s = tr ("Do&wnload (%1):").arg (speed_K_str); + s = tr ("Do&wnload:"); r = spinBoxNew (Prefs::ALT_SPEED_LIMIT_DOWN, 0, INT_MAX, 5); + r->setSuffix (QString::fromLatin1 (" %1").arg (speed_K_str)); hig->addRow (s, r); QCheckBox * c = checkBoxNew (tr ("&Scheduled times:"), Prefs::ALT_SPEED_LIMIT_TIME_ENABLED); @@ -525,6 +530,14 @@ PrefsDialog::onLocationSelected (const QString& path, int key) setPref (key, path); } +void +PrefsDialog::onIdleLimitChanged () +{ + const QString unitsSuffix = tr (" minute(s)", 0, myIdleLimitSpin->value ()); + if (myIdleLimitSpin->suffix () != unitsSuffix) + myIdleLimitSpin->setSuffix (unitsSuffix); +} + QWidget * PrefsDialog::createSeedingTab () { @@ -544,10 +557,12 @@ PrefsDialog::createSeedingTab () hig->addRow (l, r); enableBuddyWhenChecked (qobject_cast(l), r); - l = checkBoxNew (tr ("Stop seeding if idle for &N minutes:"), Prefs::IDLE_LIMIT_ENABLED); - r = spinBoxNew (Prefs::IDLE_LIMIT, 1, INT_MAX, 5); + l = checkBoxNew (tr ("Stop seedi&ng if idle for:"), Prefs::IDLE_LIMIT_ENABLED); + r = myIdleLimitSpin = spinBoxNew (Prefs::IDLE_LIMIT, 1, INT_MAX, 5); + connect (r, SIGNAL (valueChanged (int)), this, SLOT (onIdleLimitChanged ())); hig->addRow (l, r); enableBuddyWhenChecked (qobject_cast(l), r); + onIdleLimitChanged (); hig->finish (); return hig; diff --git a/qt/prefs-dialog.h b/qt/prefs-dialog.h index e17a288d0..45a4fecd1 100644 --- a/qt/prefs-dialog.h +++ b/qt/prefs-dialog.h @@ -53,6 +53,7 @@ class PrefsDialog: public QDialog void onLocationSelected (const QString&, int key); void onPortTested (bool); void onPortTest (); + void onIdleLimitChanged (); void onUpdateBlocklistClicked (); void onUpdateBlocklistCancelled (); @@ -107,6 +108,7 @@ class PrefsDialog: public QDialog QWidgetList myBlockWidgets; QWidgetList myUnsupportedWhenRemote; FreespaceLabel * myFreespaceLabel; + QSpinBox * myIdleLimitSpin; int myBlocklistHttpTag; QHttp * myBlocklistHttp; diff --git a/qt/translations/transmission_en.ts b/qt/translations/transmission_en.ts index 54b6e8233..cf326ec3b 100644 --- a/qt/translations/transmission_en.ts +++ b/qt/translations/transmission_en.ts @@ -120,7 +120,7 @@ - + Encrypted connection @@ -175,8 +175,16 @@ Peer is an incoming connection + + + minute(s) + + minute + minutes + + - + Error @@ -188,7 +196,7 @@ - + %1 (100%) @@ -218,12 +226,12 @@ - + Peer is connected over uTP - + Add URL @@ -286,11 +294,11 @@ - Stop seeding if idle for N minutes: + Stop seeding if idle for: - + Up @@ -474,12 +482,12 @@ - Limit &download speed (%1): + Limit &download speed: - Limit &upload speed (%1): + Limit &upload speed: @@ -503,7 +511,7 @@ - + Peer Connections @@ -516,7 +524,17 @@ FileAdded - + + Add Torrent + + + + + <p><b>Unable to add "%1".</b></p><p>It is a duplicate of "%2" which is already added.</p> + + + + Error Adding Torrent @@ -575,7 +593,7 @@ FilterBar - + All @@ -606,7 +624,7 @@ - + Show %Ln of: @@ -614,7 +632,7 @@ - + Verifying @@ -624,7 +642,7 @@ - + Show: @@ -1378,7 +1396,7 @@ To add another primary URL, add it after a blank line. MyApp - + Transmission is a file sharing program. When you run a torrent, its data will be made available to others by means of upload. Any content you share is your sole responsibility. @@ -1504,17 +1522,17 @@ To add another primary URL, add it after a blank line. - + Speed Limits - + <small>Override normal speed limits manually or at scheduled times</small> - + &Scheduled times: @@ -1590,12 +1608,12 @@ To add another primary URL, add it after a blank line. - + Status unknown - + &Port for incoming connections: @@ -1619,8 +1637,16 @@ To add another primary URL, add it after a blank line. uTP is a tool for reducing network congestion. + + + minute(s) + + minute + minutes + + - + Automatically add .torrent files &from: @@ -1678,17 +1704,17 @@ To add another primary URL, add it after a blank line. - + Pick a &random port every time Transmission is started - + Limits - + Maximum peers per &torrent: @@ -1736,23 +1762,23 @@ To add another primary URL, add it after a blank line. - + Privacy - + &to - + Desktop - + Show Transmission icon in the &notification area @@ -1777,7 +1803,7 @@ To add another primary URL, add it after a blank line. - + Remote Control @@ -1797,32 +1823,32 @@ To add another primary URL, add it after a blank line. - - &Upload (%1): + + &Upload: - - &Download (%1): + + &Download: - + Alternative Speed Limits - U&pload (%1): + U&pload: - - Do&wnload (%1): + + Do&wnload: - + Start &minimized in notification area @@ -1912,7 +1938,7 @@ To add another primary URL, add it after a blank line. - + Adding @@ -1942,17 +1968,17 @@ To add another primary URL, add it after a blank line. - + Stop seeding at &ratio: - Stop seeding if idle for &N minutes: + Stop seedi&ng if idle for: - + Transmission Preferences @@ -2034,47 +2060,47 @@ To add another primary URL, add it after a blank line. SessionDialog - + Change Session - + Source - + Start &Local Session - + Connect to &Remote Session - + &Host: - + &Port: - + &Authentication required - + &Username: - + Pass&word: @@ -2121,7 +2147,7 @@ To add another primary URL, add it after a blank line. - + Started %n time(s) Started %n time diff --git a/qt/translations/transmission_es.ts b/qt/translations/transmission_es.ts index ea77fd32f..68425a197 100644 --- a/qt/translations/transmission_es.ts +++ b/qt/translations/transmission_es.ts @@ -132,7 +132,7 @@ Creado por %1 el %2 - + Encrypted connection Conexión cifrada @@ -193,7 +193,7 @@ Compañero conectado usando uTP - + %1 (100%) @@ -212,8 +212,16 @@ %1 (%2 corrupt) %1 (%2 corrupto) + + + minute(s) + + minuto + minutos + + - + Add URL Agregar URL @@ -288,11 +296,11 @@ - Stop seeding if idle for N minutes: - Dejar de compartir si está inactivo N minutos: + Stop seeding if idle for: + Dejar de compartir si está inactivo: - + Up Subiendo @@ -476,13 +484,13 @@ - Limit &download speed (%1): - Limitar &descarga (%1): + Limit &download speed: + Limitar &descarga: - Limit &upload speed (%1): - Limitar &carga (%1): + Limit &upload speed: + Limitar &carga: @@ -505,7 +513,7 @@ &Inactivo: - + Peer Connections Conexiones de compañeros @@ -518,7 +526,17 @@ FileAdded - + + Add Torrent + Agregar torrent + + + + <p><b>Unable to add "%1".</b></p><p>It is a duplicate of "%2" which is already added.</p> + + + + Error Adding Torrent Error al añadir torrent @@ -577,7 +595,7 @@ FilterBar - + All Todos @@ -618,7 +636,7 @@ Error - + Show: Mostrar: @@ -1380,7 +1398,7 @@ Para agregar otro URL primario, agrueguelo después de una línea en blanco. MyApp - + Transmission is a file sharing program. When you run a torrent, its data will be made available to others by means of upload. Any content you share is your sole responsibility. @@ -1506,17 +1524,17 @@ Para agregar otro URL primario, agrueguelo después de una línea en blanco.Direcciones: - + Speed Limits Límites de velocidad - + <small>Override normal speed limits manually or at scheduled times</small> <small>Ignorar límites normales de velocidad manualmente o en horarios programados</small> - + &Scheduled times: &Horarios programados: @@ -1582,12 +1600,12 @@ Para agregar otro URL primario, agrueguelo después de una línea en blanco. - + Desktop Escritorio - + Show Transmission icon in the &notification area Mostrar ícono de Transmission en el área de &notificaciones @@ -1624,12 +1642,12 @@ Para agregar otro URL primario, agrueguelo después de una línea en blanco. - + Status unknown Estado desconocido - + &Port for incoming connections: &Puerto para recibir conexiones: @@ -1644,17 +1662,17 @@ Para agregar otro URL primario, agrueguelo después de una línea en blanco.Usar UPnP o NAT-PMP para obtener un puerto y su mapeo de mi ruteador - + Limits Límites - + Maximum peers per &torrent: Máximo número de compañeros por &torrent: - + Remote Control @@ -1674,32 +1692,32 @@ Para agregar otro URL primario, agrueguelo después de una línea en blanco. - - &Upload (%1): + + &Upload: - - &Download (%1): + + &Download: - + Alternative Speed Limits - U&pload (%1): + U&pload: - - Do&wnload (%1): + + Do&wnload: - + Notification @@ -1781,8 +1799,16 @@ Para agregar otro URL primario, agrueguelo después de una línea en blanco.Enable &automatic updates Habilitar actualización &automática + + + minute(s) + + minuto + minutos + + - + Automatically add .torrent files &from: @@ -1837,7 +1863,7 @@ Para agregar otro URL primario, agrueguelo después de una línea en blanco. - + Allow encryption Permitir cifrado @@ -1907,7 +1933,7 @@ Para agregar otro URL primario, agrueguelo después de una línea en blanco.Seleccionar destino - + Adding Al agregar @@ -1932,17 +1958,17 @@ Para agregar otro URL primario, agrueguelo después de una línea en blanco.Ejecutar scrip&t cuando el torrent esté completo: - + Stop seeding at &ratio: Dejar de compartir llegando a &proporción: - Stop seeding if idle for &N minutes: - Dejar de compartir si está inactivo &N minutos: + Stop seedi&ng if idle for: + Dejar de compartir si está i&nactivo: - + Incomplete Incompleto @@ -2037,48 +2063,48 @@ Para agregar otro URL primario, agrueguelo después de una línea en blanco. SessionDialog - + Change Session Cambiar sesión - + Source Fuente - + Start &Local Session Empezar sesión &local - + Connect to &Remote Session Conectar a sesión &remota - + &Host: Servidor / Compu / etc. &Anfitrión: - + &Port: &Puerto: - + &Authentication required &Autentificación requerida - + &Username: &Nombre de usuario - + Pass&word: &Clave de usuario: @@ -2125,7 +2151,7 @@ Para agregar otro URL primario, agrueguelo después de una línea en blanco.Total - + Started %n time(s) diff --git a/qt/translations/transmission_eu.ts b/qt/translations/transmission_eu.ts index 600866ac4..108db851a 100644 --- a/qt/translations/transmission_eu.ts +++ b/qt/translations/transmission_eu.ts @@ -120,7 +120,7 @@ Sortua: %1 %2-an - + Encrypted connection Elkarkaketa enkriptatua @@ -175,8 +175,16 @@ Peer is an incoming connection Hartzailea barrurako elkarketa bat da + + + minute(s) + + minutu + minutu + + - + Error @@ -188,7 +196,7 @@ Aztarnaria jadanik badago. - + %1 (100%) %1 (100%) @@ -218,12 +226,12 @@ E/G - + Peer is connected over uTP Hartzailea uTP bidez elkarketaturik dago - + Add URL Gehitu URL-a @@ -286,11 +294,11 @@ - Stop seeding if idle for N minutes: - Gelditu emaritza jardungabe badago Z minutuz: + Stop seeding if idle for: + Gelditu emaritza jardungabe badago: - + Up Igotzen @@ -474,13 +482,13 @@ - Limit &download speed (%1): - &Mugatu jeisketa abiadura (%1): + Limit &download speed: + &Mugatu jeisketa abiadura: - Limit &upload speed (%1): - M&ugatu igoera abiadura (%1): + Limit &upload speed: + M&ugatu igoera abiadura: @@ -503,7 +511,7 @@ &Jardungabe: - + Peer Connections Hartzaile Elkarketak @@ -516,7 +524,17 @@ FileAdded - + + Add Torrent + Gehitu Torrenta + + + + <p><b>Unable to add "%1".</b></p><p>It is a duplicate of "%2" which is already added.</p> + + + + Error Adding Torrent Akatsa Torrenta Gehitzerakoan @@ -575,7 +593,7 @@ FilterBar - + All Denak @@ -616,7 +634,7 @@ Akatsa - + Show: Erakutsi: @@ -1378,7 +1396,7 @@ Beste lehen URL bat gehitzeko, gehitu hura lerro huts baten ondoren. MyApp - + Transmission is a file sharing program. When you run a torrent, its data will be made available to others by means of upload. Any content you share is your sole responsibility. Transmission agiri elkarbanatze programa bat da. Torrent bati ekiten diozunean, bere datuak eskuragarri daude besteentzat igoera bidez. Elkarbanatzen duzun edozein eduki zeure erantzukizunezkoa besterik ez da. @@ -1504,12 +1522,12 @@ Beste lehen URL bat gehitzeko, gehitu hura lerro huts baten ondoren.Helbideak: - + Speed Limits Abiadura Mugak - + <small>Override normal speed limits manually or at scheduled times</small> <small>Ezeztatu abiadura muga arruntak eskuz edo denborak egitarautuz</small> @@ -1519,7 +1537,7 @@ Beste lehen URL bat gehitzeko, gehitu hura lerro huts baten ondoren.Aurkerazko Abiadura Mugak - + &Scheduled times: Egitarautu &denborak: @@ -1620,12 +1638,12 @@ Beste lehen URL bat gehitzeko, gehitu hura lerro huts baten ondoren. - + Status unknown Egoera ezezaguna - + &Port for incoming connections: &Barrurako elkarketentzako ataka: @@ -1659,8 +1677,16 @@ Beste lehen URL bat gehitzeko, gehitu hura lerro huts baten ondoren.Encryption Enkriptaketa + + + minute(s) + + minutu + minutu + + - + Automatically add .torrent files &from: &Berezgaitasunez gehitu .torrent agiriak hemendik: @@ -1718,17 +1744,17 @@ Beste lehen URL bat gehitzeko, gehitu hura lerro huts baten ondoren. - + Pick a &random port every time Transmission is started &Hautatu zorizko ataka bat Transmission abiarazten den bakoitzean - + Limits Mugak - + Maximum peers per &torrent: Gehinezko hartzaile &torrenteko: @@ -1776,23 +1802,23 @@ Beste lehen URL bat gehitzeko, gehitu hura lerro huts baten ondoren.Beharrezkoa enkriptaketa - + Privacy Pribatutasuna - + &to &hona - + Desktop Mahaigaina - + Show Transmission icon in the &notification area Erakutsi &Transmission ikurra jakinarazpen eremuan @@ -1822,7 +1848,7 @@ Beste lehen URL bat gehitzeko, gehitu hura lerro huts baten ondoren.Enkriptaketa &modua: - + Remote Control Hurruneko Agintea @@ -1842,27 +1868,27 @@ Beste lehen URL bat gehitzeko, gehitu hura lerro huts baten ondoren.A&halbidetu IP helbide hauek bakarrik: - - &Download (%1): - &Jeitsera (%1): + + &Download: + &Jeitsera: - - &Upload (%1): - &Igoera (%1): + + &Upload: + &Igoera: - - Do&wnload (%1): - J&eitsiera (%1): + + Do&wnload: + J&eitsiera: - - U&pload (%1): - I&goera (%1): + + U&pload: + I&goera: - + Use PE&X to find more peers Erabili PE&X hartzaile gehiago bilatzeko @@ -1912,7 +1938,7 @@ Beste lehen URL bat gehitzeko, gehitu hura lerro huts baten ondoren.Hautatu Helmuga - + Adding Gehiketa @@ -1937,17 +1963,17 @@ Beste lehen URL bat gehitzeko, gehitu hura lerro huts baten ondoren.&Deitu eskripta torrenta osatutakoan: - + Stop seeding at &ratio: &Gelditu emaritza maila honetan: - Stop seeding if idle for &N minutes: - Gelditu emaritza jardungabe badago &Z minutuz: + Stop seedi&ng if idle for: + Gelditu emarit&za jardungabe badago: - + Incomplete Osatugabe @@ -2034,47 +2060,47 @@ Beste lehen URL bat gehitzeko, gehitu hura lerro huts baten ondoren. SessionDialog - + Change Session Aldatu Saioa - + Source Iturburua - + Start &Local Session Hasi &Tokiko Saioa - + Connect to &Remote Session Elkarketatu H&urruneko Saiora - + &Host: &Hostalaria: - + &Port: &Ataka: - + &Authentication required &Egiaztapena beharrezkoa - + &Username: Erabiltzaile-&izena: - + Pass&word: &Sarhitza: @@ -2121,7 +2147,7 @@ Beste lehen URL bat gehitzeko, gehitu hura lerro huts baten ondoren.Guztira - + Started %n time(s) Hasita %n aldiz diff --git a/qt/translations/transmission_fr.ts b/qt/translations/transmission_fr.ts index 093895642..329fc1bb4 100644 --- a/qt/translations/transmission_fr.ts +++ b/qt/translations/transmission_fr.ts @@ -120,7 +120,7 @@ Créé par: %1 %2-an - + Encrypted connection Connexion chiffrée @@ -175,8 +175,16 @@ Peer is an incoming connection Le pair est une connexion entrante + + + minute(s) + + minute + minutes + + - + Error @@ -188,7 +196,7 @@ Le traqueur existe déjà. - + %1 (100%) %1 (100%) @@ -218,12 +226,12 @@ N/D - + Peer is connected over uTP Pair connecté via uTP - + Add URL Ajouter une URL @@ -286,11 +294,11 @@ - Stop seeding if idle for N minutes: - Arrêter de partager si inactif depuis N minutes: + Stop seeding if idle for: + Arrêter de partager si inactif depuis: - + Up Émission @@ -474,13 +482,13 @@ - Limit &download speed (%1): - Limiter le taux de &réception (%1): + Limit &download speed: + Limiter le taux de &réception: - Limit &upload speed (%1): - Limiter le taux d'&émission (%1): + Limit &upload speed: + Limiter le taux d'&émission: @@ -503,7 +511,7 @@ &Inactif: - + Peer Connections Connexions aux pairs @@ -516,7 +524,17 @@ FileAdded - + + Add Torrent + Ajouter un torrent + + + + <p><b>Unable to add "%1".</b></p><p>It is a duplicate of "%2" which is already added.</p> + + + + Error Adding Torrent Erreur lors de l'ajout du torrent @@ -575,7 +593,7 @@ FilterBar - + All Tous @@ -616,7 +634,7 @@ Erreur - + Show: Afficher: @@ -1378,7 +1396,7 @@ Pour ajouter une autre URL primaire, placez-la après une ligne vide. MyApp - + Transmission is a file sharing program. When you run a torrent, its data will be made available to others by means of upload. Any content you share is your sole responsibility. Transmission est un programme de partage de fichiers. Lorsque vous exécutez un torrent, ses données sont mises à disposition des autres par envoi de données. Le partage de tout contenu est votre entière responsabilité. @@ -1504,17 +1522,17 @@ Pour ajouter une autre URL primaire, placez-la après une ligne vide.Adresses: - + Speed Limits Limites de vitesse - + <small>Override normal speed limits manually or at scheduled times</small> <small>Outrepasser les limites de vitesse manuellement ou aux périodes définies</small> - + &Scheduled times: Périodes &définies: @@ -1615,12 +1633,12 @@ Pour ajouter une autre URL primaire, placez-la après une ligne vide. - + Status unknown État inconnu - + &Port for incoming connections: &Port pour les connexions entrantes: @@ -1654,8 +1672,16 @@ Pour ajouter une autre URL primaire, placez-la après une ligne vide.Encryption Chiffrement + + + minute(s) + + minute + minutes + + - + Automatically add .torrent files &from: Ajouter automatiquement les fichiers .torrent dans: @@ -1713,17 +1739,17 @@ Pour ajouter une autre URL primaire, placez-la après une ligne vide. - + Pick a &random port every time Transmission is started Choisir un port au hasa&rd à chaque lancement de Transmission - + Limits Limites - + Maximum peers per &torrent: Nombre maximum de pairs par torrent: @@ -1771,23 +1797,23 @@ Pour ajouter une autre URL primaire, placez-la après une ligne vide.Exiger le chiffrement - + Privacy Confidentialité - + &to &à - + Desktop Bureau - + Show Transmission icon in the &notification area Afficher l'icône de Transmission dans la zone de &notification @@ -1817,7 +1843,7 @@ Pour ajouter une autre URL primaire, placez-la après une ligne vide.Mode de &chiffrement: - + Remote Control Contrôle à distance @@ -1837,24 +1863,24 @@ Pour ajouter une autre URL primaire, placez-la après une ligne vide.N'autoriser que ces adresses IP: - - &Download (%1): - Réception (%1): + + &Download: + Réception: - - &Upload (%1): - Envoi (%1): + + &Upload: + Envoi: - - Do&wnload (%1): - Réception (%1): + + Do&wnload: + Réception: - - U&pload (%1): - Envoi (%1): + + U&pload: + Envoi: @@ -1862,7 +1888,7 @@ Pour ajouter une autre URL primaire, placez-la après une ligne vide.Limites de vitesse alternatives - + Use PE&X to find more peers Utiliser PE&X pour trouver d'autres pairs @@ -1912,7 +1938,7 @@ Pour ajouter une autre URL primaire, placez-la après une ligne vide.Selectionner la destination - + Adding Ajout @@ -1937,17 +1963,17 @@ Pour ajouter une autre URL primaire, placez-la après une ligne vide.Appeler ce scrip&t quand un torrent est terminé: - + Stop seeding at &ratio: Partager jusqu’à un &ratio de: - Stop seeding if idle for &N minutes: - Arrêter de partager si inactif depuis &N minutes: + Stop seedi&ng if idle for: + Arrêter de partager si i&nactif depuis: - + Incomplete Incomplet @@ -2035,47 +2061,47 @@ Pour ajouter une autre URL primaire, placez-la après une ligne vide. SessionDialog - + Change Session Changer de session - + Source Source - + Start &Local Session Démarrer une session &locale - + Connect to &Remote Session Se connecter à une session à &distance - + &Host: &Hôte: - + &Port: &Port: - + &Authentication required &Authentification requise - + &Username: Nom d'&utilisateur: - + Pass&word: &Mot de passe: @@ -2122,7 +2148,7 @@ Pour ajouter une autre URL primaire, placez-la après une ligne vide.Total - + Started %n time(s) diff --git a/qt/translations/transmission_hu.ts b/qt/translations/transmission_hu.ts index c229dc0a0..ec3cb303a 100644 --- a/qt/translations/transmission_hu.ts +++ b/qt/translations/transmission_hu.ts @@ -148,7 +148,7 @@ Készítette: %1 ekkor: %2 - + Encrypted connection Titkosított kapcsolat @@ -208,8 +208,15 @@ Peer is connected over uTP A partner uTP-n keresztül kapcsolódik + + + minute(s) + + perc + + - + Add URL URL hozzáadása @@ -284,11 +291,11 @@ - Stop seeding if idle for N minutes: - Seedelés befejezése ha inaktív a torrent N percig: + Stop seeding if idle for: + Seedelés befejezése ha inaktív a torrent: - + Up Fel @@ -472,13 +479,13 @@ - Limit &download speed (%1): - &Letöltési sebességkorlát (%1): + Limit &download speed: + &Letöltési sebességkorlát: - Limit &upload speed (%1): - &Feltöltési sebességkorlát (%1): + Limit &upload speed: + &Feltöltési sebességkorlát: @@ -501,7 +508,7 @@ &Inaktív: - + Peer Connections Csatlakozott partnerek @@ -514,7 +521,17 @@ FileAdded - + + Add Torrent + Torrent hozzáadása + + + + <p><b>Unable to add "%1".</b></p><p>It is a duplicate of "%2" which is already added.</p> + + + + Error Adding Torrent Hiba a torrent hozzáadásakor @@ -573,7 +590,7 @@ FilterBar - + All Mind @@ -614,7 +631,7 @@ Hiba - + Show: Mutat: @@ -1369,7 +1386,7 @@ Másik elsődleges URL-t új sorba írva adhatsz hozzá. MyApp - + Transmission is a file sharing program. When you run a torrent, its data will be made available to others by means of upload. Any content you share is your sole responsibility. @@ -1495,12 +1512,12 @@ Másik elsődleges URL-t új sorba írva adhatsz hozzá. Címek: - + Speed Limits Sebesség korlátok - + Alternative Speed Limits Alternatív sebességkorlátok @@ -1510,7 +1527,7 @@ Másik elsődleges URL-t új sorba írva adhatsz hozzá. <small>Normál sebességlimitek felülbírálása kézzel vagy ütemezve a következő időszakokban</small> - + &Scheduled times: Ü&temezett időszakok: @@ -1576,12 +1593,12 @@ Másik elsődleges URL-t új sorba írva adhatsz hozzá. - + Desktop Asztal - + Show Transmission icon in the &notification area Ikon mutatása a &tálcán @@ -1612,12 +1629,12 @@ Másik elsődleges URL-t új sorba írva adhatsz hozzá. - + Status unknown Státusz nem ismert - + &Port for incoming connections: &Bejövő kapcsolatok portja: @@ -1632,17 +1649,17 @@ Másik elsődleges URL-t új sorba írva adhatsz hozzá. UPnP vagy NAT-PMP port &forward a routerhez - + Limits Korlátok - + Maximum peers per &torrent: Partnerek maximális száma &torrentenként:: - + Remote Control @@ -1662,27 +1679,27 @@ Másik elsődleges URL-t új sorba írva adhatsz hozzá. - - &Upload (%1): + + &Upload: - - &Download (%1): + + &Download: - - U&pload (%1): + + U&pload: - - Do&wnload (%1): + + Do&wnload: - + Start &minimized in notification area @@ -1768,8 +1785,15 @@ Másik elsődleges URL-t új sorba írva adhatsz hozzá. Enable &automatic updates &Automata frissítések engedélyezése + + + minute(s) + + perc + + - + Automatically add .torrent files &from: @@ -1824,7 +1848,7 @@ Másik elsődleges URL-t új sorba írva adhatsz hozzá. - + Allow encryption Titkosítás engedélyezése @@ -1894,22 +1918,22 @@ Másik elsődleges URL-t új sorba írva adhatsz hozzá. Válaszd ki a cél könyvtárat - + Adding Hozzáadá - + Stop seeding at &ratio: Seedelés befejezése ha elérte az &arányt: - Stop seeding if idle for &N minutes: - Seedelés befejezése ha inaktív a torrent &N percig: + Stop seedi&ng if idle for: + Seedelés befejezése ha i&naktív a torrent: - + Save to &Location: Mentés &ide: @@ -2023,47 +2047,47 @@ Másik elsődleges URL-t új sorba írva adhatsz hozzá. SessionDialog - + Change Session Munkamenet váltás - + Source Forrás - + Start &Local Session &Helyi munkamenet indítása - + Connect to &Remote Session Csatalkozás &távoli munkamenethez - + &Host: &Hoszt: - + &Port: &Port: - + &Authentication required &Authentikáció kötelező - + &Username: &Felhasználónév: - + Pass&word: &Jelszó: @@ -2110,7 +2134,7 @@ Másik elsődleges URL-t új sorba írva adhatsz hozzá. Összesen - + Started %n time(s) diff --git a/qt/translations/transmission_kk.ts b/qt/translations/transmission_kk.ts index 826ee54df..896bd6c89 100644 --- a/qt/translations/transmission_kk.ts +++ b/qt/translations/transmission_kk.ts @@ -120,7 +120,7 @@ %1 жасаған, %2 - + Encrypted connection Шифрленген байланыс @@ -175,8 +175,16 @@ Peer is an incoming connection Торап қабылдау режимінде жұмыс істеп тұр + + + minute(s) + + минут + минут + + - + Error @@ -188,7 +196,7 @@ - + %1 (100%) %1 (100%) @@ -218,12 +226,12 @@ Анықталмаған - + Peer is connected over uTP - + Add URL URL қосу @@ -286,11 +294,11 @@ - Stop seeding if idle for N minutes: - N мин белсенді емес болса, таратуды тоқтату: + Stop seeding if idle for: + Белсенді емес болса, таратуды тоқтату: - + Up Тарату @@ -474,13 +482,13 @@ - Limit &download speed (%1): - Қаб&ылдау жылдамдығын шектеу (%1): + Limit &download speed: + Қаб&ылдау жылдамдығын шектеу: - Limit &upload speed (%1): - Тар&ату жылдамдығын шектеу (%1): + Limit &upload speed: + Тар&ату жылдамдығын шектеу: @@ -503,7 +511,7 @@ Кү&ту: - + Peer Connections Тораптармен байланыстар @@ -516,7 +524,17 @@ FileAdded - + + Add Torrent + Торрентті қосу + + + + <p><b>Unable to add "%1".</b></p><p>It is a duplicate of "%2" which is already added.</p> + + + + Error Adding Torrent @@ -575,7 +593,7 @@ FilterBar - + All Барлығы @@ -606,7 +624,7 @@ Аяқталған - + Show %Ln of: @@ -614,7 +632,7 @@ - + Verifying Тексерілуде @@ -624,7 +642,7 @@ Қате - + Show: Көрсету: @@ -1379,7 +1397,7 @@ To add another primary URL, add it after a blank line. MyApp - + Transmission is a file sharing program. When you run a torrent, its data will be made available to others by means of upload. Any content you share is your sole responsibility. @@ -1505,17 +1523,17 @@ To add another primary URL, add it after a blank line. Адрестері: - + Speed Limits Жылдамдықты шектеу - + <small>Override normal speed limits manually or at scheduled times</small> <small>Қалыпты жылдамдық шектеулерін қолмен не жоспарланған уақытта сөндіреді</small> - + &Scheduled times: &Жоспарланған уақыты: @@ -1591,12 +1609,12 @@ To add another primary URL, add it after a blank line. - + Status unknown Қалып-күйі белгісіз - + &Port for incoming connections: Кіріс байланыстар &порты: @@ -1620,8 +1638,16 @@ To add another primary URL, add it after a blank line. uTP is a tool for reducing network congestion. + + + minute(s) + + минут + минут + + - + Automatically add .torrent files &from: @@ -1679,17 +1705,17 @@ To add another primary URL, add it after a blank line. - + Pick a &random port every time Transmission is started Әр р&ет Transmission қосылғанда, кездейсоқ портты таңдау - + Limits Шектеулер - + Maximum peers per &torrent: Торрент үшін макси&малды тораптар саны: @@ -1737,23 +1763,23 @@ To add another primary URL, add it after a blank line. Шифрлеуді талап ету - + Privacy Жекелігі - + &to - + Desktop Жұмыс үстелі - + Show Transmission icon in the &notification area Transmission таңбашас&ын трейде көрсету @@ -1778,7 +1804,7 @@ To add another primary URL, add it after a blank line. &Шифрлеу режимі: - + Remote Control @@ -1798,32 +1824,32 @@ To add another primary URL, add it after a blank line. - - &Upload (%1): + + &Upload: - - &Download (%1): + + &Download: - + Alternative Speed Limits - U&pload (%1): + U&pload: - - Do&wnload (%1): + + Do&wnload: - + Start &minimized in notification area @@ -1913,7 +1939,7 @@ To add another primary URL, add it after a blank line. Мақсат бумасын таңдаңыз - + Adding Қосу @@ -1943,17 +1969,17 @@ To add another primary URL, add it after a blank line. Торрент аяқталған кезде скрипт&ті орындау: - + Stop seeding at &ratio: Рейтинг &мәні келесідей болғанда, таратуды тоқтату: - Stop seeding if idle for &N minutes: - N &мин белсенді емес болса, таратуды тоқтату: + Stop seedi&ng if idle for: + Белсенді е&мес болса, таратуды тоқтату: - + Transmission Preferences Transmission баптаулары @@ -2035,47 +2061,47 @@ To add another primary URL, add it after a blank line. SessionDialog - + Change Session - + Source Қайдан - + Start &Local Session - + Connect to &Remote Session - + &Host: - + &Port: - + &Authentication required - + &Username: &Пайдаланушы аты: - + Pass&word: Па&роль: @@ -2122,7 +2148,7 @@ To add another primary URL, add it after a blank line. Жалпы - + Started %n time(s) diff --git a/qt/translations/transmission_lt.ts b/qt/translations/transmission_lt.ts index 3ba20d0a0..0ef294278 100644 --- a/qt/translations/transmission_lt.ts +++ b/qt/translations/transmission_lt.ts @@ -43,17 +43,26 @@ Details - + % % - + Active now aktyvus dabar + + + minute(s) + + minutė + minutės + minučių + + - + Add URL URL pridėjimas @@ -63,7 +72,7 @@ Įveskite pridedamo sekiklio skelbimo URL: - + Address Adresas @@ -73,7 +82,7 @@ Programa - + Created by %1 sukurtas naudojant „%1“ @@ -88,17 +97,17 @@ sukurtas %1 - + Down Atsiųsta - + Downloading from this peer Atsiunčiama iš šio siuntėjo - + Edit URL URL taisymas @@ -108,25 +117,25 @@ Pataisykite sekiklio skelbimo URL: - + Encrypted connection Šifruota jungtis - + Error Klaida - + Finished baigtas - + High aukštas @@ -142,7 +151,7 @@ žemas - + Mixed įvairuoja @@ -157,22 +166,22 @@ nėra - + Normal normalus - + Optimistic unchoke Optimistinis atlaisvinimas - + Paused pristabdytas - + Peer has unchoked us, but we're not interested Siuntėjas mus atlaisvino, tačiau tai mūsų nedomina @@ -197,7 +206,7 @@ Siuntėjas aptiktas naudojant „Peer Exchange“ (PEX) - + Private to this tracker -- DHT and PEX disabled privatus šiam sekikliui – DHT ir PEX funkcijos išjungtos @@ -207,7 +216,7 @@ viešas torentas - + Seed regardless of activity skleisti nepaisant aktyvumo @@ -217,19 +226,19 @@ skleisti nepaisant santykio - + Status Būsena - + Stop seeding at ratio: nebeskleisti esant santykiui: - Stop seeding if idle for N minutes: - nebeskleisti, jei pasyvus N minučių: + Stop seeding if idle for: + nebeskleisti, jei pasyvus: @@ -237,29 +246,29 @@ Šis sekiklis jau naudojamas. - + Unknown nežinomas - + Up Išsiųsta - + Uploading to peer Išsiunčiama šiam siuntėjui - + Use Global Settings naudoti visuotinius parametrus - + We unchoked this peer, but they're not interested Mes atlaisvinome šį siuntėją, tačiau tai jo nedomina @@ -274,7 +283,7 @@ Siųstume šiam siuntėjui, jei jis paprašytų - + %1 (%2 corrupt) %1 (%2 sugadinta) @@ -476,13 +485,13 @@ - Limit &download speed (%1): - Riboti &atsiuntimo greitį (%1): + Limit &download speed: + Riboti &atsiuntimo greitį: - Limit &upload speed (%1): - Riboti i&šsiuntimo greitį (%1): + Limit &upload speed: + Riboti i&šsiuntimo greitį: @@ -505,7 +514,7 @@ &Pasyvumas: - + Peer Connections Siuntėjų ryšiai @@ -518,7 +527,17 @@ FileAdded - + + Add Torrent + Torento pridėjimas + + + + <p><b>Unable to add "%1".</b></p><p>It is a duplicate of "%2" which is already added.</p> + + + + Error Adding Torrent Klaida pridedant torentą @@ -577,7 +596,7 @@ FilterBar - + Active aktyvius @@ -598,7 +617,7 @@ klaidas - + Show %Ln of: @@ -607,7 +626,7 @@ - + Finished užbaigtus @@ -622,12 +641,12 @@ skleidžiamus - + Show: Rodyti: - + Verifying tikrinamus @@ -1387,7 +1406,7 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil MyApp - + Transmission is a file sharing program. When you run a torrent, its data will be made available to others by means of upload. Any content you share is your sole responsibility. @@ -1488,7 +1507,7 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil PrefsDialog - + &Encryption mode: Pozicija dėl &šifravimo: @@ -1498,12 +1517,12 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil Šiomis &dienomis: - + &Open web client &Atverti saityno sąsają - + &Port for incoming connections: Įeinantiems ryšiams naudotinas &prievadas: @@ -1518,12 +1537,12 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil At&naujinti - + &Username: Naudotojo &vardas: - + &to i&ki @@ -1542,7 +1561,7 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil - + <i>Blocklist contains %Ln rules</i> <i>Blokavimo sąraše yra %Ln taisyklė</i> @@ -1551,53 +1570,53 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil - + <small>Override normal speed limits manually or at scheduled times</small> <small>Taikomi vietoje įprastų greičio ribojimų rankiniu būdu arba numatytuoju laiku</small> - + Adding Pridėjimas - + Addresses: Ad&resai: - + Allow encryption leisti šifravimą - + Append ".&part" to incomplete files' names Nebaigtų failų varduose naudoti „.part“ &prievardį - + Blocklist Blokavimo sąrašas - + Call scrip&t when torrent is completed: Baigus siųsti torentą, vykdyti s&cenarijų: - + DHT is a tool for finding peers without a tracker. DHT – tai priemonė, skirta siuntėjams be sekiklio rasti. - + Desktop Aplinka - + Enable &automatic updates Įjungti &automatinius naujinimus @@ -1617,7 +1636,7 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil kasdien - + Remote Control @@ -1637,32 +1656,32 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil - - &Upload (%1): + + &Upload: - - &Download (%1): + + &Download: - + Alternative Speed Limits - U&pload (%1): + U&pload: - - Do&wnload (%1): + + Do&wnload: - + Friday penktadieniais @@ -1706,8 +1725,17 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil Encryption + + + minute(s) + + minutė + minutės + minučių + + - + Automatically add .torrent files &from: @@ -1747,17 +1775,17 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil Įrašyti &nebaigtus torentus į: - + LPD is a tool for finding peers on your local network. VSA – tai priemonė, skirta siuntėjams Jūsų vietiniame tinkle rasti. - + Limits Ribojimai - + Maximum peers &overall: &Daugiausiai galimų siuntėjų iš viso: @@ -1772,7 +1800,7 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil pirmadieniais - + Network Tinklas @@ -1787,7 +1815,7 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil Nepalaikoma nuotolinių seansų - + Options Nuostatos @@ -1797,12 +1825,12 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil PEX – tai priemonė, skirta apsikeisti siuntėjų sąrašais su siuntėjais, prie kurių esate prisijungę. - + Pass&word: &Slaptažodis: - + Pick a &random port every time Transmission is started Pasirinkti &atsitiktinį prievadą kaskart paleidus „Transmission“ @@ -1822,7 +1850,7 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil teikti pirmenybę šifravimui - + Downloading @@ -1837,7 +1865,7 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil Privatumas - + Require encryption reikalauti šifravimo @@ -1847,12 +1875,12 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil šeštadieniais - + Save to &Location: Įrašyti &vietoje: - + Select "Torrent Done" Script Parinkite „torentas baigtas“ scenarijų @@ -1877,33 +1905,33 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil Rodyti „Transmission“ piktogramą pranešimų &srityje - + Speed Greitis - + Speed Limits Greičio ribojimai - - + + Status unknown Būsena nežinoma - + Stop seeding at &ratio: Nebeskleisti esant &santykiui: - Stop seeding if idle for &N minutes: - Nebeskleisti jei pasyvus N &minučių: + Stop seedi&ng if idle for: + Nebeskleisti jei &pasyvus: - + Sunday sekmadieniais @@ -1918,12 +1946,12 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil ketvirtadieniais - + Transmission Preferences „Transmission“ nuostatos - + Tuesday antradieniais @@ -1938,12 +1966,12 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil Naudoti &vietinių siuntėjų aptikimo metodą papildomiems siuntėjams rasti - + Use &authentication Reikalauti &tapatybės nustatymo - + Use PE&X to find more peers Naudoti PE&X papildomiems siuntėjams rasti @@ -1978,7 +2006,7 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil Tikrinamas TCP prievadas… - + Incomplete Nebaigtas @@ -2045,47 +2073,47 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil SessionDialog - + &Authentication required Reikia patvirtinti &tapatybę - + &Host: &Mazgas: - + &Port: &Prievadas: - + &Username: &Naudotojo vardas: - + Change Session Seanso keitimas - + Connect to &Remote Session &Jungtis prie nuotolinio seanso - + Pass&word: &Slaptažodis: - + Source Seanso kilmė - + Start &Local Session Pradėti &vietinį seansą @@ -2110,7 +2138,7 @@ Papildomą pirminį URL adresą galite įvesti, palikę prieš jį tuščią eil Naudojimosi trukmė: - + Started %n time(s) diff --git a/qt/translations/transmission_pt_BR.ts b/qt/translations/transmission_pt_BR.ts index a1879ac2c..f5e6af97b 100644 --- a/qt/translations/transmission_pt_BR.ts +++ b/qt/translations/transmission_pt_BR.ts @@ -120,7 +120,7 @@ Criado pelo %1 em %2 - + Encrypted connection Conexão criptografada @@ -180,8 +180,16 @@ Peer is connected over uTP + + + minute(s) + + minuto + minutos + + - + Error @@ -193,7 +201,7 @@ O rastreador já existe - + %1 (100%) @@ -223,7 +231,7 @@ - + Add URL @@ -286,11 +294,11 @@ - Stop seeding if idle for N minutes: - Parar de semear se ocioso por N minutos: + Stop seeding if idle for: + Parar de semear se ocioso por: - + Up Enviando @@ -474,13 +482,13 @@ - Limit &download speed (%1): - Limitar velocidade de download (%1): + Limit &download speed: + Limitar velocidade de download: - Limit &upload speed (%1): - Limitar velocidade de upload (%1): + Limit &upload speed: + Limitar velocidade de upload: @@ -503,7 +511,7 @@ Ocioso: - + Peer Connections Conexões da Fonte @@ -516,7 +524,17 @@ FileAdded - + + Add Torrent + Adicionar Torrent + + + + <p><b>Unable to add "%1".</b></p><p>It is a duplicate of "%2" which is already added.</p> + + + + Error Adding Torrent @@ -575,7 +593,7 @@ FilterBar - + All @@ -606,7 +624,7 @@ Concluído - + Show %Ln of: @@ -614,7 +632,7 @@ - + Verifying @@ -624,7 +642,7 @@ Erro - + Show: @@ -1379,7 +1397,7 @@ Adicione outra URL primária depois de uma linha em branco. MyApp - + Transmission is a file sharing program. When you run a torrent, its data will be made available to others by means of upload. Any content you share is your sole responsibility. @@ -1505,17 +1523,17 @@ Adicione outra URL primária depois de uma linha em branco. Endereços: - + Speed Limits Limites de Velocidade - + <small>Override normal speed limits manually or at scheduled times</small> <small>Sobrepõe os limites normais manualmente ou em tempos programados</small> - + &Scheduled times: Agendar: @@ -1591,12 +1609,12 @@ Adicione outra URL primária depois de uma linha em branco. - + Status unknown Estado desconhecido - + &Port for incoming connections: Porta para conexões de entrada: @@ -1620,8 +1638,16 @@ Adicione outra URL primária depois de uma linha em branco. uTP is a tool for reducing network congestion. + + + minute(s) + + minuto + minutos + + - + Automatically add .torrent files &from: @@ -1679,17 +1705,17 @@ Adicione outra URL primária depois de uma linha em branco. - + Pick a &random port every time Transmission is started Usar uma porta aleatória quando iniciar - + Limits Limites - + Maximum peers per &torrent: Máximo de fontes por torrent: @@ -1737,23 +1763,23 @@ Adicione outra URL primária depois de uma linha em branco. Exigir - + Privacy Privacidade - + &to - + Desktop - + Show Transmission icon in the &notification area @@ -1778,7 +1804,7 @@ Adicione outra URL primária depois de uma linha em branco. Criptografia: - + Remote Control @@ -1798,32 +1824,32 @@ Adicione outra URL primária depois de uma linha em branco. - - &Upload (%1): + + &Upload: - - &Download (%1): + + &Download: - + Alternative Speed Limits - U&pload (%1): + U&pload: - - Do&wnload (%1): + + Do&wnload: - + Start &minimized in notification area @@ -1913,7 +1939,7 @@ Adicione outra URL primária depois de uma linha em branco. Seleciona o Destino - + Adding Adicionando @@ -1943,17 +1969,17 @@ Adicione outra URL primária depois de uma linha em branco. - + Stop seeding at &ratio: Parar de semear na proporção: - Stop seeding if idle for &N minutes: - Parar de semear se ocioso por N minutos: + Stop seedi&ng if idle for: + Parar de semear se ocioso por: - + Transmission Preferences Preferências do Transmission @@ -2035,47 +2061,47 @@ Adicione outra URL primária depois de uma linha em branco. SessionDialog - + Change Session Alterar Sessão - + Source Fonte - + Start &Local Session Iniciar Sessão Local - + Connect to &Remote Session Conectar numa Sessão Remota - + &Host: Servidor: - + &Port: Porta: - + &Authentication required Requer autenticação - + &Username: Usuário: - + Pass&word: Senha: @@ -2122,7 +2148,7 @@ Adicione outra URL primária depois de uma linha em branco. Total - + Started %n time(s) diff --git a/qt/translations/transmission_ru.ts b/qt/translations/transmission_ru.ts index 135ec07dd..c706f6a2f 100644 --- a/qt/translations/transmission_ru.ts +++ b/qt/translations/transmission_ru.ts @@ -133,7 +133,7 @@ Создан %1 на %2 - + Encrypted connection Зашифрованное соединение @@ -189,7 +189,7 @@ Узел работает в режиме приема - + %1 (100%) @@ -209,12 +209,21 @@ %1 (%2 поврежден) - + Peer is connected over uTP + + + minute(s) + + минута + минуты + минут + + - + Add URL Добавить URL @@ -289,11 +298,11 @@ - Stop seeding if idle for N minutes: - Прекратить раздачу при простое N мин.: + Stop seeding if idle for: + Прекратить раздачу при простое: - + Up Раздача @@ -477,13 +486,13 @@ - Limit &download speed (%1): - Ограничить скорость &загрузки (%1): + Limit &download speed: + Ограничить скорость &загрузки: - Limit &upload speed (%1): - Ограничить скорость &раздачи (%1): + Limit &upload speed: + Ограничить скорость &раздачи: @@ -506,7 +515,7 @@ &Ожидание: - + Peer Connections Соединения с узлами @@ -519,7 +528,17 @@ FileAdded - + + Add Torrent + Добавить торрент + + + + <p><b>Unable to add "%1".</b></p><p>It is a duplicate of "%2" which is already added.</p> + + + + Error Adding Torrent Ошибка добавления торрента @@ -578,7 +597,7 @@ FilterBar - + All Все @@ -609,7 +628,7 @@ Завершенные - + Show %Ln of: @@ -618,7 +637,7 @@ - + Verifying Проверки @@ -628,7 +647,7 @@ Ошибки - + Show: Показать: @@ -1388,7 +1407,7 @@ To add another primary URL, add it after a blank line. MyApp - + Transmission is a file sharing program. When you run a torrent, its data will be made available to others by means of upload. Any content you share is your sole responsibility. @@ -1514,17 +1533,17 @@ To add another primary URL, add it after a blank line. Адреса: - + Speed Limits Ограничения скорости - + <small>Override normal speed limits manually or at scheduled times</small> <small>Изменение нормального ограничения скорости вручную или по расписанию</small> - + &Scheduled times: &По расписанию: @@ -1590,12 +1609,12 @@ To add another primary URL, add it after a blank line. - + Desktop Рабочий стол - + Show Transmission icon in the &notification area Показать значок Transmission в о&бласти уведомлений @@ -1621,12 +1640,12 @@ To add another primary URL, add it after a blank line. - + Status unknown Статус неизвестен - + &Port for incoming connections: &Порт для входящих подключений: @@ -1641,12 +1660,12 @@ To add another primary URL, add it after a blank line. Использовать пере&направление портов UPnP или NAT-PMP - + Limits Ограничения - + Maximum peers per &torrent: &Максимальное количество узлов на торрент: @@ -1690,7 +1709,7 @@ To add another primary URL, add it after a blank line. Разрешить &автоматическое обновление - + Automatically add .torrent files &from: @@ -1740,7 +1759,7 @@ To add another primary URL, add it after a blank line. Безопасность - + Allow encryption Разрешить шифрование @@ -1765,7 +1784,7 @@ To add another primary URL, add it after a blank line. Исполь&зовать PEX-протокол обмена списками участников - + Remote Control @@ -1785,32 +1804,32 @@ To add another primary URL, add it after a blank line. - - &Upload (%1): + + &Upload: - - &Download (%1): + + &Download: - + Alternative Speed Limits - U&pload (%1): + U&pload: - - Do&wnload (%1): + + Do&wnload: - + Start &minimized in notification area @@ -1909,8 +1928,17 @@ To add another primary URL, add it after a blank line. Select Destination Выбор папки назначения + + + minute(s) + + минута + минуты + минут + + - + Adding Добавление @@ -1945,17 +1973,17 @@ To add another primary URL, add it after a blank line. Выполнить с&ценарий, после завершения загрузки: - + Stop seeding at &ratio: Прекратить &раздачу при рейтинге: - Stop seeding if idle for &N minutes: - Прекратить раздачу при простое N &мин.: + Stop seedi&ng if idle for: + Прекратить раздачу при &простое: - + Transmission Preferences Настройки Transmission @@ -2046,47 +2074,47 @@ To add another primary URL, add it after a blank line. SessionDialog - + Change Session Изменение сеанса - + Source Источник - + Start &Local Session &Запустить локальный сеанс - + Connect to &Remote Session Подключиться к &удаленному сеансу - + &Host: Уз&ел: - + &Port: &Порт: - + &Authentication required &Требуется проверка подлинности - + &Username: По&льзователь: - + Pass&word: Па&роль: @@ -2133,7 +2161,7 @@ To add another primary URL, add it after a blank line. Всего - + Started %n time(s) diff --git a/qt/translations/transmission_uk.ts b/qt/translations/transmission_uk.ts index 40b206686..7ac87e176 100644 --- a/qt/translations/transmission_uk.ts +++ b/qt/translations/transmission_uk.ts @@ -122,7 +122,7 @@ Створено автором %1 у %2 - + Encrypted connection Шифроване з'єднання @@ -177,8 +177,17 @@ Peer is an incoming connection Вузол є вхідним з’єднанням + + + minute(s) + + хвилина + хвилини + хвилин + + - + Error @@ -190,7 +199,7 @@ Трекер вже існує. - + %1 (100%) %1 (100%) @@ -220,12 +229,12 @@ н/д - + Peer is connected over uTP Вузол з'єднано за протоколом µTP - + Add URL Додати посилання @@ -288,11 +297,11 @@ - Stop seeding if idle for N minutes: - Припинити поширення, якщо не буде активності (у хвилинах): + Stop seeding if idle for: + Припинити поширення, якщо не буде активності: - + Up Вивант @@ -476,13 +485,13 @@ - Limit &download speed (%1): - Обмежити &швидкість завантаження (%1): + Limit &download speed: + Обмежити &швидкість завантаження: - Limit &upload speed (%1): - Обмежити шв&идкість відвантаження (%1): + Limit &upload speed: + Обмежити шв&идкість відвантаження: @@ -505,7 +514,7 @@ &Неактивність: - + Peer Connections Підключення вузлів @@ -518,7 +527,17 @@ FileAdded - + + Add Torrent + Додати торент + + + + <p><b>Unable to add "%1".</b></p><p>It is a duplicate of "%2" which is already added.</p> + + + + Error Adding Torrent Помилка під час додавання торенту @@ -577,7 +596,7 @@ FilterBar - + All Всі @@ -608,7 +627,7 @@ Завершено - + Show %Ln of: Показувати %Ln з: @@ -617,7 +636,7 @@ - + Verifying Перевірка @@ -627,7 +646,7 @@ Помилка - + Show: Показувати: @@ -1388,7 +1407,7 @@ To add another primary URL, add it after a blank line. MyApp - + Transmission is a file sharing program. When you run a torrent, its data will be made available to others by means of upload. Any content you share is your sole responsibility. Transmission — програма для поширення файлів. Дані завантаженого вами торента будуть доступні іншим користувачам, які зможуть завантажити ці дані на свої комп'ютери. Повна відповідальність за ваші рішення та виконання законодавства вашої країни покладається на вас і лише на вас. @@ -1514,17 +1533,17 @@ To add another primary URL, add it after a blank line. Адреси: - + Speed Limits Обмеження швидкості - + <small>Override normal speed limits manually or at scheduled times</small> <small>Не дотримуватись обмежень швидкості при встановленні обмежень вручну або за розкладом</small> - + &Scheduled times: З&гідно розкладу: @@ -1600,12 +1619,12 @@ To add another primary URL, add it after a blank line. - + Status unknown Невідомий статус - + &Port for incoming connections: &Порт для вхідних з’єднань: @@ -1629,8 +1648,17 @@ To add another primary URL, add it after a blank line. uTP is a tool for reducing network congestion. µTP — інструмент для запобігання перевантаженню мережі. + + + minute(s) + + хвилина + хвилини + хвилин + + - + Automatically add .torrent files &from: Автоматично &додавати торенти з: @@ -1689,17 +1717,17 @@ To add another primary URL, add it after a blank line. - + Pick a &random port every time Transmission is started Вибирати випадковий порт при кожному запу&ску Transmission - + Limits Обмеження - + Maximum peers per &torrent: Макс. кількість вузлів на &торент: @@ -1748,23 +1776,23 @@ To add another primary URL, add it after a blank line. Вимагати шифрування - + Privacy Конфіденційність - + &to &до - + Desktop Робочий стіл - + Show Transmission icon in the &notification area Показувати &значок Transmission в зоні сповіщення @@ -1789,7 +1817,7 @@ To add another primary URL, add it after a blank line. Режим &шифрування: - + Remote Control Віддалене керування @@ -1809,32 +1837,32 @@ To add another primary URL, add it after a blank line. Дозволити лише таким IP-&адресам: - - &Upload (%1): - Ві&двантаження (%1): + + &Upload: + Ві&двантаження: - - &Download (%1): - З&авантаження (%1): + + &Download: + З&авантаження: - + Alternative Speed Limits Альтернативні обмеження швидкості - U&pload (%1): - Ві&двантаження (%1): + U&pload: + Ві&двантаження: - - Do&wnload (%1): - З&авантаження (%1): + + Do&wnload: + З&авантаження: - + Start &minimized in notification area Запускати зверненим у системний лоток @@ -1924,7 +1952,7 @@ To add another primary URL, add it after a blank line. Виберіть призначення - + Adding Додавання @@ -1954,17 +1982,17 @@ To add another primary URL, add it after a blank line. Виконати с&ценарій, після завершення завантаження: - + Stop seeding at &ratio: Припинити поширення при співвідношенні: - Stop seeding if idle for &N minutes: - Припинити поширення, якщо не буде активності (у хвилинах): + Stop seedi&ng if idle for: + Припинити поширення, якщо не буде активності: - + Transmission Preferences Налаштування Transmission @@ -2046,47 +2074,47 @@ To add another primary URL, add it after a blank line. SessionDialog - + Change Session Змінити сеанс - + Source Джерело - + Start &Local Session Ро&зпочати локальний сеанс - + Connect to &Remote Session Під&ключитись до віддаленого сеансу - + &Host: &Хост: - + &Port: &Порт: - + &Authentication required Необхідна ав&торизація - + &Username: &Користувач: - + Pass&word: &Пароль: @@ -2133,7 +2161,7 @@ To add another primary URL, add it after a blank line. Загалом - + Started %n time(s) Запущено %n раз