• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/qt/

Lines Matching refs:tr

153     setWindowTitle( tr( "Torrent Properties" ) );
157 t->addTab( w = createInfoTab( ), tr( "Information" ) );
159 t->addTab( w = createPeersTab( ), tr( "Peers" ) );
161 t->addTab( w = createTrackerTab( ), tr( "Tracker" ) );
163 t->addTab( w = createFilesTab( ), tr( "Files" ) );
165 t->addTab( w = createOptionsTab( ), tr( "Options" ) );
341 const QString none = tr( "None" );
342 const QString mixed = tr( "Mixed" );
343 const QString unknown = tr( "Unknown" );
376 string = tr( "Finished" );
378 string = tr( "Paused" );
415 string = tr( "%1 (100%)" )
420 string = tr( "%1 of %2 (%3%)" )
427 string = tr( "%1 of %2 (%3%), %4 Unverified" )
461 string = tr( "%1 (%2 corrupt)" ).arg( dstr ).arg( fstr );
476 string = tr( "%1 (Ratio: %2)" )
520 string = tr( "Unknown" );
542 string = tr( "Active now" );
544 string = tr( "%1 ago" ).arg( Formatter::timeToString( seconds ) );
585 string = tr( "%1 (%Ln pieces @ %2)", "", pieces )
589 string = tr( "%1 (%Ln pieces)", "", pieces )
613 string = b ? tr( "Private to this tracker -- DHT and PEX disabled" )
614 : tr( "Public torrent" );
653 string = tr( "Created by %1" ).arg( creator );
655 string = tr( "Created on %1" ).arg( date );
657 string = tr( "N/A" );
659 string = tr( "Created by %1 on %2" ).arg( creator ).arg( date );
780 item->setToolTip( COL_LOCK, peer.isEncrypted ? tr( "Encrypted connection" ) : "" );
794 case 'O': txt = tr( "Optimistic unchoke" ); break;
795 case 'D': txt = tr( "Downloading from this peer" ); break;
796 case 'd': txt = tr( "We would download from this peer if they would let us" ); break;
797 case 'U': txt = tr( "Uploading to peer" ); break;
798 case 'u': txt = tr( "We would upload to this peer if they asked" ); break;
799 case 'K': txt = tr( "Peer has unchoked us, but we're not interested" ); break;
800 case '?': txt = tr( "We unchoked this peer, but they're not interested" ); break;
801 case 'E': txt = tr( "Encrypted connection" ); break;
802 case 'H': txt = tr( "Peer was discovered through DHT" ); break;
803 case 'X': txt = tr( "Peer was discovered through Peer Exchange (PEX)" ); break;
804 case 'I': txt = tr( "Peer is an incoming connection" ); break;
805 case 'T': txt = tr( "Peer is connected over uTP" ); break;
861 hig->addSectionTitle( tr( "Activity" ) );
862 hig->addRow( tr( "Have:" ), myHaveLabel = new SqueezeLabel );
863 hig->addRow( tr( "Availability:" ), myAvailabilityLabel = new SqueezeLabel );
864 hig->addRow( tr( "Downloaded:" ), myDownloadedLabel = new SqueezeLabel );
865 hig->addRow( tr( "Uploaded:" ), myUploadedLabel = new SqueezeLabel );
866 hig->addRow( tr( "State:" ), myStateLabel = new SqueezeLabel );
867 hig->addRow( tr( "Running time:" ), myRunTimeLabel = new SqueezeLabel );
868 hig->addRow( tr( "Remaining time:" ), myETALabel = new SqueezeLabel );
869 hig->addRow( tr( "Last activity:" ), myLastActivityLabel = new SqueezeLabel );
870 hig->addRow( tr( "Error:" ), myErrorLabel = new SqueezeLabel );
874 hig->addSectionTitle( tr( "Details" ) );
875 hig->addRow( tr( "Size:" ), mySizeLabel = new SqueezeLabel );
876 hig->addRow( tr( "Location:" ), myLocationLabel = new SqueezeLabel );
877 hig->addRow( tr( "Hash:" ), myHashLabel = new SqueezeLabel );
878 hig->addRow( tr( "Privacy:" ), myPrivacyLabel = new SqueezeLabel );
879 hig->addRow( tr( "Origin:" ), myOriginLabel = new SqueezeLabel );
881 hig->addRow( tr( "Comment:" ), myCommentBrowser = new QTextBrowser );
977 tr( "Add URL " ),
978 tr( "Add tracker announce URL:" ),
986 QMessageBox::warning( this, tr( "Error" ), tr( "Invalid URL \"%1\"" ).arg( url ) );
998 QMessageBox::warning( this, tr( "Error" ), tr( "Tracker already exists." ) );
1021 tr( "Edit URL " ),
1022 tr( "Edit tracker announce URL:" ),
1032 QMessageBox::warning( this, tr( "Error" ), tr( "Invalid URL \"%1\"" ).arg( newval ) );
1082 hig->addSectionTitle( tr( "Speed" ) );
1084 c = new QCheckBox( tr( "Honor global &limits" ) );
1089 c = new QCheckBox( tr( "Limit &download speed (%1):" ).arg( speed_K_str ) );
1101 c = new QCheckBox( tr( "Limit &upload speed (%1):" ).arg( speed_K_str ) );
1114 m->addItem( tr( "High" ), TR_PRI_HIGH );
1115 m->addItem( tr( "Normal" ), TR_PRI_NORMAL );
1116 m->addItem( tr( "Low" ), TR_PRI_LOW );
1118 hig->addRow( tr( "Torrent &priority:" ), m );
1122 hig->addSectionTitle( tr( "Seeding Limits" ) );
1127 m->addItem( tr( "Use Global Settings" ), TR_RATIOLIMIT_GLOBAL );
1128 m->addItem( tr( "Seed regardless of ratio" ), TR_RATIOLIMIT_UNLIMITED );
1129 m->addItem( tr( "Stop seeding at ratio:" ), TR_RATIOLIMIT_SINGLE );
1137 hig->addRow( tr( "&Ratio:" ), h, m );
1142 m->addItem( tr( "Use Global Settings" ), TR_IDLELIMIT_GLOBAL );
1143 m->addItem( tr( "Seed regardless of activity" ), TR_IDLELIMIT_UNLIMITED );
1144 m->addItem( tr( "Stop seeding if idle for N minutes:" ), TR_IDLELIMIT_SINGLE );
1153 hig->addRow( tr( "&Idle:" ), h, m );
1157 hig->addSectionTitle( tr( "Peer Connections" ) );
1165 hig->addRow( tr( "&Maximum peers:" ), s );
1240 c = new QCheckBox( tr( "Show &more details" ) );
1246 c = new QCheckBox( tr( "Show &backup trackers" ) );
1268 headers << QString() << tr("Up") << tr("Down") << tr("%") << tr("Status") << tr("Address") << tr("Client");