Please consider that API 2.0 is now the preferred version to be used. The old API will remain fully functional until the end of 2021.
Nome | Valor | Descrição |
---|---|---|
login obrigatório | string | O teu nome de login da Conta do Crowdin. |
name obrigatório | string | Nome do projeto. |
identificador obrigatório | string | Identificador do projeto. Should be unique among other Crowdin projects. |
source_language required | string | Source files language. Código de idioma do Crowdin. |
idiomas obrigatório | array | An array of language codes project should be translate to. |
join_policy required | string | Project join policy. Os valores aceitáveis são:
|
language_access_policy optional | string | Defines how project members can access target languages. Os valores aceitáveis são:
|
hide_duplicates optional | int | Defines whether duplicated strings should be displayed to translators or should be hidden and translated automatically. Os valores aceitáveis são:
|
export_translated_only optional | bool | Defines whether only translated strings will be exported to the final file. We do not recommend to set this option if you have text (*.html, *.txt, *.docx etc.) documents in your project since it may damage resulted files. Os valores aceitáveis são: 1 ou 0. |
export_approved_only optional | bool | If set to 1 only approved translations will be exported in resulted ZIP file. Os valores aceitáveis são: 1 ou 0. |
auto_translate_dialects optional | bool | Untranslated strings of dialect will be translated automatically in exported file, leveraging translations from main language. Os valores aceitáveis são: 1 ou 0. |
public_downloads optional | bool | Defines whether "Download" button visible to everyone on Crowdin webpages. Os valores aceitáveis são: 1 ou 0. |
use_global_tm optional | bool | Defines if translations would be leveraged from Crowdin Global Translation Memory. When using this option any translations made in your project will be commited to Crowdin Global TM automatically. Os valores aceitáveis são: 1 ou 0. |
logo optional | ficheiro | Project logo at Crowdin. |
cname optional | string | Custom domain name for Crowdin project. |
description optional | string | Project description. |
in_context optional | bool | Defines whether the In-Context should be active in the project. Os valores aceitáveis são: 1 ou 0. |
pseudo_language optional | string | Specify the language code for the In-Context's pseudo-language that will store some operational data. |
qa_checks optional | array | Defines whether the QA checks should be active in the project. As a key you must specify QA check parameter (An Overview of QA Check Parameters). Possible keys are:
Note! This option is available only for organization plans. |
webhook_file_translated optional | string | Open this URL when one of the project files is translated. URL will be opened with "project" - project identifier, "language" - language code, "file_id" - Crowdin file identifier and "file" - file name. |
webhook_file_proofread optional | string | Open this URL when one of the project files is proofread. URL will be opened with "project" - project identifier, "language" - language code, "file_id" - Crowdin file identifier and "file" - file name. |
webhook_project_translated optional | string | Open this URL when project translation is complete. URL will be opened with "project" - project identifier and "language" - language code. |
webhook_project_proofread optional | string | Open this URL when project proofreading is complete. URL will be opened with "project" - project identifier and "language" - language code. |
json opcional | string | Pode não conter valor. Define que a resposta deve estar no formato JSON. |
jsonp opcional | string | Nome da função de retorno de chamada. Define que a resposta deve estar no formato JSONP. |
Variáveis | ||
account-key | string | Crowdin account API key. |
<?xml version="1.0" encoding="UTF-8"?>
<project>
<success>1</success>
<invitation>http://translate.example.com/project/test-project-api/invite</invitation>
<url>http://translate.example.com/project/test-project-api</url>
<key>ca51cef8f852425496b1cdd3e86fea88</key>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project>
<success>1</success>
<invitation>
<item>
<language>Ucraniano</language>
<translator>http://translate.example.com/project/test-project-api/invite?d=7585662585d5d32307d3937373</translator>
<proofreader>http://translate.example.com/project/test-project-api/invite?d=3585k635r4d5d32307d3937373</proofreader>
</item>
</invitation>
<url>https://crowdin.com/project/test-project-api</url>
<key>d13720ba72204273af0321ca980945ec</key>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<error>
<code>12</code>
<message>Account key is invalid</message>
</error>
curl \
-F "login=admin" \
-F "logo=@logo.png" \
-F "name=This is a test project" \
-F "identifier=test-project-api" \
-F "description=Brief Description" \
-F "hide_duplicates=1" \
-F "cname=translate.example.com" \
-F "join_policy=open" \
-F "languages[]=fr" \
-F "languages[]=ru" \
-F "export_approved_only=1" \
-F "public_downloads=1" \
-F "source_language=en" \
-F "qa_checks[enabled]=1" \
https://api.crowdin.com/api/account/create-project?account-key={account-key}
<?php
$post_params = array();
$request_url = 'https://api.crowdin.com/api/account/create-project?account-key={account-key}';
$post_params['login'] = 'admin';
$post_params['name'] = 'Test Project';
$post_params['identifier'] = 'api-test-project';
$post_params['join_policy'] = 'private';
$post_params['languages[0]'] = 'fr';
$post_params['languages[1]'] = 'uk';
$post_params['source_language'] = 'en';
$post_params['qa_checks[enabled]'] = 1;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $request_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_params);
$result = curl_exec($ch);
curl_close($ch);
echo $result;