diff --git a/reference/translation_app_description_samples.md b/reference/translation_app_description_samples.md new file mode 100644 index 0000000..e7ec980 --- /dev/null +++ b/reference/translation_app_description_samples.md @@ -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) \ No newline at end of file diff --git a/resources/translation.md b/resources/translation.md index cbb5ede..b9fba57 100644 --- a/resources/translation.md +++ b/resources/translation.md @@ -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)