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 | Valore | Descrizione |
---|---|---|
file required | file | File in TMX, CSV or XLS/XLSX formats. See TMX 1.4b Specification. |
solo file first_line_contains_header CSV and XLS/XLSX opzionale | nella stringa | Usato caricando i file CSV (o XLS/XLSX) tramite API. Defines whether first line should be imported or it contains columns headers. Potrebbe non contenere il valore. |
schema solo file CSV e XLS/XLSX richiesto | nella stringa | Nota: Usato solo caricando il file CSV (o XLS/XLSX) per definire la mappatura delle colonne dei dati. Acceptable value is the combination of the following constants (%language_code% is a placeholder for your language code):
|
json opzionale | nella stringa | Potrebbe non contenere il valore. Definisce che la risposta dovrebbe essere in formato JSON. |
jsonp opzionale | nella stringa | Nome della funzione di callback. Definisce che la risposta dovrebbe essere in formato JSONP. |
Variabili | ||
identificatore-progetto | nella stringa | Identificatore progetto. |
accesso | nella stringa | Il tuo nome utente su Crowdin. |
chiave-profilo | nella stringa | La chiave API del tuo profilo. |
<?xml version="1.0" encoding="UTF-8"?>
<success>
</success>
<?xml version="1.0" encoding="UTF-8"?>
<error>
<code>3</code>
<message>Chiave API non valida</message>
</error>
curl \
-F "file=@translation-memory.tmx" \
https://api.crowdin.com/api/project/{project-identifier}/upload-tm?login={username}&account-key={account-key}
curl \
-F "file=@tm.csv" \
-F "first_line_contains_header=true" \
-F "scheme=phrase_en,none,phrase_uk,phrase_fr" \
https://api.crowdin.com/api/project/{project-identifier}/upload-tm?login={username}&account-key={account-key}
<?php
$post_params = array();
$request_url = 'https://api.crowdin.com/api/project/{project-identifier}/upload-tm?login={username}&account-key={account-key}';
if(function_exists('curl_file_create')) {
$post_params['file'] = curl_file_create('/home/crowdin/test.tmx');
} else {
$post_params['file'] = '@/home/crowdin/test.tmx';
}
$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;