Changeset 4251

Show
Ignore:
Timestamp:
06/08/06 19:47:30 (2 years ago)
Author:
morris
Message:

Update localization

Files:

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) */ 
    25"# 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"; 
    39 
    410/* Certificate */ 
     
    1016/* Log header (log) */ 
    1117"===== 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"; 
    1227 
    1328/* Download singular */ 
     
    3449/* Stop button title */ 
    3550"Stop" = "Stop"; 
     51 
     52/* Delete account dialog description */ 
     53"This cannot be undone." = "This cannot be undone."; 
    3654 
    3755/* Upload singular */ 
     
    6482/* Version text field error (path) */ 
    6583"Wired server at %@ not found" = "Wired server at %@ not found"; 
     84 
  • WiredServer/trunk/WCAccounts.m

    r3950 r4251  
    578578         
    579579        comment = [NSSWF: 
    580                 NSLS(@"# This file was generated by %@ at %@\n", @"File comment"), 
     580                WCLS(@"# This file was generated by %@ at %@\n", @"File comment"), 
    581581                [[NSBundle bundleForClass:[self class]] objectForInfoDictionaryKey:@"CFBundleExecutable"], 
    582582                [[NSDate date] fullDateStringWithSeconds:YES]]; 
  • WiredServer/trunk/WCAccountsController.m

    r4102 r4251  
    460460        name = [[self _selectedAccount] name]; 
    461461 
    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"), 
    465465                                          NULL, 
    466466                                          [_deleteButton window], 
     
    469469                                          NULL, 
    470470                                          NULL, 
    471                                           NSLS(@"This cannot be undone.", @"Delete account dialog description")); 
     471                                          WCLS(@"This cannot be undone.", @"Delete account dialog description")); 
    472472} 
    473473 
  • WiredServer/trunk/localize.sh

    r3191 r4251  
    44 
    55rm -f "$DST/English.lproj/Localizable.strings" 
    6 find . -name "*.[mc]" | xargs genstrings -s NSLS -s WPLS -s WCLS -q -o "$DST/English.lproj" -a 
     6find . -name "*.[mc]" | xargs genstrings -s WPLS -q -o "$DST/English.lproj" 
     7find . -name "*.[mc]" | xargs genstrings -s WCLS -q -o "$DST/English.lproj" -a 
    78 
    89exit 0