@chrryai/chrry 1.2.0 → 1.2.4
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/README.md +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +182 -53
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +182 -53
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -1371,7 +1371,7 @@ declare const isFirefox: boolean;
|
|
|
1371
1371
|
declare function getFlag({ code }: {
|
|
1372
1372
|
code?: string;
|
|
1373
1373
|
}): string;
|
|
1374
|
-
declare const VERSION = "1.2.
|
|
1374
|
+
declare const VERSION = "1.2.4";
|
|
1375
1375
|
type instructionBase = {
|
|
1376
1376
|
id: string;
|
|
1377
1377
|
title: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1371,7 +1371,7 @@ declare const isFirefox: boolean;
|
|
|
1371
1371
|
declare function getFlag({ code }: {
|
|
1372
1372
|
code?: string;
|
|
1373
1373
|
}): string;
|
|
1374
|
-
declare const VERSION = "1.2.
|
|
1374
|
+
declare const VERSION = "1.2.4";
|
|
1375
1375
|
type instructionBase = {
|
|
1376
1376
|
id: string;
|
|
1377
1377
|
title: string;
|
package/dist/index.js
CHANGED
|
@@ -450,6 +450,39 @@ var init_getWeatherCacheTime = __esm({
|
|
|
450
450
|
}
|
|
451
451
|
});
|
|
452
452
|
|
|
453
|
+
// locales.ts
|
|
454
|
+
var defaultLocale, locales, LANGUAGES;
|
|
455
|
+
var init_locales = __esm({
|
|
456
|
+
"locales.ts"() {
|
|
457
|
+
"use strict";
|
|
458
|
+
defaultLocale = "en";
|
|
459
|
+
locales = [
|
|
460
|
+
"en",
|
|
461
|
+
"de",
|
|
462
|
+
"es",
|
|
463
|
+
"fr",
|
|
464
|
+
"ja",
|
|
465
|
+
"ko",
|
|
466
|
+
"pt",
|
|
467
|
+
"zh",
|
|
468
|
+
"nl",
|
|
469
|
+
"tr"
|
|
470
|
+
];
|
|
471
|
+
LANGUAGES = [
|
|
472
|
+
{ code: "de", name: "Deutsch" },
|
|
473
|
+
{ code: "en", name: "English" },
|
|
474
|
+
{ code: "es", name: "Espa\xF1ol" },
|
|
475
|
+
{ code: "fr", name: "Fran\xE7ais" },
|
|
476
|
+
{ code: "ja", name: "\u65E5\u672C\u8A9E" },
|
|
477
|
+
{ code: "ko", name: "\uD55C\uAD6D\uC5B4" },
|
|
478
|
+
{ code: "pt", name: "Portugu\xEAs" },
|
|
479
|
+
{ code: "zh", name: "\u4E2D\u6587" },
|
|
480
|
+
{ code: "nl", name: "Nederlands" },
|
|
481
|
+
{ code: "tr", name: "T\xFCrk\xE7e" }
|
|
482
|
+
];
|
|
483
|
+
}
|
|
484
|
+
});
|
|
485
|
+
|
|
453
486
|
// utils/getHourlyLimit.ts
|
|
454
487
|
var getHourlyLimit;
|
|
455
488
|
var init_getHourlyLimit = __esm({
|
|
@@ -608,6 +641,7 @@ var init_utils = __esm({
|
|
|
608
641
|
init_isOwner();
|
|
609
642
|
init_getExampleInstructions();
|
|
610
643
|
init_getWeatherCacheTime();
|
|
644
|
+
init_locales();
|
|
611
645
|
init_getHourlyLimit();
|
|
612
646
|
init_generateAppMetadata();
|
|
613
647
|
checkIsExtension = () => {
|
|
@@ -812,13 +846,18 @@ var init_utils = __esm({
|
|
|
812
846
|
window.history.replaceState({}, "", newUrl);
|
|
813
847
|
};
|
|
814
848
|
isFirefox = typeof navigator !== "undefined" && navigator?.userAgent.includes("Firefox");
|
|
815
|
-
VERSION = "1.2.
|
|
849
|
+
VERSION = "1.2.4";
|
|
816
850
|
getSlugFromPathname = (path, defaultValues = {
|
|
817
851
|
appSlug: "chrry",
|
|
818
852
|
storeSlug: "chrry"
|
|
819
853
|
}) => {
|
|
820
854
|
if (path === "/") return defaultValues;
|
|
821
|
-
const
|
|
855
|
+
const segments = path.split("/").filter(Boolean);
|
|
856
|
+
if (segments.length === 0) return defaultValues;
|
|
857
|
+
const [firstSegment, secondSegment, ...rest] = segments;
|
|
858
|
+
const localeCandidates = locales;
|
|
859
|
+
const localeStrippedSegments = firstSegment && localeCandidates.includes(firstSegment) ? [secondSegment, ...rest].filter(Boolean) : segments;
|
|
860
|
+
const pathWithoutLocale = `/${localeStrippedSegments.join("/")}`;
|
|
822
861
|
const excludedRoutes = [
|
|
823
862
|
"threads",
|
|
824
863
|
"settings",
|
|
@@ -832,14 +871,14 @@ var init_utils = __esm({
|
|
|
832
871
|
"u",
|
|
833
872
|
"affiliate"
|
|
834
873
|
];
|
|
835
|
-
const
|
|
836
|
-
if (
|
|
837
|
-
if (
|
|
874
|
+
const segmentsWithoutLocale = pathWithoutLocale.split("/").filter(Boolean);
|
|
875
|
+
if (segmentsWithoutLocale.length === 0) return defaultValues;
|
|
876
|
+
if (segmentsWithoutLocale.length === 1 && excludedRoutes.includes(segmentsWithoutLocale?.[0] || "")) {
|
|
838
877
|
return defaultValues;
|
|
839
878
|
}
|
|
840
|
-
if (
|
|
841
|
-
const appSlug =
|
|
842
|
-
const storeSlug =
|
|
879
|
+
if (segmentsWithoutLocale.length >= 1) {
|
|
880
|
+
const appSlug = segmentsWithoutLocale[segmentsWithoutLocale.length - 1];
|
|
881
|
+
const storeSlug = segmentsWithoutLocale[segmentsWithoutLocale.length - 2];
|
|
843
882
|
return {
|
|
844
883
|
appSlug: appSlug || defaultValues.appSlug,
|
|
845
884
|
storeSlug: storeSlug || defaultValues.storeSlug
|
|
@@ -5759,7 +5798,19 @@ var init_en = __esm({
|
|
|
5759
5798
|
"Research Integration": "Research Integration",
|
|
5760
5799
|
"Seamlessly incorporate facts and citations. Claude Writer helps you write well-researched, credible content with proper attribution.": "Seamlessly incorporate facts and citations. Claude Writer helps you write well-researched, credible content with proper attribution.",
|
|
5761
5800
|
"Revision Assistant": "Revision Assistant",
|
|
5762
|
-
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions."
|
|
5801
|
+
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.",
|
|
5802
|
+
"AI App Marketplace": "AI App Marketplace",
|
|
5803
|
+
"AI Coding Assistant": "AI Coding Assistant",
|
|
5804
|
+
"Real-Time AI Search": "Real-Time AI Search",
|
|
5805
|
+
"Expert Code Reviewer": "Expert Code Reviewer",
|
|
5806
|
+
"Professional Writing Assistant": "Professional Writing Assistant",
|
|
5807
|
+
"Academic Research Assistant": "Academic Research Assistant",
|
|
5808
|
+
"Real-Time Web Search Engine": "Real-Time Web Search Engine",
|
|
5809
|
+
"Breaking News & Current Events": "Breaking News & Current Events",
|
|
5810
|
+
"Academic Research Engine": "Academic Research Engine",
|
|
5811
|
+
"AI Code Generation Expert": "AI Code Generation Expert",
|
|
5812
|
+
"Advanced Debugging Assistant": "Advanced Debugging Assistant",
|
|
5813
|
+
"System Architecture Designer": "System Architecture Designer"
|
|
5763
5814
|
};
|
|
5764
5815
|
}
|
|
5765
5816
|
});
|
|
@@ -6985,7 +7036,19 @@ var init_ja = __esm({
|
|
|
6985
7036
|
"Research Integration": "\u30EA\u30B5\u30FC\u30C1\u306E\u7D71\u5408",
|
|
6986
7037
|
"Seamlessly incorporate facts and citations. Claude Writer helps you write well-researched, credible content with proper attribution.": "\u4E8B\u5B9F\u3068\u5F15\u7528\u3092\u30B7\u30FC\u30E0\u30EC\u30B9\u306B\u7D44\u307F\u8FBC\u307F\u307E\u3059\u3002Claude Writer\u306F\u3001\u9069\u5207\u306A\u5F15\u7528\u3092\u542B\u3080\u4FE1\u983C\u6027\u306E\u9AD8\u3044\u5185\u5BB9\u3092\u66F8\u304F\u306E\u3092\u52A9\u3051\u307E\u3059\u3002",
|
|
6987
7038
|
"Revision Assistant": "\u30EA\u30D3\u30B8\u30E7\u30F3\u30A2\u30B7\u30B9\u30BF\u30F3\u30C8",
|
|
6988
|
-
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "\u5171\u540C\u3067\u30C9\u30E9\u30D5\u30C8\u3092\u53CD\u5FA9\u3057\u3001\u6539\u5584\u3057\u307E\u3059\u3002Claude Writer\u306F\u5EFA\u8A2D\u7684\u306A\u30D5\u30A3\u30FC\u30C9\u30D0\u30C3\u30AF\u3092\u63D0\u4F9B\u3057\u3001\u8907\u6570\u56DE\u306E\u6539\u8A02\u3092\u901A\u3058\u3066\u3042\u306A\u305F\u306E\u4F5C\u54C1\u3092\u6D17\u7DF4\u3057\u307E\u3059\u3002"
|
|
7039
|
+
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "\u5171\u540C\u3067\u30C9\u30E9\u30D5\u30C8\u3092\u53CD\u5FA9\u3057\u3001\u6539\u5584\u3057\u307E\u3059\u3002Claude Writer\u306F\u5EFA\u8A2D\u7684\u306A\u30D5\u30A3\u30FC\u30C9\u30D0\u30C3\u30AF\u3092\u63D0\u4F9B\u3057\u3001\u8907\u6570\u56DE\u306E\u6539\u8A02\u3092\u901A\u3058\u3066\u3042\u306A\u305F\u306E\u4F5C\u54C1\u3092\u6D17\u7DF4\u3057\u307E\u3059\u3002",
|
|
7040
|
+
"AI App Marketplace": "AI\u30A2\u30D7\u30EA\u30DE\u30FC\u30B1\u30C3\u30C8\u30D7\u30EC\u30A4\u30B9",
|
|
7041
|
+
"AI Coding Assistant": "AI\u30B3\u30FC\u30C7\u30A3\u30F3\u30B0\u30A2\u30B7\u30B9\u30BF\u30F3\u30C8",
|
|
7042
|
+
"Real-Time AI Search": "\u30EA\u30A2\u30EB\u30BF\u30A4\u30E0AI\u691C\u7D22",
|
|
7043
|
+
"Expert Code Reviewer": "\u30A8\u30AD\u30B9\u30D1\u30FC\u30C8\u30B3\u30FC\u30C9\u30EC\u30D3\u30E5\u30A2\u30FC",
|
|
7044
|
+
"Professional Writing Assistant": "\u30D7\u30ED\u30D5\u30A7\u30C3\u30B7\u30E7\u30CA\u30EB\u30E9\u30A4\u30C6\u30A3\u30F3\u30B0\u30A2\u30B7\u30B9\u30BF\u30F3\u30C8",
|
|
7045
|
+
"Academic Research Assistant": "\u5B66\u8853\u7814\u7A76\u30A2\u30B7\u30B9\u30BF\u30F3\u30C8",
|
|
7046
|
+
"Real-Time Web Search Engine": "\u30EA\u30A2\u30EB\u30BF\u30A4\u30E0\u30A6\u30A7\u30D6\u691C\u7D22\u30A8\u30F3\u30B8\u30F3",
|
|
7047
|
+
"Breaking News & Current Events": "\u6700\u65B0\u30CB\u30E5\u30FC\u30B9\uFF06\u73FE\u5728\u306E\u30A4\u30D9\u30F3\u30C8",
|
|
7048
|
+
"Academic Research Engine": "\u5B66\u8853\u7814\u7A76\u30A8\u30F3\u30B8\u30F3",
|
|
7049
|
+
"AI Code Generation Expert": "AI\u30B3\u30FC\u30C9\u751F\u6210\u30A8\u30AD\u30B9\u30D1\u30FC\u30C8",
|
|
7050
|
+
"Advanced Debugging Assistant": "\u30A2\u30C9\u30D0\u30F3\u30B9\u30C7\u30D0\u30C3\u30B0\u30A2\u30B7\u30B9\u30BF\u30F3\u30C8",
|
|
7051
|
+
"System Architecture Designer": "\u30B7\u30B9\u30C6\u30E0\u30A2\u30FC\u30AD\u30C6\u30AF\u30C1\u30E3\u30C7\u30B6\u30A4\u30CA\u30FC"
|
|
6989
7052
|
};
|
|
6990
7053
|
}
|
|
6991
7054
|
});
|
|
@@ -8211,7 +8274,19 @@ var init_es = __esm({
|
|
|
8211
8274
|
"Research Integration": "Integraci\xF3n de Investigaci\xF3n",
|
|
8212
8275
|
"Seamlessly incorporate facts and citations. Claude Writer helps you write well-researched, credible content with proper attribution.": "Incorpora sin problemas hechos y citas. Claude Writer te ayuda a escribir contenido bien investigado, cre\xEDble y con la atribuci\xF3n adecuada.",
|
|
8213
8276
|
"Revision Assistant": "Asistente de Revisi\xF3n",
|
|
8214
|
-
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "Itera y mejora los borradores de manera colaborativa. Claude Writer proporciona retroalimentaci\xF3n constructiva y ayuda a refinar tu trabajo a trav\xE9s de m\xFAltiples revisiones."
|
|
8277
|
+
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "Itera y mejora los borradores de manera colaborativa. Claude Writer proporciona retroalimentaci\xF3n constructiva y ayuda a refinar tu trabajo a trav\xE9s de m\xFAltiples revisiones.",
|
|
8278
|
+
"AI App Marketplace": "Mercado de Aplicaciones de IA",
|
|
8279
|
+
"AI Coding Assistant": "Asistente de Codificaci\xF3n de IA",
|
|
8280
|
+
"Real-Time AI Search": "B\xFAsqueda de IA en Tiempo Real",
|
|
8281
|
+
"Expert Code Reviewer": "Revisor de C\xF3digo Experto",
|
|
8282
|
+
"Professional Writing Assistant": "Asistente de Escritura Profesional",
|
|
8283
|
+
"Academic Research Assistant": "Asistente de Investigaci\xF3n Acad\xE9mica",
|
|
8284
|
+
"Real-Time Web Search Engine": "Motor de B\xFAsqueda Web en Tiempo Real",
|
|
8285
|
+
"Breaking News & Current Events": "Noticias de \xDAltima Hora y Eventos Actuales",
|
|
8286
|
+
"Academic Research Engine": "Motor de Investigaci\xF3n Acad\xE9mica",
|
|
8287
|
+
"AI Code Generation Expert": "Experto en Generaci\xF3n de C\xF3digo de IA",
|
|
8288
|
+
"Advanced Debugging Assistant": "Asistente Avanzado de Depuraci\xF3n",
|
|
8289
|
+
"System Architecture Designer": "Dise\xF1ador de Arquitectura de Sistemas"
|
|
8215
8290
|
};
|
|
8216
8291
|
}
|
|
8217
8292
|
});
|
|
@@ -9437,7 +9512,19 @@ var init_pt = __esm({
|
|
|
9437
9512
|
"Research Integration": "Integra\xE7\xE3o de Pesquisa",
|
|
9438
9513
|
"Seamlessly incorporate facts and citations. Claude Writer helps you write well-researched, credible content with proper attribution.": "Incorpore fatos e cita\xE7\xF5es sem problemas. Claude Writer ajuda voc\xEA a escrever conte\xFAdo bem pesquisado, cred\xEDvel e com a devida atribui\xE7\xE3o.",
|
|
9439
9514
|
"Revision Assistant": "Assistente de Revis\xE3o",
|
|
9440
|
-
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "Itere e melhore rascunhos de forma colaborativa. Claude Writer fornece feedback construtivo e ajuda a aprimorar seu trabalho atrav\xE9s de v\xE1rias revis\xF5es."
|
|
9515
|
+
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "Itere e melhore rascunhos de forma colaborativa. Claude Writer fornece feedback construtivo e ajuda a aprimorar seu trabalho atrav\xE9s de v\xE1rias revis\xF5es.",
|
|
9516
|
+
"AI App Marketplace": "Mercado de Aplica\xE7\xF5es de IA",
|
|
9517
|
+
"AI Coding Assistant": "Assistente de Codifica\xE7\xE3o de IA",
|
|
9518
|
+
"Real-Time AI Search": "Pesquisa de IA em Tempo Real",
|
|
9519
|
+
"Expert Code Reviewer": "Revisor de C\xF3digo Especialista",
|
|
9520
|
+
"Professional Writing Assistant": "Assistente de Escrita Profissional",
|
|
9521
|
+
"Academic Research Assistant": "Assistente de Pesquisa Acad\xEAmica",
|
|
9522
|
+
"Real-Time Web Search Engine": "Motor de Pesquisa Web em Tempo Real",
|
|
9523
|
+
"Breaking News & Current Events": "Not\xEDcias de \xDAltima Hora & Eventos Atuais",
|
|
9524
|
+
"Academic Research Engine": "Motor de Pesquisa Acad\xEAmica",
|
|
9525
|
+
"AI Code Generation Expert": "Especialista em Gera\xE7\xE3o de C\xF3digo de IA",
|
|
9526
|
+
"Advanced Debugging Assistant": "Assistente Avan\xE7ado de Depura\xE7\xE3o",
|
|
9527
|
+
"System Architecture Designer": "Designer de Arquitetura de Sistema"
|
|
9441
9528
|
};
|
|
9442
9529
|
}
|
|
9443
9530
|
});
|
|
@@ -10664,7 +10751,19 @@ var init_de = __esm({
|
|
|
10664
10751
|
"Research Integration": "Forschungsintegration",
|
|
10665
10752
|
"Seamlessly incorporate facts and citations. Claude Writer helps you write well-researched, credible content with proper attribution.": "F\xFCgen Sie nahtlos Fakten und Zitate ein. Claude Writer hilft Ihnen, gut recherchierte, glaubw\xFCrdige Inhalte mit korrekter Zuschreibung zu schreiben.",
|
|
10666
10753
|
"Revision Assistant": "Revisionsassistent",
|
|
10667
|
-
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "Arbeiten Sie gemeinsam an Entw\xFCrfen und verbessern Sie diese. Claude Writer gibt konstruktives Feedback und hilft Ihnen, Ihre Arbeit durch mehrere \xDCberarbeitungen zu verfeinern."
|
|
10754
|
+
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "Arbeiten Sie gemeinsam an Entw\xFCrfen und verbessern Sie diese. Claude Writer gibt konstruktives Feedback und hilft Ihnen, Ihre Arbeit durch mehrere \xDCberarbeitungen zu verfeinern.",
|
|
10755
|
+
"AI App Marketplace": "AI App Marktplatz",
|
|
10756
|
+
"AI Coding Assistant": "AI Programmierassistent",
|
|
10757
|
+
"Real-Time AI Search": "Echtzeit-AI-Suche",
|
|
10758
|
+
"Expert Code Reviewer": "Experte f\xFCr Code-Review",
|
|
10759
|
+
"Professional Writing Assistant": "Professioneller Schreibassistent",
|
|
10760
|
+
"Academic Research Assistant": "Akademischer Forschungsassistent",
|
|
10761
|
+
"Real-Time Web Search Engine": "Echtzeit-Web-Suchmaschine",
|
|
10762
|
+
"Breaking News & Current Events": "Aktuelle Nachrichten & Ereignisse",
|
|
10763
|
+
"Academic Research Engine": "Akademische Forschungsmaschine",
|
|
10764
|
+
"AI Code Generation Expert": "AI Code-Generierungsexperte",
|
|
10765
|
+
"Advanced Debugging Assistant": "Fortgeschrittener Debugging-Assistent",
|
|
10766
|
+
"System Architecture Designer": "Systemarchitektur-Designer"
|
|
10668
10767
|
};
|
|
10669
10768
|
}
|
|
10670
10769
|
});
|
|
@@ -11890,7 +11989,19 @@ var init_fr = __esm({
|
|
|
11890
11989
|
"Research Integration": "Int\xE9gration de Recherche",
|
|
11891
11990
|
"Seamlessly incorporate facts and citations. Claude Writer helps you write well-researched, credible content with proper attribution.": "Incorporez sans effort des faits et des citations. Claude Writer vous aide \xE0 r\xE9diger un contenu bien document\xE9 et cr\xE9dible avec une attribution appropri\xE9e.",
|
|
11892
11991
|
"Revision Assistant": "Assistant de R\xE9vision",
|
|
11893
|
-
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "It\xE9rez et am\xE9liorez les brouillons de mani\xE8re collaborative. Claude Writer fournit des commentaires constructifs et aide \xE0 affiner votre travail \xE0 travers plusieurs r\xE9visions."
|
|
11992
|
+
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "It\xE9rez et am\xE9liorez les brouillons de mani\xE8re collaborative. Claude Writer fournit des commentaires constructifs et aide \xE0 affiner votre travail \xE0 travers plusieurs r\xE9visions.",
|
|
11993
|
+
"AI App Marketplace": "March\xE9 d'Applications IA",
|
|
11994
|
+
"AI Coding Assistant": "Assistant de Codage IA",
|
|
11995
|
+
"Real-Time AI Search": "Recherche IA en Temps R\xE9el",
|
|
11996
|
+
"Expert Code Reviewer": "Expert en Revue de Code",
|
|
11997
|
+
"Professional Writing Assistant": "Assistant d'\xC9criture Professionnel",
|
|
11998
|
+
"Academic Research Assistant": "Assistant de Recherche Acad\xE9mique",
|
|
11999
|
+
"Real-Time Web Search Engine": "Moteur de Recherche Web en Temps R\xE9el",
|
|
12000
|
+
"Breaking News & Current Events": "Actualit\xE9s & \xC9v\xE9nements en Cours",
|
|
12001
|
+
"Academic Research Engine": "Moteur de Recherche Acad\xE9mique",
|
|
12002
|
+
"AI Code Generation Expert": "Expert en G\xE9n\xE9ration de Code IA",
|
|
12003
|
+
"Advanced Debugging Assistant": "Assistant de D\xE9bogage Avanc\xE9",
|
|
12004
|
+
"System Architecture Designer": "Concepteur d'Architecture Syst\xE8me"
|
|
11894
12005
|
};
|
|
11895
12006
|
}
|
|
11896
12007
|
});
|
|
@@ -13116,7 +13227,19 @@ var init_ko = __esm({
|
|
|
13116
13227
|
"Research Integration": "\uC5F0\uAD6C \uD1B5\uD569",
|
|
13117
13228
|
"Seamlessly incorporate facts and citations. Claude Writer helps you write well-researched, credible content with proper attribution.": "\uC0AC\uC2E4\uACFC \uC778\uC6A9\uC744 \uC6D0\uD65C\uD558\uAC8C \uD1B5\uD569\uD558\uC138\uC694. Claude Writer\uB294 \uC798 \uC5F0\uAD6C\uB41C, \uC2E0\uB8B0\uD560 \uC218 \uC788\uB294 \uCF58\uD150\uCE20\uB97C \uC801\uC808\uD55C \uCD9C\uCC98 \uD45C\uAE30\uC640 \uD568\uAED8 \uC791\uC131\uD558\uB294 \uB370 \uB3C4\uC6C0\uC744 \uC90D\uB2C8\uB2E4.",
|
|
13118
13229
|
"Revision Assistant": "\uB9AC\uBE44\uC804 \uC5B4\uC2DC\uC2A4\uD134\uD2B8",
|
|
13119
|
-
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "\uD611\uC5C5\uC744 \uD1B5\uD574 \uCD08\uC548\uC744 \uBC18\uBCF5\uD558\uACE0 \uAC1C\uC120\uD558\uC138\uC694. Claude Writer\uB294 \uAC74\uC124\uC801\uC778 \uD53C\uB4DC\uBC31\uC744 \uC81C\uACF5\uD558\uACE0 \uC5EC\uB7EC \uCC28\uB840\uC758 \uC218\uC815\uC744 \uD1B5\uD574 \uC791\uC5C5\uC744 \uC138\uB828\uB418\uAC8C \uB9CC\uB4DC\uB294 \uB370 \uB3C4\uC6C0\uC744 \uC90D\uB2C8\uB2E4."
|
|
13230
|
+
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "\uD611\uC5C5\uC744 \uD1B5\uD574 \uCD08\uC548\uC744 \uBC18\uBCF5\uD558\uACE0 \uAC1C\uC120\uD558\uC138\uC694. Claude Writer\uB294 \uAC74\uC124\uC801\uC778 \uD53C\uB4DC\uBC31\uC744 \uC81C\uACF5\uD558\uACE0 \uC5EC\uB7EC \uCC28\uB840\uC758 \uC218\uC815\uC744 \uD1B5\uD574 \uC791\uC5C5\uC744 \uC138\uB828\uB418\uAC8C \uB9CC\uB4DC\uB294 \uB370 \uB3C4\uC6C0\uC744 \uC90D\uB2C8\uB2E4.",
|
|
13231
|
+
"AI App Marketplace": "AI \uC571 \uB9C8\uCF13\uD50C\uB808\uC774\uC2A4",
|
|
13232
|
+
"AI Coding Assistant": "AI \uCF54\uB529 \uC5B4\uC2DC\uC2A4\uD134\uD2B8",
|
|
13233
|
+
"Real-Time AI Search": "\uC2E4\uC2DC\uAC04 AI \uAC80\uC0C9",
|
|
13234
|
+
"Expert Code Reviewer": "\uC804\uBB38 \uCF54\uB4DC \uB9AC\uBDF0\uC5B4",
|
|
13235
|
+
"Professional Writing Assistant": "\uC804\uBB38 \uAE00\uC4F0\uAE30 \uC5B4\uC2DC\uC2A4\uD134\uD2B8",
|
|
13236
|
+
"Academic Research Assistant": "\uD559\uC220 \uC5F0\uAD6C \uC5B4\uC2DC\uC2A4\uD134\uD2B8",
|
|
13237
|
+
"Real-Time Web Search Engine": "\uC2E4\uC2DC\uAC04 \uC6F9 \uAC80\uC0C9 \uC5D4\uC9C4",
|
|
13238
|
+
"Breaking News & Current Events": "\uAE34\uAE09 \uB274\uC2A4 \uBC0F \uD604\uC7AC \uC774\uBCA4\uD2B8",
|
|
13239
|
+
"Academic Research Engine": "\uD559\uC220 \uC5F0\uAD6C \uC5D4\uC9C4",
|
|
13240
|
+
"AI Code Generation Expert": "AI \uCF54\uB4DC \uC0DD\uC131 \uC804\uBB38\uAC00",
|
|
13241
|
+
"Advanced Debugging Assistant": "\uACE0\uAE09 \uB514\uBC84\uAE45 \uC5B4\uC2DC\uC2A4\uD134\uD2B8",
|
|
13242
|
+
"System Architecture Designer": "\uC2DC\uC2A4\uD15C \uC544\uD0A4\uD14D\uCC98 \uB514\uC790\uC774\uB108"
|
|
13120
13243
|
};
|
|
13121
13244
|
}
|
|
13122
13245
|
});
|
|
@@ -14343,7 +14466,19 @@ var init_zh = __esm({
|
|
|
14343
14466
|
"Research Integration": "\u7814\u7A76\u6574\u5408",
|
|
14344
14467
|
"Seamlessly incorporate facts and citations. Claude Writer helps you write well-researched, credible content with proper attribution.": "\u65E0\u7F1D\u5730\u878D\u5165\u4E8B\u5B9E\u548C\u5F15\u7528\u3002Claude Writer\u5E2E\u52A9\u60A8\u64B0\u5199\u7ECF\u8FC7\u826F\u597D\u7814\u7A76\uFF0C\u5177\u6709\u53EF\u4FE1\u5EA6\u7684\u5185\u5BB9\uFF0C\u5E76\u8FDB\u884C\u9002\u5F53\u7684\u5F52\u56E0\u3002",
|
|
14345
14468
|
"Revision Assistant": "\u4FEE\u8BA2\u52A9\u624B",
|
|
14346
|
-
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "\u534F\u540C\u8FED\u4EE3\u548C\u6539\u8FDB\u8349\u7A3F\u3002Claude Writer\u63D0\u4F9B\u5EFA\u8BBE\u6027\u53CD\u9988\uFF0C\u5E76\u901A\u8FC7\u591A\u6B21\u4FEE\u8BA2\u5E2E\u52A9\u60A8\u6539\u8FDB\u5DE5\u4F5C\u3002"
|
|
14469
|
+
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "\u534F\u540C\u8FED\u4EE3\u548C\u6539\u8FDB\u8349\u7A3F\u3002Claude Writer\u63D0\u4F9B\u5EFA\u8BBE\u6027\u53CD\u9988\uFF0C\u5E76\u901A\u8FC7\u591A\u6B21\u4FEE\u8BA2\u5E2E\u52A9\u60A8\u6539\u8FDB\u5DE5\u4F5C\u3002",
|
|
14470
|
+
"AI App Marketplace": "AI\u5E94\u7528\u5E02\u573A",
|
|
14471
|
+
"AI Coding Assistant": "AI\u7F16\u7A0B\u52A9\u624B",
|
|
14472
|
+
"Real-Time AI Search": "\u5B9E\u65F6AI\u641C\u7D22",
|
|
14473
|
+
"Expert Code Reviewer": "\u4EE3\u7801\u5BA1\u67E5\u4E13\u5BB6",
|
|
14474
|
+
"Professional Writing Assistant": "\u4E13\u4E1A\u5199\u4F5C\u52A9\u624B",
|
|
14475
|
+
"Academic Research Assistant": "\u5B66\u672F\u7814\u7A76\u52A9\u624B",
|
|
14476
|
+
"Real-Time Web Search Engine": "\u5B9E\u65F6\u7F51\u7EDC\u641C\u7D22\u5F15\u64CE",
|
|
14477
|
+
"Breaking News & Current Events": "\u6700\u65B0\u65B0\u95FB\u548C\u65F6\u4E8B",
|
|
14478
|
+
"Academic Research Engine": "\u5B66\u672F\u7814\u7A76\u5F15\u64CE",
|
|
14479
|
+
"AI Code Generation Expert": "AI\u4EE3\u7801\u751F\u6210\u4E13\u5BB6",
|
|
14480
|
+
"Advanced Debugging Assistant": "\u9AD8\u7EA7\u8C03\u8BD5\u52A9\u624B",
|
|
14481
|
+
"System Architecture Designer": "\u7CFB\u7EDF\u67B6\u6784\u8BBE\u8BA1\u5E08"
|
|
14347
14482
|
};
|
|
14348
14483
|
}
|
|
14349
14484
|
});
|
|
@@ -15570,7 +15705,19 @@ var init_nl = __esm({
|
|
|
15570
15705
|
"Seamlessly incorporate facts and citations. Claude Writer helps you write well-researched, credible content with proper attribution.": "Voeg naadloos feiten en citaten in. Claude Writer helpt u goed onderzocht, geloofwaardig inhoud te schrijven met de juiste attributie.",
|
|
15571
15706
|
"Revision Assistant": "Revisie Assistent",
|
|
15572
15707
|
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "Itereer en verbeter concepten samen. Claude Writer biedt constructieve feedback en helpt uw werk te verfijnen door meerdere revisies.",
|
|
15573
|
-
"Master of essays, articles, and documentation. Claude Writer excels at creating detailed, well-structured content with perfect flow and clarity.": "Meester in essays, artikelen en documentatie. Claude Writer blinkt uit in het cre\xEBren van gedetailleerde, goed gestructureerde inhoud met perfecte stroom en duidelijkheid."
|
|
15708
|
+
"Master of essays, articles, and documentation. Claude Writer excels at creating detailed, well-structured content with perfect flow and clarity.": "Meester in essays, artikelen en documentatie. Claude Writer blinkt uit in het cre\xEBren van gedetailleerde, goed gestructureerde inhoud met perfecte stroom en duidelijkheid.",
|
|
15709
|
+
"AI App Marketplace": "AI App Marktplaats",
|
|
15710
|
+
"AI Coding Assistant": "AI Programmeerassistent",
|
|
15711
|
+
"Real-Time AI Search": "Real-Time AI Zoeken",
|
|
15712
|
+
"Expert Code Reviewer": "Expert Code Reviewer",
|
|
15713
|
+
"Professional Writing Assistant": "Professionele Schrijfassistent",
|
|
15714
|
+
"Academic Research Assistant": "Academische Onderzoeksassistent",
|
|
15715
|
+
"Real-Time Web Search Engine": "Real-Time Webzoekmachine",
|
|
15716
|
+
"Breaking News & Current Events": "Laatste Nieuws & Actuele Gebeurtenissen",
|
|
15717
|
+
"Academic Research Engine": "Academische Onderzoeksmotor",
|
|
15718
|
+
"AI Code Generation Expert": "AI Code Generatie Expert",
|
|
15719
|
+
"Advanced Debugging Assistant": "Geavanceerde Debugging Assistent",
|
|
15720
|
+
"System Architecture Designer": "Systeemarchitectuur Ontwerper"
|
|
15574
15721
|
};
|
|
15575
15722
|
}
|
|
15576
15723
|
});
|
|
@@ -16796,44 +16943,23 @@ var init_tr = __esm({
|
|
|
16796
16943
|
"Research Integration": "Ara\u015Ft\u0131rma Entegrasyonu",
|
|
16797
16944
|
"Seamlessly incorporate facts and citations. Claude Writer helps you write well-researched, credible content with proper attribution.": "Ger\xE7ekleri ve al\u0131nt\u0131lar\u0131 sorunsuz bir \u015Fekilde dahil edin. Claude Writer, do\u011Fru at\u0131flarla iyi ara\u015Ft\u0131r\u0131lm\u0131\u015F, g\xFCvenilir i\xE7erik yazman\u0131za yard\u0131mc\u0131 olur.",
|
|
16798
16945
|
"Revision Assistant": "Revizyon Asistan\u0131",
|
|
16799
|
-
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "Taslaklar\u0131 i\u015Fbirli\u011Fi i\xE7inde tekrarlay\u0131n ve geli\u015Ftirin. Claude Writer, yap\u0131c\u0131 geri bildirimler sa\u011Flar ve \xE7al\u0131\u015Fman\u0131z\u0131 birden \xE7ok revizyonla geli\u015Ftirmenize yard\u0131mc\u0131 olur."
|
|
16946
|
+
"Iterate and improve drafts collaboratively. Claude Writer provides constructive feedback and helps refine your work through multiple revisions.": "Taslaklar\u0131 i\u015Fbirli\u011Fi i\xE7inde tekrarlay\u0131n ve geli\u015Ftirin. Claude Writer, yap\u0131c\u0131 geri bildirimler sa\u011Flar ve \xE7al\u0131\u015Fman\u0131z\u0131 birden \xE7ok revizyonla geli\u015Ftirmenize yard\u0131mc\u0131 olur.",
|
|
16947
|
+
"AI App Marketplace": "AI Uygulama Pazar\u0131",
|
|
16948
|
+
"AI Coding Assistant": "AI Kodlama Asistan\u0131",
|
|
16949
|
+
"Real-Time AI Search": "Ger\xE7ek Zamanl\u0131 AI Arama",
|
|
16950
|
+
"Expert Code Reviewer": "Uzman Kod \u0130nceleyici",
|
|
16951
|
+
"Professional Writing Assistant": "Profesyonel Yaz\u0131 Asistan\u0131",
|
|
16952
|
+
"Academic Research Assistant": "Akademik Ara\u015Ft\u0131rma Asistan\u0131",
|
|
16953
|
+
"Real-Time Web Search Engine": "Ger\xE7ek Zamanl\u0131 Web Arama Motoru",
|
|
16954
|
+
"Breaking News & Current Events": "Son Dakika Haberleri & G\xFCncel Olaylar",
|
|
16955
|
+
"Academic Research Engine": "Akademik Ara\u015Ft\u0131rma Motoru",
|
|
16956
|
+
"AI Code Generation Expert": "AI Kod \xDCretme Uzman\u0131",
|
|
16957
|
+
"Advanced Debugging Assistant": "Geli\u015Fmi\u015F Hata Ay\u0131klama Asistan\u0131",
|
|
16958
|
+
"System Architecture Designer": "Sistem Mimarisi Tasar\u0131mc\u0131s\u0131"
|
|
16800
16959
|
};
|
|
16801
16960
|
}
|
|
16802
16961
|
});
|
|
16803
16962
|
|
|
16804
|
-
// locales.ts
|
|
16805
|
-
var defaultLocale, locales, LANGUAGES;
|
|
16806
|
-
var init_locales = __esm({
|
|
16807
|
-
"locales.ts"() {
|
|
16808
|
-
"use strict";
|
|
16809
|
-
defaultLocale = "en";
|
|
16810
|
-
locales = [
|
|
16811
|
-
"en",
|
|
16812
|
-
"de",
|
|
16813
|
-
"es",
|
|
16814
|
-
"fr",
|
|
16815
|
-
"ja",
|
|
16816
|
-
"ko",
|
|
16817
|
-
"pt",
|
|
16818
|
-
"zh",
|
|
16819
|
-
"nl",
|
|
16820
|
-
"tr"
|
|
16821
|
-
];
|
|
16822
|
-
LANGUAGES = [
|
|
16823
|
-
{ code: "de", name: "Deutsch" },
|
|
16824
|
-
{ code: "en", name: "English" },
|
|
16825
|
-
{ code: "es", name: "Espa\xF1ol" },
|
|
16826
|
-
{ code: "fr", name: "Fran\xE7ais" },
|
|
16827
|
-
{ code: "ja", name: "\u65E5\u672C\u8A9E" },
|
|
16828
|
-
{ code: "ko", name: "\uD55C\uAD6D\uC5B4" },
|
|
16829
|
-
{ code: "pt", name: "Portugu\xEAs" },
|
|
16830
|
-
{ code: "zh", name: "\u4E2D\u6587" },
|
|
16831
|
-
{ code: "nl", name: "Nederlands" },
|
|
16832
|
-
{ code: "tr", name: "T\xFCrk\xE7e" }
|
|
16833
|
-
];
|
|
16834
|
-
}
|
|
16835
|
-
});
|
|
16836
|
-
|
|
16837
16963
|
// i18n.ts
|
|
16838
16964
|
var import_i18next, import_react_i18next2, getLocaleFromUrl, getBrowserLanguage, urlLang, cookieLang, savedLang, lang, safeLang, i18n_default;
|
|
16839
16965
|
var init_i18n = __esm({
|
|
@@ -17544,11 +17670,14 @@ function AuthProvider({
|
|
|
17544
17670
|
if (store2?.domain === "https://askvex.com" || store2?.domain === "https://vex.chrry.ai") {
|
|
17545
17671
|
return ["https://vex.chrry.ai", "https://askvex.com"];
|
|
17546
17672
|
}
|
|
17547
|
-
return store2.domain ? [store2.domain] : [
|
|
17673
|
+
return store2.domain ? [store2.domain] : [];
|
|
17548
17674
|
};
|
|
17549
17675
|
const baseApp = allApps?.find((item) => {
|
|
17550
17676
|
if (item.id !== item.store?.appId) return false;
|
|
17551
17677
|
if (!item?.store?.domain) return false;
|
|
17678
|
+
if (item.store.domain === chrryUrl2) {
|
|
17679
|
+
return true;
|
|
17680
|
+
}
|
|
17552
17681
|
return getAlterNativeDomains(item.store).includes(chrryUrl2);
|
|
17553
17682
|
});
|
|
17554
17683
|
const [app, setAppInternal] = (0, import_react14.useState)(baseApp || session2?.app);
|
|
@@ -17947,7 +18076,7 @@ function DataProvider({
|
|
|
17947
18076
|
const [instructions, setInstructions] = (0, import_react16.useState)([]);
|
|
17948
18077
|
const [affiliateStats, setAffiliateStats] = (0, import_react16.useState)(null);
|
|
17949
18078
|
const [loadingAffiliateStats, setLoadingAffiliateStats] = (0, import_react16.useState)(false);
|
|
17950
|
-
const VERSION3 = "1.2.
|
|
18079
|
+
const VERSION3 = "1.2.4";
|
|
17951
18080
|
const [weather, setWeather] = useLocalStorage2("weather", user?.weather || guest?.weather || void 0);
|
|
17952
18081
|
const {
|
|
17953
18082
|
API_URL: API_URL2,
|