@jupyterlab/translation
Advanced tools
Comparing version 3.3.0-alpha.15 to 4.0.0-alpha.1
@@ -97,3 +97,3 @@ /** | ||
* | ||
* @return The current delimiter. | ||
* @returns The current delimiter. | ||
*/ | ||
@@ -110,3 +110,3 @@ getContextDelimiter(): string; | ||
* | ||
* @return The current locale. | ||
* @returns The current locale. | ||
*/ | ||
@@ -123,3 +123,3 @@ getLocale(): string; | ||
* | ||
* @return The current domain string. | ||
* @returns The current domain string. | ||
*/ | ||
@@ -136,3 +136,3 @@ getDomain(): string; | ||
* | ||
* @return The strings prefix. | ||
* @returns The strings prefix. | ||
*/ | ||
@@ -165,3 +165,3 @@ getStringsPrefix(): string; | ||
* | ||
* @return A translated string if found, or the original string. | ||
* @returns A translated string if found, or the original string. | ||
* | ||
@@ -181,3 +181,3 @@ * ### Notes | ||
* | ||
* @return A translated string if found, or the original string. | ||
* @returns A translated string if found, or the original string. | ||
* | ||
@@ -196,3 +196,3 @@ * ### Notes | ||
* | ||
* @return A translated string if found, or the original string. | ||
* @returns A translated string if found, or the original string. | ||
* | ||
@@ -213,3 +213,3 @@ * ### Notes | ||
* | ||
* @return A translated string if found, or the original string. | ||
* @returns A translated string if found, or the original string. | ||
* | ||
@@ -227,3 +227,3 @@ * ### Notes | ||
* | ||
* @return A translated string if found, or the original string. | ||
* @returns A translated string if found, or the original string. | ||
*/ | ||
@@ -237,3 +237,3 @@ gettext(msgid: string, ...args: any[]): string; | ||
* | ||
* @return A translated string if found, or the original string. | ||
* @returns A translated string if found, or the original string. | ||
*/ | ||
@@ -248,3 +248,3 @@ ngettext(msgid: string, msgid_plural: string, n: number, ...args: any[]): string; | ||
* | ||
* @return A translated string if found, or the original string. | ||
* @returns A translated string if found, or the original string. | ||
* | ||
@@ -265,3 +265,3 @@ * ### Notes | ||
* | ||
* @return A translated string if found, or the original string. | ||
* @returns A translated string if found, or the original string. | ||
*/ | ||
@@ -279,3 +279,3 @@ npgettext(msgctxt: string, msgid: string, msgid_plural: string, n: number, ...args: any[]): string; | ||
* | ||
* @return A translated string if found, or the original string. | ||
* @returns A translated string if found, or the original string. | ||
*/ | ||
@@ -288,3 +288,3 @@ dcnpgettext(domain: string, msgctxt: string, msgid: string, msgid_plural: string, n: number, ...args: any[]): string; | ||
* | ||
* @return An array of locales. | ||
* @returns An array of locales. | ||
*/ | ||
@@ -296,3 +296,3 @@ private expandLocale; | ||
* @param pluralForm - Plural form string.. | ||
* @return An function to compute plural forms. | ||
* @returns An function to compute plural forms. | ||
*/ | ||
@@ -304,3 +304,3 @@ private getPluralFunc; | ||
* @param str - Translation string. | ||
* @return A translation string without context. | ||
* @returns A translation string without context. | ||
*/ | ||
@@ -316,3 +316,3 @@ private removeContext; | ||
* | ||
* @return A translation string without context. | ||
* @returns A translation string without context. | ||
* | ||
@@ -319,0 +319,0 @@ * ### Notes |
@@ -60,3 +60,3 @@ /* ---------------------------------------------------------------------------- | ||
* | ||
* @return The current delimiter. | ||
* @returns The current delimiter. | ||
*/ | ||
@@ -77,3 +77,3 @@ getContextDelimiter() { | ||
* | ||
* @return The current locale. | ||
* @returns The current locale. | ||
*/ | ||
@@ -94,3 +94,3 @@ getLocale() { | ||
* | ||
* @return The current domain string. | ||
* @returns The current domain string. | ||
*/ | ||
@@ -111,3 +111,3 @@ getDomain() { | ||
* | ||
* @return The strings prefix. | ||
* @returns The strings prefix. | ||
*/ | ||
@@ -163,3 +163,3 @@ getStringsPrefix() { | ||
* | ||
* @return A translated string if found, or the original string. | ||
* @returns A translated string if found, or the original string. | ||
* | ||
@@ -181,3 +181,3 @@ * ### Notes | ||
* | ||
* @return A translated string if found, or the original string. | ||
* @returns A translated string if found, or the original string. | ||
* | ||
@@ -198,3 +198,3 @@ * ### Notes | ||
* | ||
* @return A translated string if found, or the original string. | ||
* @returns A translated string if found, or the original string. | ||
* | ||
@@ -217,3 +217,3 @@ * ### Notes | ||
* | ||
* @return A translated string if found, or the original string. | ||
* @returns A translated string if found, or the original string. | ||
* | ||
@@ -233,3 +233,3 @@ * ### Notes | ||
* | ||
* @return A translated string if found, or the original string. | ||
* @returns A translated string if found, or the original string. | ||
*/ | ||
@@ -245,3 +245,3 @@ gettext(msgid, ...args) { | ||
* | ||
* @return A translated string if found, or the original string. | ||
* @returns A translated string if found, or the original string. | ||
*/ | ||
@@ -258,3 +258,3 @@ ngettext(msgid, msgid_plural, n, ...args) { | ||
* | ||
* @return A translated string if found, or the original string. | ||
* @returns A translated string if found, or the original string. | ||
* | ||
@@ -277,3 +277,3 @@ * ### Notes | ||
* | ||
* @return A translated string if found, or the original string. | ||
* @returns A translated string if found, or the original string. | ||
*/ | ||
@@ -293,3 +293,3 @@ npgettext(msgctxt, msgid, msgid_plural, n, ...args) { | ||
* | ||
* @return A translated string if found, or the original string. | ||
* @returns A translated string if found, or the original string. | ||
*/ | ||
@@ -349,3 +349,3 @@ dcnpgettext(domain, msgctxt, msgid, msgid_plural, n, ...args) { | ||
* | ||
* @return An array of locales. | ||
* @returns An array of locales. | ||
*/ | ||
@@ -366,3 +366,3 @@ expandLocale(locale) { | ||
* @param pluralForm - Plural form string.. | ||
* @return An function to compute plural forms. | ||
* @returns An function to compute plural forms. | ||
*/ | ||
@@ -389,3 +389,3 @@ // eslint-disable-next-line @typescript-eslint/ban-types | ||
* @param str - Translation string. | ||
* @return A translation string without context. | ||
* @returns A translation string without context. | ||
*/ | ||
@@ -408,3 +408,3 @@ removeContext(str) { | ||
* | ||
* @return A translation string without context. | ||
* @returns A translation string without context. | ||
* | ||
@@ -411,0 +411,0 @@ * ### Notes |
{ | ||
"name": "@jupyterlab/translation", | ||
"version": "3.3.0-alpha.15", | ||
"version": "4.0.0-alpha.1", | ||
"description": "JupyterLab - Translation services", | ||
@@ -42,9 +42,9 @@ "keywords": [ | ||
"dependencies": { | ||
"@jupyterlab/coreutils": "^5.3.0-alpha.15", | ||
"@jupyterlab/services": "^6.3.0-alpha.15", | ||
"@jupyterlab/statedb": "^3.3.0-alpha.15", | ||
"@lumino/coreutils": "^1.10.0" | ||
"@jupyterlab/coreutils": "^6.0.0-alpha.1", | ||
"@jupyterlab/services": "^7.0.0-alpha.1", | ||
"@jupyterlab/statedb": "^4.0.0-alpha.1", | ||
"@lumino/coreutils": "^1.11.1" | ||
}, | ||
"devDependencies": { | ||
"@jupyterlab/testutils": "^3.3.0-alpha.15", | ||
"@jupyterlab/testutils": "^4.0.0-alpha.1", | ||
"@types/jest": "^26.0.10", | ||
@@ -51,0 +51,0 @@ "jest": "^26.4.2", |
56279
+ Added@jupyter/ydoc@3.0.2(transitive)
+ Added@jupyterlab/coreutils@6.3.4(transitive)
+ Added@jupyterlab/nbformat@4.3.4(transitive)
+ Added@jupyterlab/services@7.3.4(transitive)
+ Added@jupyterlab/settingregistry@4.3.4(transitive)
+ Added@jupyterlab/statedb@4.3.4(transitive)
+ Added@lumino/algorithm@2.0.2(transitive)
+ Added@lumino/commands@2.3.1(transitive)
+ Added@lumino/coreutils@2.2.0(transitive)
+ Added@lumino/disposable@2.1.3(transitive)
+ Added@lumino/domutils@2.0.2(transitive)
+ Added@lumino/keyboard@2.0.2(transitive)
+ Added@lumino/polling@2.1.3(transitive)
+ Added@lumino/properties@2.0.2(transitive)
+ Added@lumino/signaling@2.1.3(transitive)
+ Added@lumino/virtualdom@2.0.2(transitive)
+ Added@rjsf/utils@5.24.1(transitive)
+ Addedajv@8.17.1(transitive)
+ Addedcompute-gcd@1.2.1(transitive)
+ Addedcompute-lcm@1.1.2(transitive)
+ Addedfast-uri@3.0.6(transitive)
+ Addedisomorphic.js@0.2.5(transitive)
+ Addedjson-schema-compare@0.2.2(transitive)
+ Addedjson-schema-merge-allof@0.8.1(transitive)
+ Addedjson-schema-traverse@1.0.0(transitive)
+ Addedjsonpointer@5.0.1(transitive)
+ Addedlib0@0.2.99(transitive)
+ Addedlodash@4.17.21(transitive)
+ Addedlodash-es@4.17.21(transitive)
+ Addedreact@19.0.0(transitive)
+ Addedreact-is@18.3.1(transitive)
+ Addedrequire-from-string@2.0.2(transitive)
+ Addedvalidate.io-array@1.0.6(transitive)
+ Addedvalidate.io-function@1.0.2(transitive)
+ Addedvalidate.io-integer@1.0.5(transitive)
+ Addedvalidate.io-integer-array@1.0.0(transitive)
+ Addedvalidate.io-number@1.0.3(transitive)
+ Addedws@8.18.0(transitive)
+ Addedy-protocols@1.0.6(transitive)
+ Addedyjs@13.6.23(transitive)
- Removed@jupyterlab/coreutils@5.6.8(transitive)
- Removed@jupyterlab/nbformat@3.6.8(transitive)
- Removed@jupyterlab/observables@4.6.8(transitive)
- Removed@jupyterlab/services@6.6.8(transitive)
- Removed@jupyterlab/settingregistry@3.6.8(transitive)
- Removed@jupyterlab/statedb@3.6.8(transitive)
- Removed@lumino/algorithm@1.9.2(transitive)
- Removed@lumino/collections@1.9.3(transitive)
- Removed@lumino/commands@1.21.1(transitive)
- Removed@lumino/disposable@1.10.4(transitive)
- Removed@lumino/domutils@1.8.2(transitive)
- Removed@lumino/keyboard@1.8.2(transitive)
- Removed@lumino/messaging@1.10.3(transitive)
- Removed@lumino/polling@1.11.4(transitive)
- Removed@lumino/properties@1.8.2(transitive)
- Removed@lumino/signaling@1.11.1(transitive)
- Removed@lumino/virtualdom@1.14.3(transitive)
- Removedajv@6.12.6(transitive)
- Removedfast-json-stable-stringify@2.1.0(transitive)
- Removedjson-schema-traverse@0.4.1(transitive)
- Removedmoment@2.30.1(transitive)
- Removednode-fetch@2.7.0(transitive)
- Removedpunycode@2.3.1(transitive)
- Removedtr46@0.0.3(transitive)
- Removeduri-js@4.4.1(transitive)
- Removedwebidl-conversions@3.0.1(transitive)
- Removedwhatwg-url@5.0.0(transitive)
- Removedws@7.5.10(transitive)
Updated@lumino/coreutils@^1.11.1