singleton icon indicating copy to clipboard operation
singleton copied to clipboard

[BUG][Java Service]localeID is empty when requesting language goes with region and combinational locale is valid on language/region pattern api.

Open lyiyu66 opened this issue 1 year ago • 0 comments

Describe the bug commit: 3ca386100dcad77b1fb36031cc621726a94278ee localeID is empty when requesting language goes with region and combinational locale is valid on language/region pattern api. GET /i18n/api/v1/i18nPattern GET /i18n/api/v2/formatting/patterns/locales/{locale}

To Reproduce Steps to reproduce the behavior:

  1. Go to 'GET ​/i18n​/api​/v2​/formatting​/patterns'
  2. Input "en-US" as language, "US" as region and "plurals" as pattern.
  3. See the response:
{
  "response": {
    "code": 200,
    "message": "OK",
    "serverTime": ""
  },
  "signature": "",
  "data": {
    "localeID": "",
    "language": "en-US",
    "region": "us",
    "categories": 
    ...
  }
}

Expected behavior the combinational locale should be listed as localeID value: en-US

{
  "response": {
    "code": 200,
    "message": "OK",
    "serverTime": ""
  },
  "signature": "",
  "data": {
    "localeID": "en-US",
    "language": "en-US",
    "region": "us",
    "categories": 
    ...
  }
}

lyiyu66 avatar Jun 06 '23 09:06 lyiyu66