POEditor API Client

API Client for the POEditor API

License

License

Categories

Categories

CLI User Interface
GroupId

GroupId

be.lukin.poeditor
ArtifactId

ArtifactId

poeditor-client
Last Version

Last Version

0.3.4
Release Date

Release Date

Type

Type

jar
Description

Description

POEditor API Client
API Client for the POEditor API
Project URL

Project URL

https://github.com/lukin0110/poeditor-java/
Source Code Management

Source Code Management

https://github.com/lukin0110/poeditor-java/

Download poeditor-client

How to add to project

<!-- https://jarcasting.com/artifacts/be.lukin.poeditor/poeditor-client/ -->
<dependency>
    <groupId>be.lukin.poeditor</groupId>
    <artifactId>poeditor-client</artifactId>
    <version>0.3.4</version>
</dependency>
// https://jarcasting.com/artifacts/be.lukin.poeditor/poeditor-client/
implementation 'be.lukin.poeditor:poeditor-client:0.3.4'
// https://jarcasting.com/artifacts/be.lukin.poeditor/poeditor-client/
implementation ("be.lukin.poeditor:poeditor-client:0.3.4")
'be.lukin.poeditor:poeditor-client:jar:0.3.4'
<dependency org="be.lukin.poeditor" name="poeditor-client" rev="0.3.4">
  <artifact name="poeditor-client" type="jar" />
</dependency>
@Grapes(
@Grab(group='be.lukin.poeditor', module='poeditor-client', version='0.3.4')
)
libraryDependencies += "be.lukin.poeditor" % "poeditor-client" % "0.3.4"
[be.lukin.poeditor/poeditor-client "0.3.4"]

Dependencies

compile (3)

Group / Artifact Type Version
com.squareup.retrofit : retrofit jar 1.9.0
com.squareup.okhttp : okhttp-urlconnection jar 2.0.0
com.squareup.okhttp : okhttp jar 2.0.0

test (1)

Group / Artifact Type Version
junit : junit jar 4.11

Project Modules

There are no modules declared in this project.

poeditor-java

Build Status

Client for the POEditor API in Java. Manage translation projects in Java.

To suggest changes, please submit an Issue or Pull Request.

Download

Download the latest JAR or grab via Maven:

<dependency>
  <groupId>be.lukin.poeditor</groupId>
  <artifactId>poeditor-client</artifactId>
  <version>0.3.3</version>
</dependency>

or gradle:

compile 'be.lukin.poeditor:poeditor-java:0.3.3'

Usage

// Create a client with your api key
POEditorClient client = new POEditorClient("your api key");

// Fetch project details
Project project = client.client.getProject("your project Id");

// Download a translation for Android
File french = client.export("your project Id", "fr", FileTypeEnum.APPLE_STRINGS, null);

// Upload a language and do not overwrite existing translations, only a new translations
File dutch = new File("./android.xml");
UploadDetails details1 = client.uploadLanguage("your project Id", dutch, "nl", false);

// Upload terms
UploadDetails details2 = client.uploadTerms("your project Id", dutch);

License

Copyright 2015 Maarten Huijsmans

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Versions

Version
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.0
0.1.1
0.1.0