Add a new plural form of an existing asset
POST https://localise.biz/api/assets/{id}/plurals
Creates a translatable asset that's a plural form of an existing asset.
The singular form asset specified as {id}
must already exist, but the plural form will created as a new asset.
You can bind an existing asset as the new plural by specifying {pid}
in which case {text}
will be ignored.
URI parameters
id
|
Asset ID |
string | required |
key
|
API key - required if not sent in Authorization header |
string | optional |
POST parameters
text
|
Initial source language translation of new asset (ignored when linking existing asset) |
string | optional |
pid
|
Unique asset ID for new or existing plural form (up to 999 bytes) |
string | optional |
Request headers
Authorization
|
API key sent as |
string | required if not in query |
Response
A single JSON-encoded Asset
object, which takes the following form:
{
"id": "", // Unique asset identifier
"type": "text", // Content type for translations
"context": "", // Optional context descriptor
"notes": "", // Optional notes for translators
"printf": "", // String formatting style
"created": "", // Time first added in UTC
"modified": "", // Time last modified in UTC
"plurals": 0, // Number of associated plural forms
"tags": [ /* Array of terms asset is tagged with */ ],
"aliases": { /* Hash of additional asset identifiers, e.g */ },
"progress": {
"translated": 0, // Number of locales for which a translation exists (including those flagged)
"untranslated": 0, // Number of locales that do not yet have a translation of this asset
"flagged": 0, // Number of locales whose translations are flagged as requiring attention
}
}