Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Translation App description samples #27

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
173 changes: 173 additions & 0 deletions reference/translation_app_description_samples.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,173 @@
## Response samples of app description
- [iTunes App Store](#itunes-app-store)
- [Google Play](#google-play)
- [Windows Phone Store](#windows-phone-store)
- [Amazon Appstore](#amazon-appstore)
- [Samsung Apps](#samsung-apps)
- [Facebook App Center](#facebook-app-center)

### iTunes App Store
``` json
{
"meta": {
"status": 200,
"language": {
"code": "en-US",
"english_name": "English (United States)",
"local_name": "English (United States)",
"locale": "en",
"region" : "US"
}
},
"data": {
"APP_NAME": "App Name",
"APP_DESCRIPTION": "Description",
"APP_VERSION_DESCRIPTION": "New in this Version",
"APP_KEYWORD": {
"Keyword1": "Keyword 1",
"Keyword2": "Keyword 2"
},
"APP_IAP_NAME": {
"iap_product1": "Product 1",
"iap_product2": "Product 2"
},
"APP_IAP_DESCRIPTION": {
"iap_product1": "Product 1 description",
"iap_product2": "Product 2 description"
}
}
}
```
[Back to top](#response-samples-of-app-description)

### Google Play
``` json
{
"meta": {
"status": 200,
"language": {
"code": "en-US",
"english_name": "English (United States)",
"local_name": "English (United States)",
"locale": "en",
"region" : "US"
}
},
"data": {
"TITLE": "App Title",
"DESCRIPTION": "Description",
"RECENT_CHANGES": "Recent Changes",
"SHORT_DESCRIPTION": "Short Description",
"APP_IAP_NAME": {
"iap_product1": "Product 1",
"iap_product2": "Product 2"
},
"APP_IAP_DESCRIPTION": {
"iap_product1": "Product 1 description",
"iap_product2": "Product 2 description"
}
}
}
```
[Back to top](#response-samples-of-app-description)

### Windows Phone Store
``` json
{
"meta": {
"status": 200,
"language": {
"code": "en-US",
"english_name": "English (United States)",
"local_name": "English (United States)",
"locale": "en",
"region" : "US"
}
},
"data": {
"APP_NAME": "App Name",
"DETAILED_DESCRIPTION": "Detailed Description",
"SHORT_DESCRIPTION": "Short Description",
"KEYWORDS": {
"Keyword1": "Keyword 1",
"Keyword2": "Keyword 2"
}
}
}
```
[Back to top](#response-samples-of-app-description)

### Amazon Appstore
``` json
{
"meta": {
"status": 200,
"language": {
"code": "en-US",
"english_name": "English (United States)",
"local_name": "English (United States)",
"locale": "en",
"region" : "US"
}
},
"data": {
"AMAZON_APPSTORE_TITLE": "App Title",
"AMAZON_APPSTORE_SHORT_DESCRIPTION": "Short Description",
"AMAZON_APPSTORE_LONG_DESCRIPTION": "Long Description",
"AMAZON_APPSTORE_FEATURE_BULLETS": "Features",
"AMAZON_APPSTORE_KEYWORDS": {
"Keyword1": "Keyword 1",
"Keyword2": "Keyword 2"
}
}
}
```
[Back to top](#response-samples-of-app-description)

### Samsung Apps
``` json
{
"meta": {
"status": 200,
"language": {
"code": "en-US",
"english_name": "English (United States)",
"local_name": "English (United States)",
"locale": "en",
"region" : "US"
}
},
"data": {
"TITLE": "App Title",
"DESCRIPTION": "Description",
"APP_TAG": {
"Tag1": "Tag 1",
"Tag2": "Tag 2"
}
}
}
```
[Back to top](#response-samples-of-app-description)

### Facebook App Center
``` json
{
"meta": {
"status": 200,
"language": {
"code": "en-US",
"english_name": "English (United States)",
"local_name": "English (United States)",
"locale": "en",
"region" : "US"
}
},
"data": {
"DISPLAY_NAME": "App Name",
"DETAILED_DESCRIPTION": "Detailed Description",
"DESCRIPTION": "Description",
"TAGLINE": "Tagline"
}
}
```
[Back to top](#response-samples-of-app-description)
3 changes: 3 additions & 0 deletions resources/translation.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ status 200 OK
}
}
```
Remark:
- Response `data` may vary based on application type. Samples [here](/reference/translation_app_description_samples.md).

[Back to top](#translation)


Expand Down