Skip to content

Commit 3b59f85

Browse files
feat: add support of xcstrings file type by files-api (#124)
1 parent 33d78aa commit 3b59f85

File tree

1 file changed

+2
-1
lines changed
  • smartling-files-api/src/main/java/com/smartling/api/files/v2/pto

1 file changed

+2
-1
lines changed

smartling-files-api/src/main/java/com/smartling/api/files/v2/pto/FileType.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ public enum FileType
4848
XLIFF2("application/xml", false), // XLIFF 2.0 parser
4949
ARB("application/json", false), // ARB parser
5050
NONE("application/octet-stream", false), // No content files associated with this type, used for strings-api
51-
XLSX_TEMPLATE("application/octet-stream", false); // Smartling XLSX - https://help.smartling.com/hc/en-us/articles/1260804224670-Translating-Spreadsheets#h_01F3TKVZBVPFJSF2XZEBHDH1EQ
51+
XLSX_TEMPLATE("application/octet-stream", false), // Smartling XLSX - https://help.smartling.com/hc/en-us/articles/1260804224670-Translating-Spreadsheets#h_01F3TKVZBVPFJSF2XZEBHDH1EQ
52+
XCSTRINGS("application/json", true); // iOS String Catalog - https://help.smartling.com/hc/en-us/articles/31159241673627-iOS-String-Catalog
5253
private final String identifier;
5354
private final String mimeType;
5455
private final boolean isTextFormat;

0 commit comments

Comments
 (0)