diff --git a/src/components/app/CreatorView.svelte b/src/components/app/CreatorView.svelte index 387d7fb83..f0b4c8f3a 100644 --- a/src/components/app/CreatorView.svelte +++ b/src/components/app/CreatorView.svelte @@ -1,6 +1,7 @@ diff --git a/src/routes/gallery/[galleryid]/+page.svelte b/src/routes/gallery/[galleryid]/+page.svelte index 5224592e9..424de00e9 100644 --- a/src/routes/gallery/[galleryid]/+page.svelte +++ b/src/routes/gallery/[galleryid]/+page.svelte @@ -52,8 +52,8 @@ onDestroy(() => pageUnsubscribe()); - $: name = gallery?.getName($locales.getLocale()); - $: description = gallery?.getDescription($locales.getLocale()); + $: name = gallery?.getName($locales); + $: description = gallery?.getDescription($locales); $: editable = gallery ? $user !== null && gallery.getCurators().includes($user.uid) : false; diff --git a/src/routes/login/Login.svelte b/src/routes/login/Login.svelte index df3ab7b74..71b34bf0c 100644 --- a/src/routes/login/Login.svelte +++ b/src/routes/login/Login.svelte @@ -23,6 +23,7 @@ import Subheader from '../../components/app/Subheader.svelte'; import MarkupHtmlView from '../../components/concepts/MarkupHTMLView.svelte'; import Note from '../../components/widgets/Note.svelte'; + import { HiddenUsernameEmailDomain } from '../../db/Creator'; let user = getUser(); let success: boolean | undefined = undefined; @@ -102,12 +103,12 @@ } async function startUsernameLogin() { - const emailUsername = `${username}@wordplay.dev`; + const emailUsername = `${username}${HiddenUsernameEmailDomain}`; if (auth && usernameSubmittable) { try { await signInWithEmailAndPassword( auth, - `${username}@wordplay.dev`, + `${username}${HiddenUsernameEmailDomain}`, password ); } catch (error) { diff --git a/src/routes/login/Profile.svelte b/src/routes/login/Profile.svelte index 32cf00cb9..f95de652d 100644 --- a/src/routes/login/Profile.svelte +++ b/src/routes/login/Profile.svelte @@ -12,10 +12,11 @@ import Feedback from '../../components/app/Feedback.svelte'; import { isModerator } from '../../models/Moderation'; import { getLoginErrorDescription } from './login'; + import { HiddenUsernameEmailDomain } from '../../db/Creator'; export let user: User; - $: username = user.email?.endsWith('@wordplay.dev'); + $: username = user.email?.endsWith(HiddenUsernameEmailDomain); let newEmail: string; @@ -78,7 +79,7 @@ function readyToDeleteAccount(email: string) { const finalEmail = username - ? `${confirmEmail}@wordplay.dev` + ? `${confirmEmail}${HiddenUsernameEmailDomain}` : confirmEmail; return validEmail(finalEmail) && finalEmail === user.email; } @@ -86,7 +87,7 @@
{user.displayName ?? '😃'}{user.email?.replace('@wordplay.dev', '')}
{user.email?.replace(HiddenUsernameEmailDomain, '')}
diff --git a/static/locales/es-MX/es-MX.json b/static/locales/es-MX/es-MX.json index 0485ab76b..eddafe057 100644 --- a/static/locales/es-MX/es-MX.json +++ b/static/locales/es-MX/es-MX.json @@ -2705,5 +2705,27 @@ "label": "omitir" } } + }, + "gallery": { + "games": { + "name": "$?", + "description": "$?" + }, + "visualizations": { + "name": "$?", + "description": "$?" + }, + "motion": { + "name": "$?", + "description": "$?" + }, + "av": { + "name": "$?", + "description": "$?" + }, + "tools": { + "name": "$?", + "description": "$?" + } } } diff --git a/static/locales/example/example.json b/static/locales/example/example.json index f2645a533..d740f64cf 100644 --- a/static/locales/example/example.json +++ b/static/locales/example/example.json @@ -2616,5 +2616,27 @@ "label": "$?" } } + }, + "gallery": { + "games": { + "name": "$?", + "description": "$?" + }, + "visualizations": { + "name": "$?", + "description": "$?" + }, + "motion": { + "name": "$?", + "description": "$?" + }, + "av": { + "name": "$?", + "description": "$?" + }, + "tools": { + "name": "$?", + "description": "$?" + } } } diff --git a/static/locales/zh-CN/zh-CN.json b/static/locales/zh-CN/zh-CN.json index b642c5656..afc40d751 100644 --- a/static/locales/zh-CN/zh-CN.json +++ b/static/locales/zh-CN/zh-CN.json @@ -2616,5 +2616,27 @@ "label": "$?" } } + }, + "gallery": { + "games": { + "name": "$?", + "description": "$?" + }, + "visualizations": { + "name": "$?", + "description": "$?" + }, + "motion": { + "name": "$?", + "description": "$?" + }, + "av": { + "name": "$?", + "description": "$?" + }, + "tools": { + "name": "$?", + "description": "$?" + } } } diff --git a/static/schemas/Locale.json b/static/schemas/Locale.json index 6f6c10787..cb68b0110 100644 --- a/static/schemas/Locale.json +++ b/static/schemas/Locale.json @@ -224,7 +224,7 @@ ], "type": "object" }, - "FunctionText<[def-alias-1127088073-3684-3930-1127088073-0-7891,def-alias-1127088073-3684-3930-1127088073-0-7891]>": { + "FunctionText<[def-alias-1127088073-3796-4042-1127088073-0-8003,def-alias-1127088073-3796-4042-1127088073-0-8003]>": { "additionalProperties": false, "properties": { "doc": { @@ -252,7 +252,7 @@ ], "type": "object" }, - "FunctionText<[def-alias-1127088073-3684-3930-1127088073-0-7891]>": { + "FunctionText<[def-alias-1127088073-3796-4042-1127088073-0-8003]>": { "additionalProperties": false, "properties": { "doc": { @@ -280,6 +280,99 @@ ], "type": "object" }, + "GalleryTexts": { + "additionalProperties": false, + "properties": { + "av": { + "additionalProperties": false, + "properties": { + "description": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "description" + ], + "type": "object" + }, + "games": { + "additionalProperties": false, + "properties": { + "description": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "description" + ], + "type": "object" + }, + "motion": { + "additionalProperties": false, + "properties": { + "description": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "description" + ], + "type": "object" + }, + "tools": { + "additionalProperties": false, + "properties": { + "description": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "description" + ], + "type": "object" + }, + "visualizations": { + "additionalProperties": false, + "properties": { + "description": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "description" + ], + "type": "object" + } + }, + "required": [ + "games", + "visualizations", + "motion", + "av", + "tools" + ], + "type": "object" + }, "InternalConflictText": { "$ref": "#/definitions/Template", "description": "The text that describes this confilct type." @@ -323,11 +416,11 @@ "description": "Functions in the type", "properties": { "and": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "equals": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "not": { @@ -335,11 +428,11 @@ "description": "See `en-US.json` for documentation" }, "notequal": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "or": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" } }, @@ -395,7 +488,7 @@ "description": "Functions in the type", "properties": { "add": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "all": { @@ -437,7 +530,7 @@ "type": "object" }, "append": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "combine": { @@ -479,7 +572,7 @@ "type": "object" }, "equals": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "filter": { @@ -563,11 +656,11 @@ "description": "See `en-US.json` for documentation" }, "has": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "join": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "last": { @@ -579,7 +672,7 @@ "description": "See `en-US.json` for documentation" }, "notequals": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "random": { @@ -587,7 +680,7 @@ "description": "See `en-US.json` for documentation" }, "replace": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%2Cdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%2Cdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "reverse": { @@ -595,11 +688,11 @@ "description": "See `en-US.json` for documentation" }, "sans": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "sansAll": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "sansFirst": { @@ -649,7 +742,7 @@ "type": "object" }, "subsequence": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%2Cdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%2Cdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "translate": { @@ -821,7 +914,7 @@ "description": "Functions in the type", "properties": { "equals": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "filter": { @@ -863,15 +956,15 @@ "type": "object" }, "notequals": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "remove": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "set": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%2Cdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%2Cdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "size": { @@ -917,7 +1010,7 @@ "type": "object" }, "unset": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" } }, @@ -988,11 +1081,11 @@ "description": "Functions in the type", "properties": { "equals": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "notequals": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" } }, @@ -1277,7 +1370,7 @@ "description": "Functions in the type", "properties": { "add": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "cos": { @@ -1285,43 +1378,43 @@ "description": "See `en-US.json` for documentation" }, "divide": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "equal": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "greaterOrEqual": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "greaterThan": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "lessOrEqual": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "lessThan": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "max": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "min": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "multiply": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "notequal": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "positive": { @@ -1329,15 +1422,15 @@ "description": "See `en-US.json` for documentation" }, "power": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "remainder": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "root": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "round": { @@ -1357,7 +1450,7 @@ "description": "See `en-US.json` for documentation" }, "subtract": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" } }, @@ -1431,15 +1524,15 @@ "description": "Functions in the type", "properties": { "add": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "difference": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "equals": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "filter": { @@ -1481,15 +1574,15 @@ "type": "object" }, "intersection": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "notequals": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "remove": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "size": { @@ -1535,7 +1628,7 @@ "type": "object" }, "union": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" } }, @@ -1603,11 +1696,11 @@ "description": "Functions in the type", "properties": { "equals": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "notequal": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" } }, @@ -1662,11 +1755,11 @@ "description": "Functions in the type", "properties": { "equals": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "notequal": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" } }, @@ -1726,19 +1819,19 @@ "description": "Functions in the type", "properties": { "combine": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "ends": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "equals": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "has": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "length": { @@ -1746,19 +1839,19 @@ "description": "See `en-US.json` for documentation" }, "notequals": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "repeat": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "segment": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" }, "starts": { - "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3684-3930-1127088073-0-7891%5D%3E", + "$ref": "#/definitions/FunctionText%3C%5Bdef-alias-1127088073-3796-4042-1127088073-0-8003%5D%3E", "description": "See `en-US.json` for documentation" } }, @@ -1802,6 +1895,10 @@ ], "type": "object" }, + "gallery": { + "$ref": "#/definitions/GalleryTexts", + "description": "Default gallery text" + }, "input": { "additionalProperties": false, "description": "Documentation for input types.", @@ -10024,6 +10121,7 @@ "input", "output", "ui", + "gallery", "moderation" ], "type": "object"