Fixed Strings

This commit is contained in:
GRMrGecko 2010-08-19 15:16:15 -05:00
parent 01ad268b9c
commit 3912df53a2
6 changed files with 22 additions and 32 deletions

View File

@ -44,7 +44,7 @@ NSString * const MGMSaveLastDate = @"MGMSaveLastDate";
[hideMenu setTitle:[NSString stringWithFormat:MGMLocalized(@"Hide %@", nil), applicationName]]; [hideMenu setTitle:[NSString stringWithFormat:MGMLocalized(@"Hide %@", nil), applicationName]];
[quitMenu setTitle:[NSString stringWithFormat:MGMLocalized(@"Quit %@", nil), applicationName]]; [quitMenu setTitle:[NSString stringWithFormat:MGMLocalized(@"Quit %@", nil), applicationName]];
[titleField setStringValue:[NSString stringWithFormat:MGMLocalized(@"%@ crashed the last time you ran it. Would you like to send me a crash report so I can look into it?", nil), applicationName]]; [titleField setStringValue:[NSString stringWithFormat:MGMLocalized(@"%@ crashed the last time you ran it. Would you like to send me a crash report so I can look into it?", nil), applicationName]];
[dateField setStringValue:[reportDate descriptionWithCalendarFormat:MGMLocalized(@"%a, %m/%d/%Y %I:%M:%S %p", nil) timeZone:nil locale:nil]]; [dateField setStringValue:[reportDate descriptionWithCalendarFormat:MGMLocalized(@"%a, %m/%d/%Y %I:%M:%S %p", nil) timeZone:nil locale:nil]];
[mainWindow setTitle:[NSString stringWithFormat:MGMLocalized(@"%@ Crashed", nil), applicationName]]; [mainWindow setTitle:[NSString stringWithFormat:MGMLocalized(@"%@ Crashed", nil), applicationName]];

View File

@ -1,38 +1,28 @@
/* No comment */ /* GeckoReporter Strings. */
"Hide %@" = "Hide %@";
/* No comment */ /* Menus */
"Quit %@" = "Quit %@"; "Hide %@" = "Hide %@";
"Quit %@" = "Quit %@";
/* No comment */ /* Error messages */
"Sending..." = "Sending..."; "Error could not send crash report." = "Error could not send crash report.";
"Error could not send bug report." = "Error could not send bug report.";
"Error could not send message." = "Error could not send message.";
/* No comment */ /* Incomplete fields message */
"%@ Crashed" = "%@ Crashed"; "Fields not filled." = "Fields not filled.";
"Please be sure all fields are filled as all fields are required." = "Please be sure all fields are filled as all fields are required.";
/* No comment */ /* Status not 200 error */
"%@ crashed the last time you ran it. Would you like to send me a crash report so I can look into it?" = "%@ crashed the last time you ran it. Would you like to send me a crash report so I can look into it?"; "Status Code Returned %d" = "Status Code Returned %d";
/* No comment */ /* Buttons */
"%a, %m/%d/%Y %I:%M:%S %p" = "%a, %m/%d/%Y %I:%M:%S %p"; "Ok" = "Ok";
"Sending..." = "Sending...";
/* No comment */ /* Interface */
"Ok" = "Ok";
/* No comment */ /* Crash Report */
"Error could not send crash report." = "Error could not send crash report."; "%@ Crashed" = "%@ Crashed";
"%@ crashed the last time you ran it. Would you like to send me a crash report so I can look into it?" = "%@ crashed the last time you ran it. Would you like to send me a crash report so I can look into it?";
/* No comment */ "%a, %m/%d/%Y %I:%M:%S %p" = "%a, %m/%d/%Y %I:%M:%S %p";
"Error could not send bug report." = "Error could not send bug report.";
/* No comment */
"Error could not send message." = "Error could not send message.";
/* No comment */
"Fields not filled." = "Fields not filled.";
/* No comment */
"Please be sure all fields are filled as all fields are required." = "Please be sure all fields are filled as all fields are required.";
/* No comment */
"Status Code Returned %d" = "Status Code Returned %d";