Changeset 4251
- Timestamp:
- 06/08/06 19:47:30 (2 years ago)
- Files:
-
- WiredServer/trunk/PreferencePane/English.lproj/Localizable.strings (modified) (4 diffs)
- WiredServer/trunk/WCAccounts.m (modified) (1 diff)
- WiredServer/trunk/WCAccountsController.m (modified) (2 diffs)
- WiredServer/trunk/localize.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
WiredServer/trunk/PreferencePane/English.lproj/Localizable.strings
r4179 r4251 1 /* File comment(application, date) */ 1 /* bar */ 2 "foo" = "foo"; 3 4 /* File comment (application, date) */ 2 5 "# This file was generated by %@ at %@" = "# This file was generated by %1$@ at %2$@"; 6 7 /* File comment */ 8 "# This file was generated by %@ at %@\n" = "# This file was generated by %1$@ at %2$@\n"; 3 9 4 10 /* Certificate */ … … 10 16 /* Log header (log) */ 11 17 "===== Displaying %@ =====" = "===== Displaying %@ ====="; 18 19 /* Delete account dialog title (account) */ 20 "Are you sure you want to delete \"%@\"?" = "Are you sure you want to delete \"%@\"?"; 21 22 /* Delete account dialog button title */ 23 "Cancel" = "Cancel"; 24 25 /* Delete account dialog button title */ 26 "Delete" = "Delete"; 12 27 13 28 /* Download singular */ … … 34 49 /* Stop button title */ 35 50 "Stop" = "Stop"; 51 52 /* Delete account dialog description */ 53 "This cannot be undone." = "This cannot be undone."; 36 54 37 55 /* Upload singular */ … … 64 82 /* Version text field error (path) */ 65 83 "Wired server at %@ not found" = "Wired server at %@ not found"; 84 WiredServer/trunk/WCAccounts.m
r3950 r4251 578 578 579 579 comment = [NSSWF: 580 NSLS(@"# This file was generated by %@ at %@\n", @"File comment"),580 WCLS(@"# This file was generated by %@ at %@\n", @"File comment"), 581 581 [[NSBundle bundleForClass:[self class]] objectForInfoDictionaryKey:@"CFBundleExecutable"], 582 582 [[NSDate date] fullDateStringWithSeconds:YES]]; WiredServer/trunk/WCAccountsController.m
r4102 r4251 460 460 name = [[self _selectedAccount] name]; 461 461 462 NSBeginAlertSheet([NSSWF: NSLS(@"Are you sure you want to delete \"%@\"?", @"Delete account dialog title (account)"), name],463 NSLS(@"Delete", @"Delete account dialog button title"),464 NSLS(@"Cancel", @"Delete account dialog button title"),462 NSBeginAlertSheet([NSSWF:WCLS(@"Are you sure you want to delete \"%@\"?", @"Delete account dialog title (account)"), name], 463 WCLS(@"Delete", @"Delete account dialog button title"), 464 WCLS(@"Cancel", @"Delete account dialog button title"), 465 465 NULL, 466 466 [_deleteButton window], … … 469 469 NULL, 470 470 NULL, 471 NSLS(@"This cannot be undone.", @"Delete account dialog description"));471 WCLS(@"This cannot be undone.", @"Delete account dialog description")); 472 472 } 473 473 WiredServer/trunk/localize.sh
r3191 r4251 4 4 5 5 rm -f "$DST/English.lproj/Localizable.strings" 6 find . -name "*.[mc]" | xargs genstrings -s NSLS -s WPLS -s WCLS -q -o "$DST/English.lproj" -a 6 find . -name "*.[mc]" | xargs genstrings -s WPLS -q -o "$DST/English.lproj" 7 find . -name "*.[mc]" | xargs genstrings -s WCLS -q -o "$DST/English.lproj" -a 7 8 8 9 exit 0
