You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
desc: "Select, which languages the frontend should offer for users to translate to. Only 'English', no dropdown will be shown. No selection, all available translations are available (default).",
562
+
default: "",
563
+
valid: LOCALE,
564
+
to_val: (v)=>to_list_of_locale(v),// note: we store this as a comma separated list
565
+
to_display: (val: string|string[])=>{
566
+
constlist=Array.isArray(val) ? val : to_list_of_locale(val);
567
+
returnisEqual(list,LOCALE)
568
+
? "All translations are available."
569
+
: list.join(", ");
570
+
},
571
+
tags: ["I18N"],
572
+
},
545
573
google_analytics: {
546
574
name: "Google Analytics",
547
575
desc: `A Google Analytics GA4 tag for tracking usage of your site ("G-...").`,
0 commit comments