Skip to content
This repository has been archived by the owner on Apr 29, 2021. It is now read-only.

Commit

Permalink
Updated Localizable to 1.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Tue Topholm <tt@sugee.dk>
  • Loading branch information
ttopholm committed Aug 4, 2011
1 parent 9716a5b commit 76b1d0f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
3 changes: 2 additions & 1 deletion iPhone/Localizable/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ In the `da` file, you could write


## Adding the Plugin to your project ##
Copy the .h and .m file to the Plugins directory in your project. Copy the .js file to your www directory and reference it from your html file(s).
Copy the .h and .m file to the Plugins directory in your project. Copy the .js file to your www directory and reference it from your html file(s).
Remember to add it to the plugins in PhoneGap.plist


## Using the plugin ##
Expand Down
9 changes: 7 additions & 2 deletions iPhone/Localizable/localizable.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,13 @@
//

#import <Foundation/Foundation.h>
#import "PhoneGapCommand.h"

@interface localizable : PhoneGapCommand {}
#ifdef PHONEGAP_FRAMEWORK
#import <PhoneGap/PGPlugin.h>
#else
#import "PGPlugin.h"
#endif

@interface localizable : PGPlugin {}
- (void) get:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
@end

0 comments on commit 76b1d0f

Please sign in to comment.