POEditor API Client

API Client for the POEditor API

Лицензия

Лицензия

Категории

Категории

CLI Взаимодействие с пользователем
Группа

Группа

be.lukin.poeditor
Идентификатор

Идентификатор

poeditor-client
Последняя версия

Последняя версия

0.3.4
Дата

Дата

Тип

Тип

jar
Описание

Описание

POEditor API Client
API Client for the POEditor API
Ссылка на сайт

Ссылка на сайт

https://github.com/lukin0110/poeditor-java/
Система контроля версий

Система контроля версий

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

Скачать poeditor-client

Как подключить последнюю версию

<!-- 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"]

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
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)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.11

Модули Проекта

Данный проект не имеет модулей.

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.

Версии библиотеки

Версия
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.0
0.1.1
0.1.0