NSLocalizedString Problem

Habe ich:

-(IBAction)about {
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"About", @"Title of AlertView")
                                                    message:@"App name \n© My  name \n2010"
                                                   delegate:self
                                          cancelButtonTitle:NSLocalizedString(@"Back", @"Cancel Button Title")
                                          otherButtonTitles:nil];
    [alert show];
    [alert release];
}

Und in der Localizable.Streicher :

/* Title of AlertView */
"About" = "Über";
/* Cancel Button Title */
"Back" = "Zurück";

Mein problem: Wenn die Sprache Deutsch ist es Deutsch, aber wenn ich die Sprache auf Englisch um die Alarm-Ansicht wird immer noch Deutsch

Was ist falsch?

InformationsquelleAutor Leon | 2010-11-28

Schreibe einen Kommentar