Skip to content

Commit f2e2f3f

Browse files
author
Phrase
committed
1 parent a54757a commit f2e2f3f

File tree

229 files changed

+239
-233
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

229 files changed

+239
-233
lines changed

api/openapi.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11957,8 +11957,10 @@ paths:
1195711957
x-cli-version: "2.5"
1195811958
x-accepts: application/json
1195911959
post:
11960-
description: Upload a new language file. Creates necessary resources in your
11961-
project.
11960+
description: |
11961+
Upload a new language file. Creates necessary resources in your project.
11962+
11963+
Note: be aware of [upload limits](https://support.phrase.com/hc/en-us/articles/8548271212188-Phrase-Strings-Limits#file-size-upload-limits-0-0).
1196211964
operationId: upload/create
1196311965
parameters:
1196411966
- description: Two-Factor-Authentication token (optional)
@@ -35572,6 +35574,10 @@ components:
3557235574
translation_keys_updated:
3557335575
type: integer
3557435576
translation_keys_unmentioned:
35577+
description: |
35578+
The number of translation keys in the project that were not mentioned in the upload.
35579+
35580+
Note: this field is not calculated (and shows 0) if the upload contains more than 10,000 keys.
3557535581
type: integer
3557635582
translations_created:
3557735583
type: integer

docs/UploadSummary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
99
**localesCreated** | **Integer** | | [optional]
1010
**translationKeysCreated** | **Integer** | | [optional]
1111
**translationKeysUpdated** | **Integer** | | [optional]
12-
**translationKeysUnmentioned** | **Integer** | | [optional]
12+
**translationKeysUnmentioned** | **Integer** | The number of translation keys in the project that were not mentioned in the upload. Note: this field is not calculated (and shows 0) if the upload contains more than 10,000 keys. | [optional]
1313
**translationsCreated** | **Integer** | | [optional]
1414
**translationsUpdated** | **Integer** | | [optional]
1515
**tagsCreated** | **Integer** | | [optional]

docs/UploadsApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Method | HTTP request | Description
1515
1616
Upload a new file
1717

18-
Upload a new language file. Creates necessary resources in your project.
18+
Upload a new language file. Creates necessary resources in your project. Note: be aware of [upload limits](https://support.phrase.com/hc/en-us/articles/8548271212188-Phrase-Strings-Limits#file-size-upload-limits-0-0).
1919

2020
### Example
2121
```java

src/main/java/com/phrase/client/ApiException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import java.util.Map;
1616
import java.util.List;
1717

18-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-04T08:25:36.065615621Z[Etc/UTC]")
18+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-10T09:17:50.247834902Z[Etc/UTC]")
1919
public class ApiException extends Exception {
2020
private int code = 0;
2121
private Map<String, List<String>> responseHeaders = null;

src/main/java/com/phrase/client/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
package com.phrase.client;
1414

15-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-04T08:25:36.065615621Z[Etc/UTC]")
15+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-10T09:17:50.247834902Z[Etc/UTC]")
1616
public class Configuration {
1717
private static ApiClient defaultApiClient = new ApiClient();
1818

src/main/java/com/phrase/client/Pair.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
package com.phrase.client;
1414

15-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-04T08:25:36.065615621Z[Etc/UTC]")
15+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-10T09:17:50.247834902Z[Etc/UTC]")
1616
public class Pair {
1717
private String name = "";
1818
private String value = "";

src/main/java/com/phrase/client/StringUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
package com.phrase.client;
1414

15-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-04T08:25:36.065615621Z[Etc/UTC]")
15+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-10T09:17:50.247834902Z[Etc/UTC]")
1616
public class StringUtil {
1717
/**
1818
* Check if the given array contains the given value (with case-insensitive comparison).

src/main/java/com/phrase/client/api/UploadsApi.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ private okhttp3.Call uploadCreateValidateBeforeCall(String projectId, File _file
245245

246246
/**
247247
* Upload a new file
248-
* Upload a new language file. Creates necessary resources in your project.
248+
* Upload a new language file. Creates necessary resources in your project. Note: be aware of [upload limits](https://support.phrase.com/hc/en-us/articles/8548271212188-Phrase-Strings-Limits#file-size-upload-limits-0-0).
249249
* @param projectId Project ID (required)
250250
* @param _file File to be imported (required)
251251
* @param fileFormat File format. Auto-detected when possible and not specified. (required)
@@ -288,7 +288,7 @@ public Upload uploadCreate(String projectId, File _file, String fileFormat, Stri
288288

289289
/**
290290
* Upload a new file
291-
* Upload a new language file. Creates necessary resources in your project.
291+
* Upload a new language file. Creates necessary resources in your project. Note: be aware of [upload limits](https://support.phrase.com/hc/en-us/articles/8548271212188-Phrase-Strings-Limits#file-size-upload-limits-0-0).
292292
* @param projectId Project ID (required)
293293
* @param _file File to be imported (required)
294294
* @param fileFormat File format. Auto-detected when possible and not specified. (required)
@@ -332,7 +332,7 @@ public ApiResponse<Upload> uploadCreateWithHttpInfo(String projectId, File _file
332332

333333
/**
334334
* Upload a new file (asynchronously)
335-
* Upload a new language file. Creates necessary resources in your project.
335+
* Upload a new language file. Creates necessary resources in your project. Note: be aware of [upload limits](https://support.phrase.com/hc/en-us/articles/8548271212188-Phrase-Strings-Limits#file-size-upload-limits-0-0).
336336
* @param projectId Project ID (required)
337337
* @param _file File to be imported (required)
338338
* @param fileFormat File format. Auto-detected when possible and not specified. (required)

src/main/java/com/phrase/client/auth/ApiKeyAuth.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import java.util.Map;
1818
import java.util.List;
1919

20-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-04T08:25:36.065615621Z[Etc/UTC]")
20+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-10T09:17:50.247834902Z[Etc/UTC]")
2121
public class ApiKeyAuth implements Authentication {
2222
private final String location;
2323
private final String paramName;

src/main/java/com/phrase/client/auth/HttpBearerAuth.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import java.util.Map;
1818
import java.util.List;
1919

20-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-04T08:25:36.065615621Z[Etc/UTC]")
20+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-10T09:17:50.247834902Z[Etc/UTC]")
2121
public class HttpBearerAuth implements Authentication {
2222
private final String scheme;
2323
private String bearerToken;

0 commit comments

Comments
 (0)