Skip to content

Commit

Permalink
removing test keys
Browse files Browse the repository at this point in the history
  • Loading branch information
gpolak committed Aug 13, 2014
1 parent 5ac648a commit 632fcc8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions FGTranslatorDemo/FGTranslatorDemo/ViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ - (IBAction)translate:(UIButton *)sender
FGTranslator *translator;

// using Google Translate
static NSString *GOOGLE_API_KEY = @"AIzaSyDeI62kbspqeHX7mK9m9k4SY8x8YOCPSes";
static NSString *GOOGLE_API_KEY = @"your_key_here";
translator = [[FGTranslator alloc] initWithGoogleAPIKey:GOOGLE_API_KEY];

// using Bing Translate
// static NSString *BING_CLIENT_ID = @"fgtranslator_test";
// static NSString *BING_CLIENT_SECRET = @"Z3Doe5gMcquoJN3pJaJLejMKsP+1M0RrKDEuE+v4oBM=";
// static NSString *BING_CLIENT_ID = @"your_id_here";
// static NSString *BING_CLIENT_SECRET = @"your_secret_here";
// translator = [[FGTranslator alloc] initWithBingAzureClientId:BING_CLIENT_ID secret:BING_CLIENT_SECRET];

[translator translateText:self.textView.text
Expand Down

0 comments on commit 632fcc8

Please sign in to comment.