Changeset 5451
- Timestamp:
- Mar 30, 2008, 3:40:13 AM (14 years ago)
- Location:
- trunk/macosx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/English.lproj/Localizable.strings
r5396 r5451 17 17 "%@ (%@ verified)" = "%1$@ (%2$@ verified)"; 18 18 19 /* Prefs -> blocklist -> message */ 20 "%@ IP address rules in list" = "%@ IP address rules in list"; 21 19 22 /* Torrent -> progress string */ 20 23 "%@ of %@ (%.2f%%)" = "%1$@ of %2$@ (%3$.2f%%)"; … … 29 32 "%@ selected, uploaded %@ (Ratio: %@)" = "%1$@ selected, uploaded %2$@ (Ratio: %3$@)"; 30 33 34 /* stats total */ 35 "%@ total" = "%@ total"; 36 31 37 /* Inspector -> selected torrents */ 32 38 "%@ Total" = "%@ Total"; 33 34 /* stats total */35 "%@ total" = "%@ total";36 39 37 40 /* Inspector -> Activity tab -> have */ … … 142 145 "\"%@\" cannot be used. The transfer will be paused." = "\"%@\" cannot be used. The transfer will be paused."; 143 146 147 /* Prefs -> blocklist -> message */ 148 "A blocklist must first be downloaded" = "A blocklist must first be downloaded"; 149 144 150 /* Create torrent -> file already exists warning -> warning */ 145 151 "A file with the name \"%@\" already exists in the directory \"%@\". Choose a new name or directory to create the torrent." = "A file with the name \"%1$@\" already exists in the directory \"%2$@\". Choose a new name or directory to create the torrent."; … … 198 204 /* Confirm Quit panel -> button 199 205 Removal confirm panel -> button 206 Blocklist -> cancel button 200 207 Add torrent -> same name -> button */ 201 208 "Cancel" = "Cancel"; … … 252 259 "Confirm removal of \"%@\" from the transfer list." = "Confirm removal of \"%@\" from the transfer list."; 253 260 261 /* Blocklist -> message */ 262 "Connecting to site" = "Connecting to site"; 263 254 264 /* Torrent file copy alert -> title */ 255 265 "Copy of \"%@\" Cannot Be Created" = "Copy of \"%@\" Cannot Be Created"; 256 266 257 267 /* Create torrent -> failed -> warning */ 258 "Could not read \"%s\": %s " = "Could not read \"%1$s\": %2$s";268 "Could not read \"%s\": %s." = "Could not read \"%1$s\": %2$s."; 259 269 260 270 /* Create torrent -> failed -> warning */ 261 "Could not write \"%s\": %s " = "Could not write \"%1$s\": %2$s";271 "Could not write \"%s\": %s." = "Could not write \"%1$s\": %2$s."; 262 272 263 273 /* Create toolbar item -> label */ … … 266 276 /* Drag overlay -> file */ 267 277 "Create a Torrent File" = "Create a Torrent File"; 268 269 /* Create toolbar item -> tooltip */270 "Create torrent file" = "Create torrent file";271 278 272 279 /* Create torrent -> select file … … 274 281 "Create Torrent File" = "Create Torrent File"; 275 282 283 /* Create toolbar item -> tooltip */ 284 "Create torrent file" = "Create torrent file"; 285 276 286 /* Create torrent -> failed -> title */ 277 287 "Creation of \"%@\" failed." = "Creation of \"%@\" failed."; … … 311 321 "Download Complete" = "Download Complete"; 312 322 323 /* Blocklist -> message */ 324 "Download of the blocklist failed." = "Download of the blocklist failed."; 325 313 326 /* files tab -> tooltip */ 314 327 "Download Some" = "Download Some"; … … 322 335 /* Torrent -> status string */ 323 336 "Downloading" = "Downloading"; 337 338 /* Blocklist -> message */ 339 "Downloading blocklist" = "Downloading blocklist"; 324 340 325 341 /* Torrent -> status string */ … … 338 354 /* Message window -> level string 339 355 Torrent -> status string 340 Message window -> level */ 356 Message window -> level 357 Blocklist -> message */ 341 358 "Error" = "Error"; 342 359 … … 479 496 Download not a torrent -> button 480 497 About window -> license close button 498 Blocklist -> button 481 499 Open duplicate alert -> button 482 500 Create torrent -> zero size -> button … … 497 515 "Open Torrent Address" = "Open Torrent Address"; 498 516 517 /* Open toolbar item -> palette label */ 518 "Open Torrent Files" = "Open Torrent Files"; 519 499 520 /* Open toolbar item -> tooltip */ 500 521 "Open torrent files" = "Open torrent files"; 501 502 /* Open toolbar item -> palette label */503 "Open Torrent Files" = "Open Torrent Files";504 522 505 523 /* Open address toolbar item -> tooltip */ -
trunk/macosx/PrefsController.m
r5444 r5451 379 379 NSNumberFormatter * numberFormatter = [[NSNumberFormatter alloc] init]; 380 380 [numberFormatter setNumberStyle: NSNumberFormatterDecimalStyle]; 381 [numberFormatter setMaximumFractionDigits: 0]; 381 382 NSString * countString = [numberFormatter stringFromNumber: [NSNumber numberWithInt: tr_blocklistGetRuleCount(fHandle)]]; 382 383 [numberFormatter release]; 383 384 384 [fBlocklistMessageField setStringValue: [NSString stringWithFormat: NSLocalizedString(@"%@ IP address es in list",385 [fBlocklistMessageField setStringValue: [NSString stringWithFormat: NSLocalizedString(@"%@ IP address rules in list", 385 386 "Prefs -> blocklist -> message"), countString]]; 386 387 }
Note: See TracChangeset
for help on using the changeset viewer.