idoodler / POEditor

An easy to use class to get localisations from POEditor.

Home Page:www.idoodler.de

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

POEditor

An easy to use class to get localisations from POEditor

An easy to use class to get localisations from POEditor. Just drag POEditor.h and POEditor.m to Xcode. Then import POEditor.h and start to use it.

I recogment to call

[POEditor downloadDataWithAuthenticationToken:@"Your_Token" andProjectID:@"Your_Project_ID"];

everytime the user starts the application, so the data always is up-to-date. Then you can replace

NSLocalizedString(@"String", nil)

with

[POEditor localizedStringWithKey:@"String"]

In addition you can get the contributors of your project. Just call

[POEditor contributors];

this will return a

NSDictionary

in this formate:

@{@[Name, Email], Language}

I implemented Xcodes dokumentation function to make it even easier to understand. Have fun and please make an issue if you miss a feature of find a bug. Have a nice day!

You may enable "Localized resources can be mixed" in info.plist

About

An easy to use class to get localisations from POEditor.

www.idoodler.de

License:MIT License


Languages

Language:Objective-C 100.0%