generaltranslation 5.0.1 â 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.
- package/dist/api/batch/_translateBatch.d.ts +1 -0
- package/dist/api/batch/translateBatch.d.ts +1 -0
- package/dist/api/jsx/_translateJsx.d.ts +1 -0
- package/dist/api/jsx/translateJsx.d.ts +1 -0
- package/dist/api/translate/_translate.d.ts +1 -0
- package/dist/api/translate/translate.d.ts +1 -0
- package/dist/client/_translateBatchFromClient.d.ts +10 -0
- package/dist/client/_translateFromClient.d.ts +10 -0
- package/dist/index.cjs.min.cjs +1 -1
- package/dist/index.cjs.min.cjs.map +1 -1
- package/dist/index.d.ts +6 -43
- package/dist/index.esm.min.mjs +1 -1
- package/dist/index.esm.min.mjs.map +1 -1
- package/dist/internal.cjs.min.cjs +1 -1
- package/dist/internal.cjs.min.cjs.map +1 -1
- package/dist/internal.d.ts +5 -3
- package/dist/internal.esm.min.mjs +1 -1
- package/dist/internal.esm.min.mjs.map +1 -1
- package/dist/locales/determineLocale.d.ts +1 -0
- package/dist/locales/getLocaleDirection.d.ts +1 -0
- package/dist/locales/getLocaleEmoji.d.ts +1 -0
- package/dist/locales/getLocaleName.d.ts +1 -0
- package/dist/locales/getLocaleProperties.d.ts +1 -0
- package/dist/locales/isSameLanguage.d.ts +1 -0
- package/dist/locales/isValidLocale.d.ts +1 -0
- package/dist/locales/requiresTranslation.d.ts +1 -0
- package/dist/projects/getProjectLocales.d.ts +1 -0
- package/dist/projects/updateProjectTranslations.d.ts +1 -0
- package/dist/settings/_defaultUrls.d.ts +0 -1
- package/dist/settings/defaultURLs.d.ts +0 -1
- package/dist/settings/settings.d.ts +0 -2
- package/dist/settings/settingsUrls.d.ts +8 -0
- package/dist/translation/batch/_translateBatchFromClient.d.ts +2 -2
- package/dist/types.d.ts +4 -0
- package/package.json +1 -1
- package/dist/translation/batch/_translateJsxBatchFromClient.d.ts +0 -5
- package/dist/types/types.d.ts +0 -63
package/dist/index.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Content,
|
1
|
+
import { Content, JsxChildren, JsxTranslationResult, ContentTranslationResult, TranslationError } from './types';
|
2
2
|
/**
|
3
3
|
* Type representing the constructor parameters for the GT class.
|
4
4
|
*/
|
@@ -25,7 +25,7 @@ declare class GT {
|
|
25
25
|
* @param {string} [params.apiKey=''] - The API key for accessing the translation service.
|
26
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://
|
28
|
+
* @param {string} [params.baseUrl='https://api.gtx.dev'] - The base URL for the translation service.
|
29
29
|
*/
|
30
30
|
constructor({ apiKey, devApiKey, sourceLocale, projectId, baseUrl }?: GTConstructorParams);
|
31
31
|
/**
|
@@ -37,7 +37,7 @@ 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;
|
@@ -46,7 +46,7 @@ declare class GT {
|
|
46
46
|
fast?: boolean;
|
47
47
|
sourceLocale?: string;
|
48
48
|
[key: string]: any;
|
49
|
-
}): Promise<ContentTranslationResult>;
|
49
|
+
}): Promise<ContentTranslationResult | TranslationError>;
|
50
50
|
/**
|
51
51
|
* Translates JSX elements into a given locale.
|
52
52
|
*
|
@@ -55,7 +55,7 @@ declare class GT {
|
|
55
55
|
* @param {string} params.locale - The target locale for the translation.
|
56
56
|
* @param {Object} params.metadata - Additional metadata for the translation process.
|
57
57
|
*
|
58
|
-
* @returns {Promise<JsxTranslationResult>} - A promise that resolves to the translated content.
|
58
|
+
* @returns {Promise<JsxTranslationResult | TranslationError>} - A promise that resolves to the translated content.
|
59
59
|
*/
|
60
60
|
translateJsx(source: JsxChildren, locale: string, metadata?: {
|
61
61
|
context?: string;
|
@@ -64,44 +64,7 @@ declare class GT {
|
|
64
64
|
fast?: boolean;
|
65
65
|
sourceLocale?: string;
|
66
66
|
[key: string]: any;
|
67
|
-
}): Promise<JsxTranslationResult>;
|
68
|
-
/**
|
69
|
-
* Batches multiple translation requests and sends them to the server.
|
70
|
-
* @param requests - Array of requests to be processed and sent.
|
71
|
-
* @returns A promise that resolves to an array of processed results.
|
72
|
-
*/
|
73
|
-
translateBatch(requests: Request[]): Promise<Array<JsxTranslationResult | ContentTranslationResult>>;
|
74
|
-
/**
|
75
|
-
* Pushes updates to a remotely cached translations.
|
76
|
-
* @param {Update[]} updates - Array of updates.
|
77
|
-
* @param {string[]} [locales] - Array of locales to create translations into.
|
78
|
-
* @param {string} [projectId=this.projectId] - The ID of the project. Defaults to the instance's projectId.
|
79
|
-
* @param {Record<string, any>} [object] - Options, such as whether to replace the existing remote translations. Defaults to false.
|
80
|
-
* @returns {Promise<string[]>} A promise that resolves to an array of strings indicating the locales which have been updated.
|
81
|
-
*/
|
82
|
-
updateProjectTranslations(updates: Update[], locales?: string[], options?: {
|
83
|
-
replace?: boolean;
|
84
|
-
retranslate?: boolean;
|
85
|
-
projectId?: string;
|
86
|
-
[key: string]: any;
|
87
|
-
}): Promise<{
|
88
|
-
locales?: string[];
|
89
|
-
}>;
|
90
|
-
/**
|
91
|
-
* Retrieves the locales for a GT project as BCP 47 locale tags.
|
92
|
-
* @param projectId - The project ID to retrieve locales for. If not provided, `this.projectId` should be set.
|
93
|
-
* @returns A promise that resolves with an object containing an array of locale codes.
|
94
|
-
*/
|
95
|
-
getProjectLocales(projectId?: string): Promise<{
|
96
|
-
locales: string[];
|
97
|
-
}>;
|
98
|
-
/**
|
99
|
-
* Batches multiple translation requests and sends them directly to GT.
|
100
|
-
* Intended for use in a client-side app, where api keys are not present.
|
101
|
-
* @param requests - Array of requests to be processed and sent.
|
102
|
-
* @returns A promise that resolves to an array of processed results.
|
103
|
-
*/
|
104
|
-
translateBatchFromClient(requests: Request[]): Promise<Array<JsxTranslationResult | ContentTranslationResult>>;
|
67
|
+
}): Promise<JsxTranslationResult | TranslationError>;
|
105
68
|
}
|
106
69
|
/**
|
107
70
|
* Get the text direction for a given locale code using the Intl.Locale API.
|
package/dist/index.esm.min.mjs
CHANGED
@@ -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,s,l,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]:(s=Error.bind,p=(l="".concat(u.status,": ")).concat,[4,u.text()]);case 2:throw new(s.apply(Error,[void 0,p.apply(l,[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},s=function(e){try{return Intl.getCanonicalLocales(e)[0]}catch(t){return e}};function l(){for(var e,t,n,r,o,i,a,c,u,l,p=[],v=0;v<arguments.length;v++)p[v]=arguments[v];try{for(var d=p.flat().map(s),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,l=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,l=a.script,r!==c||o&&u&&o!==u||i&&l&&i!==l)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,s,l,p,v,d;return n(this,(function(n){switch(n.label){case 0:return t=new AbortController,u=t.signal,(s=(null==c?void 0:c.timeout)||o)&&setTimeout((function(){return t.abort()}),s),[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(l=n.sent()).ok?[3,3]:(p=Error.bind,d=(v="".concat(l.status,": ")).concat,[4,l.text()]);case 2:throw new(p.apply(Error,[void 0,d.apply(v,[n.sent()])]));case 3:return[4,l.json()];case 4:return[2,n.sent()]}}))}))}function v(r,i,a,c){return t(this,void 0,void 0,(function(){var t,u,s,l,p,v,d;return n(this,(function(n){switch(n.label){case 0:return t=new AbortController,u=t.signal,(s=(null==c?void 0:c.timeout)||o)&&setTimeout((function(){return t.abort()}),s),[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(l=n.sent()).ok?[3,3]:(p=Error.bind,d=(v="".concat(l.status,": ")).concat,[4,l.text()]);case 2:throw new(p.apply(Error,[void 0,d.apply(v,[n.sent()])]));case 3:return[4,l.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,s;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,s=(u="".concat(t.status,": ")).concat,[4,t.text()]);case 2:throw new(c.apply(Error,[void 0,s.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,s=void 0===u?{}:u;return new Intl.NumberFormat(i,e({style:"currency",currency:c,numberingSystem:"latn"},s)).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 s=c.split(",").map((function(e){return e.trim()})),l=s[0],p=s[1]?b[s[1]]:void 0,v=e({key:l},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=s(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,s,l,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]:(s=Error.bind,p=(l="".concat(u.status,": ")).concat,[4,u.text()]);case 2:throw new(s.apply(Error,[void 0,p.apply(l,[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 r(e){var t=void 0===e?{}:e,n=t.apiKey,r=void 0===n?"":n,o=t.devApiKey,i=void 0===o?"":o,a=t.sourceLocale,c=void 0===a?"":a,u=t.projectId,l=void 0===u?"":u,p=t.baseUrl,v=void 0===p?"https://prod.gtx.dev":p;this.apiKey=r||K("GT_API_KEY"),this.devApiKey=i||K("GT_DEV_API_KEY"),this.projectId=l||K("GT_PROJECT_ID"),this.sourceLocale=s(c)||"",this.baseUrl=v}return r.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({sourceLocale:this.sourceLocale},i))];case 1:return[2,t.sent()]}}))}))},r.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({sourceLocale:this.sourceLocale},i))];case 1:return[2,t.sent()]}}))}))},r.prototype.translateBatch=function(e){return t(this,void 0,void 0,(function(){return n(this,(function(t){return[2,i(this,e)]}))}))},r.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()]}}))}))},r.prototype.getProjectLocales=function(e){return t(this,void 0,void 0,(function(){return n(this,(function(t){return[2,f(this,e||this.projectId)]}))}))},r.prototype.translateBatchFromClient=function(e){return t(this,void 0,void 0,(function(){return n(this,(function(t){return[2,A(this,e)]}))}))},r}();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=s(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||"",l=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:l,scriptName:E.of(l)||"",nativeScriptName:L.of(l)||"",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:l=(null==x?void 0:x[3])||"",scriptName:l,nativeScriptName:l,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 s(e)}function j(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return l.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,s=void 0===u?{}:u,new Intl.RelativeTimeFormat(c,e({style:"long",numeric:"auto"},s)).format(o,i);var n,o,i,a,c,u,s}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=s(e),r=[],o=0,i=t;o<i.length;o++){var c=i[o],p=s(c);if(n===p)return{value:p};a(n,p)&&r.push(p)}return r.length?{value:r.find((function(e){return l(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)}))||l(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
|