1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Fix i18n in typedInput of header area

This commit is contained in:
Kazuhito Yokoi 2022-05-04 23:54:23 +09:00
parent 50ae29a08c
commit 84a3884ffc

View File

@ -127,12 +127,14 @@
{ value: "Cache-Control", label: "Cache-Control", hasValue: false }, { value: "Cache-Control", label: "Cache-Control", hasValue: false },
{ value: "User-Agent", label: "User-Agent", hasValue: false }, { value: "User-Agent", label: "User-Agent", hasValue: false },
{ value: "Location", label: "Location", hasValue: false }, { value: "Location", label: "Location", hasValue: false },
{ value: "other", label: "other", hasValue: true, icon: "red/images/typedInput/az.png" }, { value: "other", label: RED._("node-red:httpin.label.other"),
hasValue: true, icon: "red/images/typedInput/az.png" },
{ value: "msg", label: "msg.", hasValue: true }, { value: "msg", label: "msg.", hasValue: true },
] ]
const headerOptions = {}; const headerOptions = {};
const defaultOptions = [ const defaultOptions = [
{ value: "other", label: "other", hasValue: true, icon: "red/images/typedInput/az.png" }, { value: "other", label: RED._("node-red:httpin.label.other"),
hasValue: true, icon: "red/images/typedInput/az.png" },
{ value: "msg", label: "msg.", hasValue: true }, { value: "msg", label: "msg.", hasValue: true },
]; ];
headerOptions["accept"] = [ headerOptions["accept"] = [