generaltranslation 5.0.0 → 5.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/dist/api/batch/_translateBatch.d.ts +1 -0
  2. package/dist/api/batch/translateBatch.d.ts +1 -0
  3. package/dist/api/jsx/_translateJsx.d.ts +1 -0
  4. package/dist/api/jsx/translateJsx.d.ts +1 -0
  5. package/dist/api/translate/_translate.d.ts +1 -0
  6. package/dist/api/translate/translate.d.ts +1 -0
  7. package/dist/client/_translateBatchFromClient.d.ts +10 -0
  8. package/dist/client/_translateFromClient.d.ts +10 -0
  9. package/dist/index.cjs.min.cjs +1 -1
  10. package/dist/index.cjs.min.cjs.map +1 -1
  11. package/dist/index.d.ts +18 -47
  12. package/dist/index.esm.min.mjs +1 -1
  13. package/dist/index.esm.min.mjs.map +1 -1
  14. package/dist/internal.cjs.min.cjs +1 -1
  15. package/dist/internal.cjs.min.cjs.map +1 -1
  16. package/dist/internal.d.ts +5 -3
  17. package/dist/internal.esm.min.mjs +1 -1
  18. package/dist/internal.esm.min.mjs.map +1 -1
  19. package/dist/locales/determineLocale.d.ts +1 -0
  20. package/dist/locales/getLocaleDirection.d.ts +1 -0
  21. package/dist/locales/getLocaleEmoji.d.ts +1 -0
  22. package/dist/locales/getLocaleName.d.ts +1 -0
  23. package/dist/locales/getLocaleProperties.d.ts +1 -0
  24. package/dist/locales/isSameLanguage.d.ts +1 -0
  25. package/dist/locales/isValidLocale.d.ts +1 -0
  26. package/dist/locales/requiresTranslation.d.ts +1 -0
  27. package/dist/projects/getProjectLocales.d.ts +1 -0
  28. package/dist/projects/updateProjectTranslations.d.ts +1 -0
  29. package/dist/settings/{defaultUrls.d.ts → _defaultUrls.d.ts} +0 -1
  30. package/dist/settings/defaultURLs.d.ts +5 -0
  31. package/dist/settings/settings.d.ts +0 -2
  32. package/dist/settings/settingsUrls.d.ts +8 -0
  33. package/dist/translation/batch/_translateBatchFromClient.d.ts +2 -2
  34. package/dist/types.d.ts +12 -4
  35. package/package.json +1 -1
  36. package/dist/translation/batch/_translateJsxBatchFromClient.d.ts +0 -5
  37. package/dist/types/types.d.ts +0 -63
package/dist/index.d.ts CHANGED
@@ -1,11 +1,11 @@
1
- import { Content, Update, Request, JsxChildren, JsxTranslationResult, ContentTranslationResult } from './types';
1
+ import { Content, JsxChildren, JsxTranslationResult, ContentTranslationResult, TranslationError } from './types';
2
2
  /**
3
3
  * Type representing the constructor parameters for the GT class.
4
4
  */
5
5
  type GTConstructorParams = {
6
6
  apiKey?: string;
7
7
  devApiKey?: string;
8
- defaultLocale?: string;
8
+ sourceLocale?: string;
9
9
  projectId?: string;
10
10
  baseUrl?: string;
11
11
  };
@@ -15,7 +15,7 @@ type GTConstructorParams = {
15
15
  declare class GT {
16
16
  apiKey: string;
17
17
  devApiKey: string;
18
- defaultLocale: string;
18
+ sourceLocale: string;
19
19
  projectId: string;
20
20
  baseUrl: string;
21
21
  /**
@@ -23,11 +23,11 @@ declare class GT {
23
23
  *
24
24
  * @param {GTConstructorParams} [params] - The parameters for initializing the GT instance.
25
25
  * @param {string} [params.apiKey=''] - The API key for accessing the translation service.
26
- * @param {string} [params.defaultLocale='en-US'] - The default locale for translations.
26
+ * @param {string} [params.sourceLocale='en-US'] - The default locale for translations.
27
27
  * @param {string} [params.projectId=''] - The project ID for the translation service.
28
- * @param {string} [params.baseUrl='https://prod.gtx.dev'] - The base URL for the translation service.
28
+ * @param {string} [params.baseUrl='https://api.gtx.dev'] - The base URL for the translation service.
29
29
  */
30
- constructor({ apiKey, devApiKey, defaultLocale, projectId, baseUrl }?: GTConstructorParams);
30
+ constructor({ apiKey, devApiKey, sourceLocale, projectId, baseUrl }?: GTConstructorParams);
31
31
  /**
32
32
  * Translates a string or an array of strings/variables into a target locale.
33
33
  * If `metadata.save` is provided, the translation is cached for use in a public project.
@@ -37,12 +37,16 @@ declare class GT {
37
37
  * @param {{ context?: string, [key: string]: any }} [metadata] - Additional metadata for the translation request.
38
38
  * @param {string} [metadata.context] - Contextual information to assist with the translation.
39
39
  *
40
- * @returns {Promise<ContentTranslationResult>} A promise that resolves to the translated content, or an error if the translation fails.
40
+ * @returns {Promise<ContentTranslationResult | TranslationError>} A promise that resolves to the translated content, or an error if the translation fails.
41
41
  */
42
42
  translate(source: Content, locale: string, metadata?: {
43
43
  context?: string;
44
+ id?: string;
45
+ publish?: boolean;
46
+ fast?: boolean;
47
+ sourceLocale?: string;
44
48
  [key: string]: any;
45
- }): Promise<ContentTranslationResult>;
49
+ }): Promise<ContentTranslationResult | TranslationError>;
46
50
  /**
47
51
  * Translates JSX elements into a given locale.
48
52
  *
@@ -51,49 +55,16 @@ declare class GT {
51
55
  * @param {string} params.locale - The target locale for the translation.
52
56
  * @param {Object} params.metadata - Additional metadata for the translation process.
53
57
  *
54
- * @returns {Promise<JsxTranslationResult>} - A promise that resolves to the translated content.
58
+ * @returns {Promise<JsxTranslationResult | TranslationError>} - A promise that resolves to the translated content.
55
59
  */
56
60
  translateJsx(source: JsxChildren, locale: string, metadata?: {
57
61
  context?: string;
62
+ id?: string;
63
+ publish?: boolean;
64
+ fast?: boolean;
65
+ sourceLocale?: string;
58
66
  [key: string]: any;
59
- }): Promise<JsxTranslationResult>;
60
- /**
61
- * Batches multiple translation requests and sends them to the server.
62
- * @param requests - Array of requests to be processed and sent.
63
- * @returns A promise that resolves to an array of processed results.
64
- */
65
- translateBatch(requests: Request[]): Promise<Array<JsxTranslationResult | ContentTranslationResult>>;
66
- /**
67
- * Pushes updates to a remotely cached translations.
68
- * @param {Update[]} updates - Array of updates.
69
- * @param {string[]} [locales] - Array of locales to create translations into.
70
- * @param {string} [projectId=this.projectId] - The ID of the project. Defaults to the instance's projectId.
71
- * @param {Record<string, any>} [object] - Options, such as whether to replace the existing remote translations. Defaults to false.
72
- * @returns {Promise<string[]>} A promise that resolves to an array of strings indicating the locales which have been updated.
73
- */
74
- updateProjectTranslations(updates: Update[], locales?: string[], options?: {
75
- replace?: boolean;
76
- retranslate?: boolean;
77
- projectId?: string;
78
- [key: string]: any;
79
- }): Promise<{
80
- locales?: string[];
81
- }>;
82
- /**
83
- * Retrieves the locales for a GT project as BCP 47 locale tags.
84
- * @param projectId - The project ID to retrieve locales for. If not provided, `this.projectId` should be set.
85
- * @returns A promise that resolves with an object containing an array of locale codes.
86
- */
87
- getProjectLocales(projectId?: string): Promise<{
88
- locales: string[];
89
- }>;
90
- /**
91
- * Batches multiple translation requests and sends them directly to GT.
92
- * Intended for use in a client-side app, where api keys are not present.
93
- * @param requests - Array of requests to be processed and sent.
94
- * @returns A promise that resolves to an array of processed results.
95
- */
96
- translateBatchFromClient(requests: Request[]): Promise<Array<JsxTranslationResult | ContentTranslationResult>>;
67
+ }): Promise<JsxTranslationResult | TranslationError>;
97
68
  }
98
69
  /**
99
70
  * Get the text direction for a given locale code using the Intl.Locale API.
@@ -1,2 +1,2 @@
1
- var e=function(){return e=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},e.apply(this,arguments)};function t(e,t,n,r){return new(n||(n=Promise))((function(o,i){function a(e){try{u(r.next(e))}catch(e){i(e)}}function c(e){try{u(r.throw(e))}catch(e){i(e)}}function u(e){var t;e.done?o(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(a,c)}u((r=r.apply(e,t||[])).next())}))}function n(e,t){var n,r,o,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=c(0),a.throw=c(1),a.return=c(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function c(c){return function(u){return function(c){if(n)throw new TypeError("Generator is already executing.");for(;a&&(a=0,c[0]&&(i=0)),i;)try{if(n=1,r&&(o=2&c[0]?r.return:c[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,c[1])).done)return o;switch(r=0,o&&(c=[2&c[0],o.value]),c[0]){case 0:case 1:o=c;break;case 4:return i.label++,{value:c[1],done:!1};case 5:i.label++,r=c[1],c=[0];continue;case 7:c=i.ops.pop(),i.trys.pop();continue;default:if(!(o=i.trys,(o=o.length>0&&o[o.length-1])||6!==c[0]&&2!==c[0])){i=0;continue}if(3===c[0]&&(!o||c[1]>o[0]&&c[1]<o[3])){i.label=c[1];break}if(6===c[0]&&i.label<o[1]){i.label=o[1],o=c;break}if(o&&i.label<o[2]){i.label=o[2],i.ops.push(c);break}o[2]&&i.ops.pop(),i.trys.pop();continue}c=t.call(e,i)}catch(e){c=[6,e],r=0}finally{n=o=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}([c,u])}}}"function"==typeof SuppressedError&&SuppressedError;var r="en-US",o=6e4;function i(r,i){return t(this,void 0,void 0,(function(){var t,a,c,u,l,s,p;return n(this,(function(n){switch(n.label){case 0:return t=new AbortController,a=t.signal,c=Math.min.apply(Math,i.map((function(e){var t,n;return(null===(n=null===(t=null==e?void 0:e.data)||void 0===t?void 0:t.metadata)||void 0===n?void 0:n.timeout)||o}))),c&&setTimeout((function(){return t.abort()}),c),[4,fetch("".concat(r.baseUrl).concat("/v1/translate/batch"),{method:"POST",headers:e(e({"Content-Type":"application/json"},r.apiKey&&{"x-gt-api-key":r.apiKey}),r.devApiKey&&{"x-gt-dev-api-key":r.devApiKey}),body:JSON.stringify(i),signal:a})];case 1:return(u=n.sent()).ok?[3,3]:(l=Error.bind,p=(s="".concat(u.status,": ")).concat,[4,u.text()]);case 2:throw new(l.apply(Error,[void 0,p.apply(s,[n.sent()])]));case 3:return[4,u.json()];case 4:return[2,n.sent()]}}))}))}function a(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];try{var n=e.flat().map((function(e){return new Intl.Locale(e).language}));return n.every((function(e){return e===n[0]}))}catch(e){return console.error(e),!1}}var c=["Cham","Jamo","Kawi","Lisu","Toto","Thai"],u=function(e){try{var t=new Intl.Locale(e),n=t.language,o=t.region,i=t.script;if(e.split("-").length!==(a=1,o&&(a+=1),i&&(a+=1),a))return!1;if(new Intl.DisplayNames([r],{type:"language"}).of(n)===n)return!1;if(o)if(new Intl.DisplayNames([r],{type:"region"}).of(o)===o)return!1;if(i)if(new Intl.DisplayNames([r],{type:"script"}).of(i)===i&&!c.includes(i))return!1;return!0}catch(e){return!1}var a},l=function(e){try{return Intl.getCanonicalLocales(e)[0]}catch(t){return e}};function s(){for(var e,t,n,r,o,i,a,c,u,s,p=[],v=0;v<arguments.length;v++)p[v]=arguments[v];try{for(var d=p.flat().map(l),f=0;f<d.length;f++)for(var y=f+1;y<d.length;y++)if(e=d[f],t=d[y],n=void 0,r=void 0,o=void 0,i=void 0,a=void 0,c=void 0,u=void 0,s=void 0,n=new Intl.Locale(e),r=n.language,o=n.region,i=n.script,a=new Intl.Locale(t),c=a.language,u=a.region,s=a.script,r!==c||o&&u&&o!==u||i&&s&&i!==s)return!1;return!0}catch(e){return console.error(e),!1}}function p(r,i,a,c){return t(this,void 0,void 0,(function(){var t,u,l,s,p,v,d;return n(this,(function(n){switch(n.label){case 0:return t=new AbortController,u=t.signal,(l=(null==c?void 0:c.timeout)||o)&&setTimeout((function(){return t.abort()}),l),[4,fetch("".concat(r.baseUrl).concat("/v1/translate/content"),{method:"POST",headers:e(e({"Content-Type":"application/json"},r.apiKey&&{"x-gt-api-key":r.apiKey}),r.devApiKey&&{"x-gt-dev-api-key":r.devApiKey}),body:JSON.stringify({source:i,targetLocale:a,metadata:c}),signal:u})];case 1:return(s=n.sent()).ok?[3,3]:(p=Error.bind,d=(v="".concat(s.status,": ")).concat,[4,s.text()]);case 2:throw new(p.apply(Error,[void 0,d.apply(v,[n.sent()])]));case 3:return[4,s.json()];case 4:return[2,n.sent()]}}))}))}function v(r,i,a,c){return t(this,void 0,void 0,(function(){var t,u,l,s,p,v,d;return n(this,(function(n){switch(n.label){case 0:return t=new AbortController,u=t.signal,(l=(null==c?void 0:c.timeout)||o)&&setTimeout((function(){return t.abort()}),l),[4,fetch("".concat(r.baseUrl).concat("/v1/translate/react"),{method:"POST",headers:e(e({"Content-Type":"application/json"},r.apiKey&&{"x-gt-api-key":r.apiKey}),r.devApiKey&&{"x-gt-dev-api-key":r.devApiKey}),body:JSON.stringify({source:i,targetLocale:a,metadata:c}),signal:u})];case 1:return(s=n.sent()).ok?[3,3]:(p=Error.bind,d=(v="".concat(s.status,": ")).concat,[4,s.text()]);case 2:throw new(p.apply(Error,[void 0,d.apply(v,[n.sent()])]));case 3:return[4,s.json()];case 4:return[2,n.sent()]}}))}))}function d(r,o,i,a){return t(this,void 0,void 0,(function(){var t,c,u,l;return n(this,(function(n){switch(n.label){case 0:return[4,fetch("".concat(r.baseUrl).concat("/v1/project/translations/update"),{method:"POST",headers:e(e({"Content-Type":"application/json"},r.apiKey&&{"x-gt-api-key":r.apiKey}),r.devApiKey&&{"x-gt-dev-api-key":r.devApiKey}),body:JSON.stringify({updates:o,locales:i,options:a})})];case 1:return(t=n.sent()).ok?[3,3]:(c=Error.bind,l=(u="".concat(t.status,": ")).concat,[4,t.text()]);case 2:throw new(c.apply(Error,[void 0,l.apply(u,[n.sent()])]));case 3:return[4,t.json()];case 4:return[2,n.sent()]}}))}))}function f(r,o){return t(this,void 0,void 0,(function(){var t,i,a,c;return n(this,(function(n){switch(n.label){case 0:return[4,fetch("".concat(r.baseUrl).concat("/v1/project/locales","?projectId=").concat(o),{method:"GET",headers:e(e({"Content-Type":"application/json"},r.apiKey&&{"x-gt-api-key":r.apiKey}),r.devApiKey&&{"x-gt-dev-api-key":r.devApiKey})})];case 1:return(t=n.sent()).ok?[3,3]:(i=Error.bind,c=(a="".concat(t.status,": ")).concat,[4,t.text()]);case 2:throw new(i.apply(Error,[void 0,c.apply(a,[n.sent()])]));case 3:return[4,t.json()];case 4:return[2,n.sent()]}}))}))}function y(t){var n=t.value,o=t.locales,i=void 0===o?[r]:o,a=t.options,c=void 0===a?{}:a;return new Intl.NumberFormat(i,e({numberingSystem:"latn"},c)).format(n)}function h(t){var n=t.value,o=t.locales,i=void 0===o?[r]:o,a=t.options,c=void 0===a?{}:a;return new Intl.DateTimeFormat(i,e({calendar:"gregory",numberingSystem:"latn"},c)).format(n)}function m(t){var n=t.value,o=t.locales,i=void 0===o?[r]:o,a=t.currency,c=void 0===a?"USD":a,u=t.options,l=void 0===u?{}:u;return new Intl.NumberFormat(i,e({style:"currency",currency:c,numberingSystem:"latn"},l)).format(n)}function g(t){var n=t.value,o=t.locales,i=void 0===o?[r]:o,a=t.options,c=void 0===a?{}:a;return new Intl.ListFormat(i,e({type:"conjunction",style:"long"},c)).format(n)}var b={var:"variable",num:"number",datetime:"datetime",currency:"currency"};function w(t){if("string"!=typeof t)throw new Error("splitStringToContent: ".concat(t," is not a string!"));for(var n,r=[],o=/{([^}]+)}/g,i=0;null!==(n=o.exec(t));){var a=n[0],c=n[1],u=n.index;if("^"!==t[u-1]){u>i&&r.push(t.slice(i,u));var l=c.split(",").map((function(e){return e.trim()})),s=l[0],p=l[1]?b[l[1]]:void 0,v=e({key:s},p&&{variable:p});r.push(v),i=u+a.length}else u-1>i&&r.push(t.slice(i,u-1)),r.push(a),i=u+a.length}return i<t.length&&r.push(t.slice(i)),r}function N(e,t){if(void 0===t&&(t={}),!u(e))return C;if(t[e=l(e)])return t[e];var n=new Intl.Locale(e),r=n.region;if(r&&I[r])return I[r];var o=n.maximize(),i=o.region||"";return T[o.language]||I[i]||C}var S="🌍",C=S,T={ca:S,eu:S,ku:S,bo:"🌏",ug:"🌏",gd:"🏴󠁧󠁢󠁳󠁣󠁴󠁿",cy:"🏴󠁧󠁢󠁷󠁬󠁳󠁿",gv:"🇮🇲",grc:"🏺"},I={AF:"🇦🇫",AX:"🇦🇽",AL:"🇦🇱",DZ:"🇩🇿",AS:"🇦🇸",AD:"🇦🇩",AO:"🇦🇴",AI:"🇦🇮",AQ:"🇦🇶",AG:"🇦🇬",AR:"🇦🇷",AM:"🇦🇲",AW:"🇦🇼",AU:"🇦🇺",AT:"🇦🇹",AZ:"🇦🇿",BS:"🇧🇸",BH:"🇧🇭",BD:"🇧🇩",BB:"🇧🇧",BY:"🇧🇾",BE:"🇧🇪",BZ:"🇧🇿",BJ:"🇧🇯",BM:"🇧🇲",BT:"🇧🇹",BO:"🇧🇴",BQ:"🇧🇶",BA:"🇧🇦",BW:"🇧🇼",BV:"🇧🇻",BR:"🇧🇷",IO:"🇮🇴",BN:"🇧🇳",BG:"🇧🇬",BF:"🇧🇫",BI:"🇧🇮",CV:"🇨🇻",KH:"🇰🇭",CM:"🇨🇲",CA:"🇨🇦",KY:"🇰🇾",CF:"🇨🇫",TD:"🇹🇩",CL:"🇨🇱",CN:"🇨🇳",CX:"🇨🇽",CC:"🇨🇨",CO:"🇨🇴",KM:"🇰🇲",CD:"🇨🇩",CG:"🇨🇬",CK:"🇨🇰",CR:"🇨🇷",CI:"🇨🇮",HR:"🇭🇷",CU:"🇨🇺",CW:"🇨🇼",CY:"🇨🇾",CZ:"🇨🇿",DK:"🇩🇰",DJ:"🇩🇯",DM:"🇩🇲",DO:"🇩🇴",EC:"🇪🇨",EG:"🇪🇬",SV:"🇸🇻",GQ:"🇬🇶",ER:"🇪🇷",EE:"🇪🇪",SZ:"🇸🇿",ET:"🇪🇹",FK:"🇫🇰",FO:"🇫🇴",FJ:"🇫🇯",FI:"🇫🇮",FR:"🇫🇷",GF:"🇬🇫",PF:"🇵🇫",TF:"🇹🇫",GA:"🇬🇦",GM:"🇬🇲",GE:"🇬🇪",DE:"🇩🇪",GH:"🇬🇭",GI:"🇬🇮",GR:"🇬🇷",GL:"🇬🇱",GD:"🇬🇩",GP:"🇬🇵",GU:"🇬🇺",GT:"🇬🇹",GG:"🇬🇬",GN:"🇬🇳",GW:"🇬🇼",GY:"🇬🇾",HT:"🇭🇹",HM:"🇭🇲",VA:"🇻🇦",HN:"🇭🇳",HK:"🇭🇰",HU:"🇭🇺",IS:"🇮🇸",IN:"🇮🇳",ID:"🇮🇩",IR:"🇮🇷",IQ:"🇮🇶",IE:"🇮🇪",IM:"🇮🇲",IL:"🇮🇱",IT:"🇮🇹",JM:"🇯🇲",JP:"🇯🇵",JE:"🇯🇪",JO:"🇯🇴",KZ:"🇰🇿",KE:"🇰🇪",KI:"🇰🇮",KP:"🇰🇵",KR:"🇰🇷",KW:"🇰🇼",KG:"🇰🇬",LA:"🇱🇦",LV:"🇱🇻",LB:"🇱🇧",LS:"🇱🇸",LR:"🇱🇷",LY:"🇱🇾",LI:"🇱🇮",LT:"🇱🇹",LU:"🇱🇺",MO:"🇲🇴",MG:"🇲🇬",MW:"🇲🇼",MY:"🇲🇾",MV:"🇲🇻",ML:"🇲🇱",MT:"🇲🇹",MH:"🇲🇭",MQ:"🇲🇶",MR:"🇲🇷",MU:"🇲🇺",YT:"🇾🇹",MX:"🇲🇽",FM:"🇫🇲",MD:"🇲🇩",MC:"🇲🇨",MN:"🇲🇳",ME:"🇲🇪",MS:"🇲🇸",MA:"🇲🇦",MZ:"🇲🇿",MM:"🇲🇲",NA:"🇳🇦",NR:"🇳🇷",NP:"🇳🇵",NL:"🇳🇱",NC:"🇳🇨",NZ:"🇳🇿",NI:"🇳🇮",NE:"🇳🇪",NG:"🇳🇬",NU:"🇳🇺",NF:"🇳🇫",MK:"🇲🇰",MP:"🇲🇵",NO:"🇳🇴",OM:"🇴🇲",PK:"🇵🇰",PW:"🇵🇼",PS:"🇵🇸",PA:"🇵🇦",PG:"🇵🇬",PY:"🇵🇾",PE:"🇵🇪",PH:"🇵🇭",PN:"🇵🇳",PL:"🇵🇱",PT:"🇵🇹",PR:"🇵🇷",QA:"🇶🇦",RE:"🇷🇪",RO:"🇷🇴",RU:"🇷🇺",RW:"🇷🇼",BL:"🇧🇱",SH:"🇸🇭",KN:"🇰🇳",LC:"🇱🇨",MF:"🇲🇫",PM:"🇵🇲",VC:"🇻🇨",WS:"🇼🇸",SM:"🇸🇲",ST:"🇸🇹",SA:"🇸🇦",SN:"🇸🇳",RS:"🇷🇸",SC:"🇸🇨",SL:"🇸🇱",SG:"🇸🇬",SX:"🇸🇽",SK:"🇸🇰",SI:"🇸🇮",SB:"🇸🇧",SO:"🇸🇴",ZA:"🇿🇦",GS:"🇬🇸",SS:"🇸🇸",ES:"🇪🇸",LK:"🇱🇰",SD:"🇸🇩",SR:"🇸🇷",SJ:"🇸🇯",SE:"🇸🇪",CH:"🇨🇭",SY:"🇸🇾",TW:"🇹🇼",TJ:"🇹🇯",TZ:"🇹🇿",TH:"🇹🇭",TL:"🇹🇱",TG:"🇹🇬",TK:"🇹🇰",TO:"🇹🇴",TT:"🇹🇹",TN:"🇹🇳",TR:"🇹🇷",TM:"🇹🇲",TC:"🇹🇨",TV:"🇹🇻",UG:"🇺🇬",UA:"🇺🇦",AE:"🇦🇪",GB:"🇬🇧",US:"🇺🇸",UM:"🇺🇲",UY:"🇺🇾",UZ:"🇺🇿",VU:"🇻🇺",VE:"🇻🇪",VN:"🇻🇳",VG:"🇻🇬",VI:"🇻🇮",WF:"🇼🇫",EH:"🇪🇭",YE:"🇾🇪",ZM:"🇿🇲",ZW:"🇿🇼",EU:"🇪🇺"};function A(r,i){return t(this,void 0,void 0,(function(){var t,a,c,u,l,s,p;return n(this,(function(n){switch(n.label){case 0:return t=new AbortController,a=t.signal,c=Math.min.apply(Math,i.map((function(e){var t,n;return(null===(n=null===(t=null==e?void 0:e.data)||void 0===t?void 0:t.metadata)||void 0===n?void 0:n.timeout)||o}))),c&&setTimeout((function(){return t.abort()}),c),[4,fetch("".concat(r.baseUrl).concat("/v1/translate/client/batch"),{method:"POST",headers:e({"Content-Type":"application/json"},r.devApiKey&&{"x-gt-dev-api-key":r.devApiKey}),body:JSON.stringify(i),signal:a})];case 1:return(u=n.sent()).ok?[3,3]:(l=Error.bind,p=(s="".concat(u.status,": ")).concat,[4,u.text()]);case 2:throw new(l.apply(Error,[void 0,p.apply(s,[n.sent()])]));case 3:return[4,u.json()];case 4:return[2,n.sent()]}}))}))}var K=function(e){return"undefined"!=typeof process&&process.env&&process.env[e]||""},M=function(){function o(e){var t=void 0===e?{}:e,n=t.apiKey,o=void 0===n?"":n,i=t.devApiKey,a=void 0===i?"":i,c=t.defaultLocale,u=void 0===c?r:c,s=t.projectId,p=void 0===s?"":s,v=t.baseUrl,d=void 0===v?"https://prod.gtx.dev":v;this.apiKey=o||K("GT_API_KEY"),this.devApiKey=a||K("GT_DEV_API_KEY"),this.projectId=p||K("GT_PROJECT_ID"),this.defaultLocale=l(u)||r,this.baseUrl=d}return o.prototype.translate=function(r,o,i){return t(this,void 0,void 0,(function(){return n(this,(function(t){switch(t.label){case 0:return[4,p(this,r,o,e({defaultLocale:this.defaultLocale},i))];case 1:return[2,t.sent()]}}))}))},o.prototype.translateJsx=function(r,o,i){return t(this,void 0,void 0,(function(){return n(this,(function(t){switch(t.label){case 0:return[4,v(this,r,o,e({defaultLocale:this.defaultLocale},i))];case 1:return[2,t.sent()]}}))}))},o.prototype.translateBatch=function(e){return t(this,void 0,void 0,(function(){return n(this,(function(t){return[2,i(this,e)]}))}))},o.prototype.updateProjectTranslations=function(e){return t(this,arguments,void 0,(function(e,t,r){return void 0===t&&(t=[]),void 0===r&&(r={}),n(this,(function(n){switch(n.label){case 0:return[4,d(this,e,t,r)];case 1:return[2,n.sent()]}}))}))},o.prototype.getProjectLocales=function(e){return t(this,void 0,void 0,(function(){return n(this,(function(t){return[2,f(this,e||this.projectId)]}))}))},o.prototype.translateBatchFromClient=function(e){return t(this,void 0,void 0,(function(){return n(this,(function(t){return[2,A(this,e)]}))}))},o}();function E(e){return function(e){var t;try{var n=new Intl.Locale(e);return"rtl"===(null===(t=null==n?void 0:n.textInfo)||void 0===t?void 0:t.direction)?"rtl":"ltr"}catch(e){return"ltr"}}(e)}function L(e,t){return void 0===t&&(t=r),function(e,t){void 0===t&&(t=r);try{return new Intl.DisplayNames([t,r],{type:"language"}).of(e)||""}catch(e){return""}}(e,t)}function G(e,t){return function(e,t){void 0===t&&(t=r);try{e=l(e);var n=new Intl.Locale(e),o=n.language,i=n.region,a=new Intl.Locale(e).maximize(),c=a.toString(),u=a.region||"",s=a.script||"",p=new Intl.Locale(e).minimize().toString(),v=new Intl.DisplayNames([t,e,r],{type:"language"}),d=new Intl.DisplayNames([e,t,r],{type:"language"}),f=v.of(e)||e,y=d.of(e)||e,h=v.of(c)||e,m=d.of(c)||e,g=v.of(p)||e,b=d.of(p)||e,w=v.of(o)||e,S=d.of(o)||e,C=i?"".concat(w," (").concat(i,")"):w,T=i?"".concat(S," (").concat(i,")"):S,I=new Intl.DisplayNames([t,e,r],{type:"region"}),A=new Intl.DisplayNames([e,t,r],{type:"region"}),K=I.of(u)||"",M=A.of(u)||"",E=new Intl.DisplayNames([t,e,r],{type:"script"}),L=new Intl.DisplayNames([e,t,r],{type:"script"});return{code:e,name:f,nativeName:y,maximizedCode:c,maximizedName:h,nativeMaximizedName:m,minimizedCode:p,minimizedName:g,nativeMinimizedName:b,languageCode:o,languageName:w,nativeLanguageName:S,nameWithRegionCode:C,nativeNameWithRegionCode:T,regionCode:u,regionName:K,nativeRegionName:M,scriptCode:s,scriptName:E.of(s)||"",nativeScriptName:L.of(s)||"",emoji:N(e)}}catch(t){var G=e||"",x=null==G?void 0:G.split("-");return{code:G,name:G,nativeName:G,maximizedCode:G,maximizedName:G,nativeMaximizedName:G,minimizedCode:G,minimizedName:G,nativeMinimizedName:G,languageCode:o=(null==x?void 0:x[0])||G||"",languageName:o,nativeLanguageName:o,regionCode:u=x.length>2?null==x?void 0:x[2]:(null==x?void 0:x[1])||"",regionName:u,nativeRegionName:u,scriptCode:s=(null==x?void 0:x[3])||"",scriptName:s,nativeScriptName:s,nameWithRegionCode:C=o?u?"".concat(o," (").concat(u,")"):o:"",nativeNameWithRegionCode:G,emoji:N(G)}}}(e,t)}function x(e,t){return N(e,t)}function k(e){return u(e)}function P(e){return l(e)}function j(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return s.apply(void 0,e)}function O(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return a.apply(void 0,e)}function D(e){return y(e)}function R(e){return h(e)}function B(e){return m(e)}function U(e){return g(e)}function F(t){return o=(n=t).value,i=n.unit,a=n.locales,c=void 0===a?[r]:a,u=n.options,l=void 0===u?{}:u,new Intl.RelativeTimeFormat(c,e({style:"long",numeric:"auto"},l)).format(o,i);var n,o,i,a,c,u,l}function J(e){return w(e)}function W(t,n,o,i){return function(t,n,o,i){if(void 0===n&&(n=r),void 0===o&&(o={}),void 0===i&&(i={}),"string"==typeof t&&(t=w(t)),"string"==typeof t)return t;if(!Array.isArray(t))throw new Error("renderContentToString: content ".concat(t," is invalid"));return t.map((function(t){var r;if("string"==typeof t)return t;if("object"==typeof t){var a=o[t.key];return t.variable?"number"===t.variable?y({value:a,locales:n,options:i[t.key]}):"currency"===t.variable?m(e(e({value:a,locales:n},i[t.key]&&{options:i[t.key]}),(null===(r=i[t.key])||void 0===r?void 0:r.currency)&&{currency:i[t.key].currency})):"datetime"===t.variable?h(e({value:a,locales:n},i[t.key]&&{options:i[t.key]})):"list"===t.variable?g(e({value:a,locales:n},i[t.key]&&{options:i[t.key]})):a:a}})).join("")}(t,n,o,i)}function z(e,t){return function(e,t){if("string"==typeof e&&(e=[e]),e=e.filter(u),!(t=t.filter(u)))return e[0];for(var n=function(e){if(!u(e))return"continue";for(var n=l(e),r=[],o=0,i=t;o<i.length;o++){var c=i[o],p=l(c);if(n===p)return{value:p};a(n,p)&&r.push(p)}return r.length?{value:r.find((function(e){return s(n,e)}))||r[0]}:void 0},r=0,o=e;r<o.length;r++){var i=n(o[r]);if("object"==typeof i)return i.value}}(e,t)}function H(e,t,n){return function(e,t,n){return!(!u(e)||!u(t)||n&&n.some((function(e){return!u(e)}))||s(e,t)||n&&!n.some((function(e){return a(t,e)})))}(e,t,n)}export{M as default,z as determineLocale,B as formatCurrency,R as formatDateTime,U as formatList,D as formatNum,F as formatRelativeTime,E as getLocaleDirection,x as getLocaleEmoji,L as getLocaleName,G as getLocaleProperties,j as isSameDialect,O as isSameLanguage,k as isValidLocale,W as renderContentToString,H as requiresTranslation,J as splitStringToContent,P as standardizeLocale};
1
+ var e=function(){return e=Object.assign||function(e){for(var n,t=1,r=arguments.length;t<r;t++)for(var o in n=arguments[t])Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o]);return e},e.apply(this,arguments)};function n(e,n,t,r){return new(t||(t=Promise))((function(o,i){function a(e){try{c(r.next(e))}catch(e){i(e)}}function u(e){try{c(r.throw(e))}catch(e){i(e)}}function c(e){var n;e.done?o(e.value):(n=e.value,n instanceof t?n:new t((function(e){e(n)}))).then(a,u)}c((r=r.apply(e,n||[])).next())}))}function t(e,n){var t,r,o,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=u(0),a.throw=u(1),a.return=u(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function u(u){return function(c){return function(u){if(t)throw new TypeError("Generator is already executing.");for(;a&&(a=0,u[0]&&(i=0)),i;)try{if(t=1,r&&(o=2&u[0]?r.return:u[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,u[1])).done)return o;switch(r=0,o&&(u=[2&u[0],o.value]),u[0]){case 0:case 1:o=u;break;case 4:return i.label++,{value:u[1],done:!1};case 5:i.label++,r=u[1],u=[0];continue;case 7:u=i.ops.pop(),i.trys.pop();continue;default:if(!(o=i.trys,(o=o.length>0&&o[o.length-1])||6!==u[0]&&2!==u[0])){i=0;continue}if(3===u[0]&&(!o||u[1]>o[0]&&u[1]<o[3])){i.label=u[1];break}if(6===u[0]&&i.label<o[1]){i.label=o[1],o=u;break}if(o&&i.label<o[2]){i.label=o[2],i.ops.push(u);break}o[2]&&i.ops.pop(),i.trys.pop();continue}u=n.call(e,i)}catch(e){u=[6,e],r=0}finally{t=o=0}if(5&u[0])throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}([u,c])}}}function r(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];try{var t=e.flat().map((function(e){return new Intl.Locale(e).language}));return t.every((function(e){return e===t[0]}))}catch(e){return console.error(e),!1}}"function"==typeof SuppressedError&&SuppressedError;var o="en-US",i=6e4,a=["Cham","Jamo","Kawi","Lisu","Toto","Thai"],u=function(e){try{var n=new Intl.Locale(e),t=n.language,r=n.region,i=n.script;if(e.split("-").length!==(u=1,r&&(u+=1),i&&(u+=1),u))return!1;if(new Intl.DisplayNames([o],{type:"language"}).of(t)===t)return!1;if(r)if(new Intl.DisplayNames([o],{type:"region"}).of(r)===r)return!1;if(i)if(new Intl.DisplayNames([o],{type:"script"}).of(i)===i&&!a.includes(i))return!1;return!0}catch(e){return!1}var u},c=function(e){try{return Intl.getCanonicalLocales(e)[0]}catch(n){return e}};function l(){for(var e,n,t,r,o,i,a,u,l,s,f=[],v=0;v<arguments.length;v++)f[v]=arguments[v];try{for(var p=f.flat().map(c),d=0;d<p.length;d++)for(var y=d+1;y<p.length;y++)if(e=p[d],n=p[y],t=void 0,r=void 0,o=void 0,i=void 0,a=void 0,u=void 0,l=void 0,s=void 0,t=new Intl.Locale(e),r=t.language,o=t.region,i=t.script,a=new Intl.Locale(n),u=a.language,l=a.region,s=a.script,r!==u||o&&l&&o!==l||i&&s&&i!==s)return!1;return!0}catch(e){return console.error(e),!1}}function s(r,o,a,u){return n(this,void 0,void 0,(function(){var n,c,l,s,f,v,p,d;return t(this,(function(t){switch(t.label){case 0:n=new AbortController,c=n.signal,(l=Math.min((null==u?void 0:u.timeout)||i,i))&&setTimeout((function(){return n.abort()}),l),t.label=1;case 1:return t.trys.push([1,3,,4]),[4,fetch("".concat(r.baseUrl).concat("/v1/translate/content"),{method:"POST",headers:e(e({"Content-Type":"application/json"},r.apiKey&&{"x-gt-api-key":r.apiKey}),r.devApiKey&&{"x-gt-dev-api-key":r.devApiKey}),body:JSON.stringify({source:o,targetLocale:a,metadata:u}),signal:c})];case 2:return s=t.sent(),[3,4];case 3:if("AbortError"===(null==(f=t.sent())?void 0:f.name))throw new Error("Translation request timed out. This has either occured due to the translation of an unusually large request or a translation failure in the API.");throw f;case 4:return s.ok?[3,6]:(v=Error.bind,d=(p="".concat(s.status,": ")).concat,[4,s.text()]);case 5:throw new(v.apply(Error,[void 0,d.apply(p,[t.sent()])]));case 6:return[4,s.json()];case 7:return[2,t.sent()]}}))}))}function f(r,o,a,u){return n(this,void 0,void 0,(function(){var n,c,l,s,f,v,p,d;return t(this,(function(t){switch(t.label){case 0:n=new AbortController,c=n.signal,(l=Math.min((null==u?void 0:u.timeout)||i,i))&&setTimeout((function(){return n.abort()}),l),t.label=1;case 1:return t.trys.push([1,3,,4]),[4,fetch("".concat(r.baseUrl).concat("/v1/translate/react"),{method:"POST",headers:e(e({"Content-Type":"application/json"},r.apiKey&&{"x-gt-api-key":r.apiKey}),r.devApiKey&&{"x-gt-dev-api-key":r.devApiKey}),body:JSON.stringify({source:o,targetLocale:a,metadata:u}),signal:c})];case 2:return s=t.sent(),[3,4];case 3:if("AbortError"===(null==(f=t.sent())?void 0:f.name))throw new Error("Translation request timed out. This has either occured due to the translation of an unusually large request or a translation failure in the API.");throw f;case 4:return s.ok?[3,6]:(v=Error.bind,d=(p="".concat(s.status,": ")).concat,[4,s.text()]);case 5:throw new(v.apply(Error,[void 0,d.apply(p,[t.sent()])]));case 6:return[4,s.json()];case 7:return[2,t.sent()]}}))}))}function v(n){var t=n.value,r=n.locales,i=void 0===r?[o]:r,a=n.options,u=void 0===a?{}:a;return new Intl.NumberFormat(i,e({numberingSystem:"latn"},u)).format(t)}function p(n){var t=n.value,r=n.locales,i=void 0===r?[o]:r,a=n.options,u=void 0===a?{}:a;return new Intl.DateTimeFormat(i,e({calendar:"gregory",numberingSystem:"latn"},u)).format(t)}function d(n){var t=n.value,r=n.locales,i=void 0===r?[o]:r,a=n.currency,u=void 0===a?"USD":a,c=n.options,l=void 0===c?{}:c;return new Intl.NumberFormat(i,e({style:"currency",currency:u,numberingSystem:"latn"},l)).format(t)}function y(n){var t=n.value,r=n.locales,i=void 0===r?[o]:r,a=n.options,u=void 0===a?{}:a;return new Intl.ListFormat(i,e({type:"conjunction",style:"long"},u)).format(t)}var m={var:"variable",num:"number",datetime:"datetime",currency:"currency"};function g(n){if("string"!=typeof n)throw new Error("splitStringToContent: ".concat(n," is not a string!"));for(var t,r=[],o=/{([^}]+)}/g,i=0;null!==(t=o.exec(n));){var a=t[0],u=t[1],c=t.index;if("^"!==n[c-1]){c>i&&r.push(n.slice(i,c));var l=u.split(",").map((function(e){return e.trim()})),s=l[0],f=l[1]?m[l[1]]:void 0,v=e({key:s},f&&{variable:f});r.push(v),i=c+a.length}else c-1>i&&r.push(n.slice(i,c-1)),r.push(a),i=c+a.length}return i<n.length&&r.push(n.slice(i)),r}function h(e,n){if(void 0===n&&(n={}),!u(e))return w;if(n[e=c(e)])return n[e];var t=new Intl.Locale(e),r=t.region;if(r&&I[r])return I[r];var o=t.maximize(),i=o.region||"";return b[o.language]||I[i]||w}var N="🌍",w=N,b={ca:N,eu:N,ku:N,bo:"🌏",ug:"🌏",gd:"🏴󠁧󠁢󠁳󠁣󠁴󠁿",cy:"🏴󠁧󠁢󠁷󠁬󠁳󠁿",gv:"🇮🇲",grc:"🏺"},I={AF:"🇦🇫",AX:"🇦🇽",AL:"🇦🇱",DZ:"🇩🇿",AS:"🇦🇸",AD:"🇦🇩",AO:"🇦🇴",AI:"🇦🇮",AQ:"🇦🇶",AG:"🇦🇬",AR:"🇦🇷",AM:"🇦🇲",AW:"🇦🇼",AU:"🇦🇺",AT:"🇦🇹",AZ:"🇦🇿",BS:"🇧🇸",BH:"🇧🇭",BD:"🇧🇩",BB:"🇧🇧",BY:"🇧🇾",BE:"🇧🇪",BZ:"🇧🇿",BJ:"🇧🇯",BM:"🇧🇲",BT:"🇧🇹",BO:"🇧🇴",BQ:"🇧🇶",BA:"🇧🇦",BW:"🇧🇼",BV:"🇧🇻",BR:"🇧🇷",IO:"🇮🇴",BN:"🇧🇳",BG:"🇧🇬",BF:"🇧🇫",BI:"🇧🇮",CV:"🇨🇻",KH:"🇰🇭",CM:"🇨🇲",CA:"🇨🇦",KY:"🇰🇾",CF:"🇨🇫",TD:"🇹🇩",CL:"🇨🇱",CN:"🇨🇳",CX:"🇨🇽",CC:"🇨🇨",CO:"🇨🇴",KM:"🇰🇲",CD:"🇨🇩",CG:"🇨🇬",CK:"🇨🇰",CR:"🇨🇷",CI:"🇨🇮",HR:"🇭🇷",CU:"🇨🇺",CW:"🇨🇼",CY:"🇨🇾",CZ:"🇨🇿",DK:"🇩🇰",DJ:"🇩🇯",DM:"🇩🇲",DO:"🇩🇴",EC:"🇪🇨",EG:"🇪🇬",SV:"🇸🇻",GQ:"🇬🇶",ER:"🇪🇷",EE:"🇪🇪",SZ:"🇸🇿",ET:"🇪🇹",FK:"🇫🇰",FO:"🇫🇴",FJ:"🇫🇯",FI:"🇫🇮",FR:"🇫🇷",GF:"🇬🇫",PF:"🇵🇫",TF:"🇹🇫",GA:"🇬🇦",GM:"🇬🇲",GE:"🇬🇪",DE:"🇩🇪",GH:"🇬🇭",GI:"🇬🇮",GR:"🇬🇷",GL:"🇬🇱",GD:"🇬🇩",GP:"🇬🇵",GU:"🇬🇺",GT:"🇬🇹",GG:"🇬🇬",GN:"🇬🇳",GW:"🇬🇼",GY:"🇬🇾",HT:"🇭🇹",HM:"🇭🇲",VA:"🇻🇦",HN:"🇭🇳",HK:"🇭🇰",HU:"🇭🇺",IS:"🇮🇸",IN:"🇮🇳",ID:"🇮🇩",IR:"🇮🇷",IQ:"🇮🇶",IE:"🇮🇪",IM:"🇮🇲",IL:"🇮🇱",IT:"🇮🇹",JM:"🇯🇲",JP:"🇯🇵",JE:"🇯🇪",JO:"🇯🇴",KZ:"🇰🇿",KE:"🇰🇪",KI:"🇰🇮",KP:"🇰🇵",KR:"🇰🇷",KW:"🇰🇼",KG:"🇰🇬",LA:"🇱🇦",LV:"🇱🇻",LB:"🇱🇧",LS:"🇱🇸",LR:"🇱🇷",LY:"🇱🇾",LI:"🇱🇮",LT:"🇱🇹",LU:"🇱🇺",MO:"🇲🇴",MG:"🇲🇬",MW:"🇲🇼",MY:"🇲🇾",MV:"🇲🇻",ML:"🇲🇱",MT:"🇲🇹",MH:"🇲🇭",MQ:"🇲🇶",MR:"🇲🇷",MU:"🇲🇺",YT:"🇾🇹",MX:"🇲🇽",FM:"🇫🇲",MD:"🇲🇩",MC:"🇲🇨",MN:"🇲🇳",ME:"🇲🇪",MS:"🇲🇸",MA:"🇲🇦",MZ:"🇲🇿",MM:"🇲🇲",NA:"🇳🇦",NR:"🇳🇷",NP:"🇳🇵",NL:"🇳🇱",NC:"🇳🇨",NZ:"🇳🇿",NI:"🇳🇮",NE:"🇳🇪",NG:"🇳🇬",NU:"🇳🇺",NF:"🇳🇫",MK:"🇲🇰",MP:"🇲🇵",NO:"🇳🇴",OM:"🇴🇲",PK:"🇵🇰",PW:"🇵🇼",PS:"🇵🇸",PA:"🇵🇦",PG:"🇵🇬",PY:"🇵🇾",PE:"🇵🇪",PH:"🇵🇭",PN:"🇵🇳",PL:"🇵🇱",PT:"🇵🇹",PR:"🇵🇷",QA:"🇶🇦",RE:"🇷🇪",RO:"🇷🇴",RU:"🇷🇺",RW:"🇷🇼",BL:"🇧🇱",SH:"🇸🇭",KN:"🇰🇳",LC:"🇱🇨",MF:"🇲🇫",PM:"🇵🇲",VC:"🇻🇨",WS:"🇼🇸",SM:"🇸🇲",ST:"🇸🇹",SA:"🇸🇦",SN:"🇸🇳",RS:"🇷🇸",SC:"🇸🇨",SL:"🇸🇱",SG:"🇸🇬",SX:"🇸🇽",SK:"🇸🇰",SI:"🇸🇮",SB:"🇸🇧",SO:"🇸🇴",ZA:"🇿🇦",GS:"🇬🇸",SS:"🇸🇸",ES:"🇪🇸",LK:"🇱🇰",SD:"🇸🇩",SR:"🇸🇷",SJ:"🇸🇯",SE:"🇸🇪",CH:"🇨🇭",SY:"🇸🇾",TW:"🇹🇼",TJ:"🇹🇯",TZ:"🇹🇿",TH:"🇹🇭",TL:"🇹🇱",TG:"🇹🇬",TK:"🇹🇰",TO:"🇹🇴",TT:"🇹🇹",TN:"🇹🇳",TR:"🇹🇷",TM:"🇹🇲",TC:"🇹🇨",TV:"🇹🇻",UG:"🇺🇬",UA:"🇺🇦",AE:"🇦🇪",GB:"🇬🇧",US:"🇺🇸",UM:"🇺🇲",UY:"🇺🇾",UZ:"🇺🇿",VU:"🇻🇺",VE:"🇻🇪",VN:"🇻🇳",VG:"🇻🇬",VI:"🇻🇮",WF:"🇼🇫",EH:"🇪🇭",YE:"🇾🇪",ZM:"🇿🇲",ZW:"🇿🇼",EU:"🇪🇺"};var S=function(e){return"undefined"!=typeof process&&process.env&&process.env[e]||""},C=function(){function r(e){var n=void 0===e?{}:e,t=n.apiKey,r=void 0===t?"":t,o=n.devApiKey,i=void 0===o?"":o,a=n.sourceLocale,u=void 0===a?"":a,l=n.projectId,s=void 0===l?"":l,f=n.baseUrl,v=void 0===f?"https://api.gtx.dev":f;this.apiKey=r||S("GT_API_KEY"),this.devApiKey=i||S("GT_DEV_API_KEY"),this.projectId=s||S("GT_PROJECT_ID"),this.sourceLocale=c(u)||"",this.baseUrl=v}return r.prototype.translate=function(r,o,i){return n(this,void 0,void 0,(function(){return t(this,(function(n){switch(n.label){case 0:return[4,s(this,r,o,e({sourceLocale:this.sourceLocale},i))];case 1:return[2,n.sent()]}}))}))},r.prototype.translateJsx=function(r,o,i){return n(this,void 0,void 0,(function(){return t(this,(function(n){switch(n.label){case 0:return[4,f(this,r,o,e({sourceLocale:this.sourceLocale},i))];case 1:return[2,n.sent()]}}))}))},r}();function T(e){return function(e){var n;try{var t=new Intl.Locale(e);return"rtl"===(null===(n=null==t?void 0:t.textInfo)||void 0===n?void 0:n.direction)?"rtl":"ltr"}catch(e){return"ltr"}}(e)}function M(e,n){return void 0===n&&(n=o),function(e,n){void 0===n&&(n=o);try{return new Intl.DisplayNames([n,o],{type:"language"}).of(e)||""}catch(e){return""}}(e,n)}function A(e,n){return function(e,n){void 0===n&&(n=o);try{e=c(e);var t=new Intl.Locale(e),r=t.language,i=t.region,a=new Intl.Locale(e).maximize(),u=a.toString(),l=a.region||"",s=a.script||"",f=new Intl.Locale(e).minimize().toString(),v=new Intl.DisplayNames([n,e,o],{type:"language"}),p=new Intl.DisplayNames([e,n,o],{type:"language"}),d=v.of(e)||e,y=p.of(e)||e,m=v.of(u)||e,g=p.of(u)||e,N=v.of(f)||e,w=p.of(f)||e,b=v.of(r)||e,I=p.of(r)||e,S=i?"".concat(b," (").concat(i,")"):b,C=i?"".concat(I," (").concat(i,")"):I,T=new Intl.DisplayNames([n,e,o],{type:"region"}),M=new Intl.DisplayNames([e,n,o],{type:"region"}),A=T.of(l)||"",L=M.of(l)||"",E=new Intl.DisplayNames([n,e,o],{type:"script"}),G=new Intl.DisplayNames([e,n,o],{type:"script"});return{code:e,name:d,nativeName:y,maximizedCode:u,maximizedName:m,nativeMaximizedName:g,minimizedCode:f,minimizedName:N,nativeMinimizedName:w,languageCode:r,languageName:b,nativeLanguageName:I,nameWithRegionCode:S,nativeNameWithRegionCode:C,regionCode:l,regionName:A,nativeRegionName:L,scriptCode:s,scriptName:E.of(s)||"",nativeScriptName:G.of(s)||"",emoji:h(e)}}catch(n){var K=e||"",D=null==K?void 0:K.split("-");return{code:K,name:K,nativeName:K,maximizedCode:K,maximizedName:K,nativeMaximizedName:K,minimizedCode:K,minimizedName:K,nativeMinimizedName:K,languageCode:r=(null==D?void 0:D[0])||K||"",languageName:r,nativeLanguageName:r,regionCode:l=D.length>2?null==D?void 0:D[2]:(null==D?void 0:D[1])||"",regionName:l,nativeRegionName:l,scriptCode:s=(null==D?void 0:D[3])||"",scriptName:s,nativeScriptName:s,nameWithRegionCode:S=r?l?"".concat(r," (").concat(l,")"):r:"",nativeNameWithRegionCode:K,emoji:h(K)}}}(e,n)}function L(e,n){return h(e,n)}function E(e){return u(e)}function G(e){return c(e)}function K(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return l.apply(void 0,e)}function D(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return r.apply(void 0,e)}function P(e){return v(e)}function R(e){return p(e)}function x(e){return d(e)}function B(e){return y(e)}function O(n){return r=(t=n).value,i=t.unit,a=t.locales,u=void 0===a?[o]:a,c=t.options,l=void 0===c?{}:c,new Intl.RelativeTimeFormat(u,e({style:"long",numeric:"auto"},l)).format(r,i);var t,r,i,a,u,c,l}function k(e){return g(e)}function U(n,t,r,i){return function(n,t,r,i){if(void 0===t&&(t=o),void 0===r&&(r={}),void 0===i&&(i={}),"string"==typeof n&&(n=g(n)),"string"==typeof n)return n;if(!Array.isArray(n))throw new Error("renderContentToString: content ".concat(n," is invalid"));return n.map((function(n){var o;if("string"==typeof n)return n;if("object"==typeof n){var a=r[n.key];return n.variable?"number"===n.variable?v({value:a,locales:t,options:i[n.key]}):"currency"===n.variable?d(e(e({value:a,locales:t},i[n.key]&&{options:i[n.key]}),(null===(o=i[n.key])||void 0===o?void 0:o.currency)&&{currency:i[n.key].currency})):"datetime"===n.variable?p(e({value:a,locales:t},i[n.key]&&{options:i[n.key]})):"list"===n.variable?y(e({value:a,locales:t},i[n.key]&&{options:i[n.key]})):a:a}})).join("")}(n,t,r,i)}function F(e,n){return function(e,n){if("string"==typeof e&&(e=[e]),e=e.filter(u),!(n=n.filter(u)))return e[0];for(var t=function(e){if(!u(e))return"continue";for(var t=c(e),o=[],i=0,a=n;i<a.length;i++){var s=a[i],f=c(s);if(t===f)return{value:f};r(t,f)&&o.push(f)}return o.length?{value:o.find((function(e){return l(t,e)}))||o[0]}:void 0},o=0,i=e;o<i.length;o++){var a=t(i[o]);if("object"==typeof a)return a.value}}(e,n)}function j(e,n,t){return function(e,n,t){return!(!u(e)||!u(n)||t&&t.some((function(e){return!u(e)}))||l(e,n)||t&&!t.some((function(e){return r(n,e)})))}(e,n,t)}export{C as default,F as determineLocale,x as formatCurrency,R as formatDateTime,B as formatList,P as formatNum,O as formatRelativeTime,T as getLocaleDirection,L as getLocaleEmoji,M as getLocaleName,A as getLocaleProperties,K as isSameDialect,D as isSameLanguage,E as isValidLocale,U as renderContentToString,j as requiresTranslation,k as splitStringToContent,G as standardizeLocale};
2
2
  //# sourceMappingURL=index.esm.min.mjs.map