iobroker.telegram-menu 2.2.0 → 2.2.2
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 +10 -1
- package/admin/build/index.js +126 -118
- package/admin/build/index.js.map +4 -4
- package/admin/css/button.css +66 -32
- package/admin/css/colors.css +140 -0
- package/admin/css/custom_classes.css +20 -0
- package/admin/css/description.css +4 -4
- package/admin/css/edit-container.css +43 -31
- package/admin/css/editor-header.css +10 -8
- package/admin/css/header.css +11 -15
- package/admin/css/input-select.css +131 -0
- package/admin/css/row-editor.css +4 -4
- package/admin/css/scrollbar.css +21 -0
- package/admin/css/style.css +203 -518
- package/admin/css/table.css +46 -46
- package/admin/css/textarea.css +3 -3
- package/admin/i18n/de/translations.json +123 -122
- package/admin/i18n/en/translations.json +123 -122
- package/admin/i18n/es/translations.json +7 -6
- package/admin/i18n/fr/translations.json +7 -6
- package/admin/i18n/it/translations.json +7 -6
- package/admin/i18n/nl/translations.json +7 -6
- package/admin/i18n/pl/translations.json +7 -6
- package/admin/i18n/pt/translations.json +7 -6
- package/admin/i18n/ru/translations.json +7 -6
- package/admin/i18n/uk/translations.json +7 -6
- package/admin/i18n/zh-cn/translations.json +7 -6
- package/admin/package-lock.json +9079 -0
- package/admin/package.json +11 -35
- package/admin/words.js +10 -4
- package/build/lib/getstate.js +6 -5
- package/build/lib/getstate.js.map +3 -3
- package/build/lib/global.js +6 -18
- package/build/lib/global.js.map +2 -2
- package/build/lib/string.js +29 -0
- package/build/lib/string.js.map +7 -0
- package/build/lib/utilities.js +9 -7
- package/build/lib/utilities.js.map +2 -2
- package/build/main.js +7 -1
- package/build/main.js.map +2 -2
- package/io-package.json +28 -28
- package/package.json +9 -19
- package/admin/css/input.css +0 -104
|
@@ -1,124 +1,125 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
2
|
+
"ID": "ID",
|
|
3
|
+
"IDs": "IDs",
|
|
4
|
+
"abort": "Abort",
|
|
5
|
+
"ack": "Ack",
|
|
6
|
+
"action": "Action",
|
|
7
|
+
"active": "Active",
|
|
8
|
+
"activeMenu": "Active Menu:",
|
|
9
|
+
"add": "Add",
|
|
10
|
+
"addAction": "Add new Action",
|
|
11
|
+
"addCreatedMenus": "Add already created menus as buttons",
|
|
12
|
+
"addMenu": "Add new Menu Name",
|
|
13
|
+
"binding": "Bindings: First Var with id then the condition and the text.",
|
|
14
|
+
"breakpointNewline": "Breakpoint for a new line, Only insert this in the Text",
|
|
15
|
+
"call": "Call",
|
|
16
|
+
"cancel": "Cancel",
|
|
17
|
+
"changeFunction": "Changes the value in the return text, in this case from true to on and false to off",
|
|
18
|
+
"chooseAction": "Choose an action",
|
|
19
|
+
"close": "Close",
|
|
20
|
+
"commonName": "Outputs the name of the data point",
|
|
21
|
+
"condition": "Condition",
|
|
22
|
+
"conditionMenu": "Condition to open Menu",
|
|
23
|
+
"confirm": "Confirm",
|
|
24
|
+
"confirmDelete": "All data will be lost. Confirm?",
|
|
25
|
+
"confirmMessage": "Confirm with message",
|
|
26
|
+
"confirmSet": "Attention. The value has only been set but not yet confirmed by the Adapter. You can remove noValue, then the value will displayed. Position && replaced by Value or will be put at the End",
|
|
27
|
+
"contactDeveloperForExistingMenu": "If the menu exists but was not found, please create an issue on Github!",
|
|
28
|
+
"convertsUnixTimestamp": "Converts a Unix timestamp to a local time",
|
|
29
|
+
"copy": "Copy",
|
|
30
|
+
"createMenu": "Please create a menu!",
|
|
31
|
+
"delay": "Delay (ms)",
|
|
32
|
+
"delete": "Delete",
|
|
33
|
+
"description": "Description",
|
|
34
|
+
"descriptionInfo": "Here you can enter information about calls. These are displayed when you click on a navigation button in the navigation and it does not have a direct link, but is intercepted via its own script. This way you can keep a better overview.",
|
|
35
|
+
"descriptions": "Descriptions",
|
|
36
|
+
"directory": "Directory",
|
|
37
|
+
"doubleTrigger": "You have double triggers, please remove them!",
|
|
38
|
+
"edit": "Edit",
|
|
39
|
+
"entryNotFound": "Entry not found!",
|
|
40
|
+
"executedMenu": "Executed Menu",
|
|
41
|
+
"filename": "Filename",
|
|
42
|
+
"hide": "Hide",
|
|
43
|
+
"identification": "Identification",
|
|
44
|
+
"inactive": "Inactive",
|
|
45
|
+
"info": "Info",
|
|
46
|
+
"insertID": "To insert an ID, simply insert the block first, select the ID. This will then be automatically inserted in the appropriate place, even if the ID is to be changed. If the code does not recognize the block, the ID is appended to the end.",
|
|
47
|
+
"instance": "Instance",
|
|
48
|
+
"isSubmenu": "Submenu",
|
|
49
|
+
"jsonShoppingList": "The same as above, but when you click on a button, the item will be deleted,the Key for the Items is `name:`, you can also add `time:`. <strong>Important!!!</strong> 'shoppinglist' may not be changed.",
|
|
50
|
+
"jsonTable": "!!! To use it, parseMode must not be active !!! Creates a table from a JSON as Text-Table. The first value is one key of the JSON ,behind it is the name of the column. You can use more than two values.The header must be filled in. Don´t change TextTable.",
|
|
51
|
+
"latitude": "Latitude",
|
|
52
|
+
"lcTimestamp": "LastChange. Converts a Unix timestamp to a local time, the format can be changed, for example to DD.MM.YYYY YY hh:mm:ss:sss",
|
|
53
|
+
"linkedWith": "Is linked with:",
|
|
54
|
+
"longitude": "Longitude",
|
|
55
|
+
"manuallyValue": "This allows you to set a manually value in combination with ID Value, like this: staticValue{id:ID}staticValue",
|
|
56
|
+
"math": "Converts the value, /10 can be replaced",
|
|
57
|
+
"menu": "Menu",
|
|
58
|
+
"menuBack": "When pressed, you jump back to the previous menu",
|
|
59
|
+
"menuCannotBeFound": "The clicked menu cannot be found!",
|
|
60
|
+
"menuDeleteAll": "Generates a button to delete all messages from the bot. The navigation is optional. Simply leave it blank otherwise you can enter a menu that should be called up.",
|
|
61
|
+
"menuDynamicSwitch": "Generates multiply buttons, values can be insert individual. Replace TRIGGER with a unique value. LengthOfRow is optional and can be used to set the number of buttons per row. <br><strong class='breakingChange'>Breaking Change!!!</strong> Please change manually: `[Name1:Value1, Name2:Value2]` to `[Name1|Value1, Name2|Value2]`. Decimal numbers can now also be used as values.",
|
|
62
|
+
"menuList": "Menu list",
|
|
63
|
+
"menuNumber": "The numbers can be completely exchanged. 0-6 indicates the range, and 1 the step size, UNIT is replaced by a unit, but can also be left empty. Replace TRIGGER with a unique value.",
|
|
64
|
+
"menuPercent": "10 can be replaced and indicates the step size 0%, 10%, 20%...! Replace TRIGGER with a unique value. This is used in action SetState. Enter the desired ID. Below value ! insert",
|
|
65
|
+
"menuSwitch": "Generates two buttons, in this case on and off with the respective values true and false. Replace TRIGGER with a unique value.",
|
|
66
|
+
"menuToCopy": "First select the menu to which you want to copy data. Then the line where it should be added. If there is no data yet, click on save and it will be created after querying the new trigger name.",
|
|
67
|
+
"modifiedSubmenuValue": "This allows you to set a modified Submenu Value in combination with a static part , like this: staticValue{value}staticValue",
|
|
68
|
+
"navigation": "Navigation",
|
|
69
|
+
"navigationButtons": "Navigation Buttons",
|
|
70
|
+
"newlineCheckbox": "Newline",
|
|
71
|
+
"no": "No",
|
|
72
|
+
"noValue": "The Value is not specified in the return text",
|
|
73
|
+
"notifiedByChangeOfAnotherState": "If you want to be notified of the change of another data point after you have set the data point in the ID input field. The change will only be shared if it is set with ack:true. It is mandatory to specify a text outside the {}, otherwise it will be added automatically.",
|
|
74
|
+
"ok": "OK",
|
|
75
|
+
"oneTimeKey": "Requests clients to resize the keyboard vertically for optimal fit (e.g., make the keyboard smaller if there are just two rows of buttons). Defaults to false, in which case the custom keyboard is always of the same height as the app's standard keyboard.",
|
|
76
|
+
"overview": "Overview",
|
|
77
|
+
"parseMode": "Parse Mode HTML",
|
|
78
|
+
"parseModeBold": "Text in Parse-Mode is bold",
|
|
79
|
+
"parseModeCode": "Text in Parse-Mode is code",
|
|
80
|
+
"parseModeItalic": "Text in Parse-Mode is italic",
|
|
81
|
+
"parseModeLink": "Text in Parse-Mode is link",
|
|
82
|
+
"password": "Password",
|
|
83
|
+
"percent": "Percent",
|
|
84
|
+
"picSendDelay": "Picture send delay",
|
|
85
|
+
"placeholderInstance": "--Please choose a telegram instance--",
|
|
86
|
+
"placeholderValue": "Placeholder for the value",
|
|
87
|
+
"reallyDelete": "Do you really want to delete this?",
|
|
88
|
+
"renameMenu": "Rename menu name",
|
|
89
|
+
"returnText": "Return text",
|
|
90
|
+
"save": "Save",
|
|
91
|
+
"select": "Select",
|
|
92
|
+
"selectAMenuDropBox": "Select a Menu,select move or copy. Watch out! A user must be active in the selected menu!",
|
|
93
|
+
"selectTargetMenu": "Select a target menu",
|
|
94
|
+
"sendMenuAfterRestart": "Send Menu after Restart",
|
|
95
|
+
"setAck": "Set ack flag",
|
|
96
|
+
"setDynamicValue": "This allows you to write dynamic values into data points. Simply make a call and then you can enter the value in the input field. RequestText: Text to request the value. Type: type of the value(boolean or number). ConfirmText: Text to confirm the value. ID: If you want to confirm from another State, enter the ID here.(This is optional)",
|
|
97
|
+
"setID": "Sets the value of the ID to the val, with ack(confirmed)",
|
|
98
|
+
"setMenu": "Set menu",
|
|
99
|
+
"setWithAck": "Set Value with ack-Flag",
|
|
100
|
+
"settings": "Settings",
|
|
101
|
+
"startMenus": "Start Menus",
|
|
102
|
+
"startSide": "Start side",
|
|
103
|
+
"statusMenu": "Queries the value of the ID and then replaces it with the value, so text can be written around it, it is also possible to use it more than one time in a row. The parameter true is a option to change Value by function change. You have to set it to false if you don´t change this value, but behind this there is another {status: ... request with change:true.",
|
|
104
|
+
"submenu": "Submenu",
|
|
105
|
+
"switch": "Switch",
|
|
106
|
+
"switchCheckbox": "Switch",
|
|
107
|
+
"telegramInstance": "Telegram Instance",
|
|
108
|
+
"telegramUser": "Users from Telegram",
|
|
109
|
+
"text": "Text",
|
|
110
|
+
"textNoEntry": "Text will be send if no entry was found!",
|
|
111
|
+
"toggle": "Toggle",
|
|
112
|
+
"trigger": "Trigger",
|
|
113
|
+
"tsTimestamp": "TimeStamp. Converts a Unix timestamp to a local time, the format can be changed, for example to DD.MM.YYYY YY hh:mm:ss:sss",
|
|
114
|
+
"unusedTrigger": "Unused Trigger",
|
|
115
|
+
"url": "URL",
|
|
116
|
+
"usedTrigger": "Used Trigger",
|
|
117
|
+
"user": "User",
|
|
118
|
+
"userList": "User List",
|
|
119
|
+
"userSelect": "Please select a user, or deactivate the Menu, bevor you can save!",
|
|
120
|
+
"value": "Value",
|
|
121
|
+
"valueRound": "Rounds the value for example to 2 decimal places",
|
|
122
|
+
"values": "Values",
|
|
123
|
+
"yes": "Yes",
|
|
124
|
+
"choose": "Choose"
|
|
124
125
|
}
|
|
@@ -24,11 +24,15 @@
|
|
|
24
24
|
"confirmDelete": "Todos los datos se perderán. ¿Confirmar?",
|
|
25
25
|
"confirmMessage": "Confirmar con mensaje",
|
|
26
26
|
"confirmSet": "Atención. El valor sólo ha sido establecido pero aún no confirmado por el Adaptador. Puede eliminar noValue, luego se mostrará el valor. Posición && reemplazada por Valor o se pondrá al final",
|
|
27
|
+
"contactDeveloperForExistingMenu": "Si el menú existe pero no se encontró, ¡cree un problema en Github!",
|
|
27
28
|
"convertsUnixTimestamp": "Convierte una marca de tiempo de Unix a una hora local",
|
|
28
29
|
"copy": "Copiar",
|
|
29
30
|
"createMenu": "¡Por favor crea un menú!",
|
|
30
31
|
"delay": "Retraso (ms)",
|
|
31
32
|
"delete": "Borrar",
|
|
33
|
+
"description": "Descripción",
|
|
34
|
+
"descriptionInfo": "Aquí puede ingresar información sobre las llamadas. Estos se muestran cuando hace clic en un botón de navegación en la navegación y no tiene un enlace directo, sino que se intercepta a través de su propio script. De esta manera podrá tener una mejor visión general.",
|
|
35
|
+
"descriptions": "Descripciones",
|
|
32
36
|
"directory": "Directorio",
|
|
33
37
|
"doubleTrigger": "Tienes activadores dobles, ¡elimítalos!",
|
|
34
38
|
"edit": "Editar",
|
|
@@ -38,6 +42,7 @@
|
|
|
38
42
|
"hide": "Esconder",
|
|
39
43
|
"identification": "Identificación",
|
|
40
44
|
"inactive": "Inactivo",
|
|
45
|
+
"info": "Información",
|
|
41
46
|
"insertID": "Para insertar una ID, simplemente inserte el bloque primero, seleccione la ID. Este se insertará automáticamente en el lugar apropiado, incluso si se va a cambiar el ID. Si el código no reconoce el bloque, se añade el ID al final.",
|
|
42
47
|
"instance": "Instancia",
|
|
43
48
|
"isSubmenu": "¡Este es un submenú!",
|
|
@@ -51,6 +56,7 @@
|
|
|
51
56
|
"math": "Convierte el valor, /10 se puede reemplazar",
|
|
52
57
|
"menu": "Menú",
|
|
53
58
|
"menuBack": "Al pulsarlo saltas al menú anterior.",
|
|
59
|
+
"menuCannotBeFound": "¡No se puede encontrar el menú en el que se hizo clic!",
|
|
54
60
|
"menuDeleteAll": "Genera un botón para eliminar todos los mensajes del bot. La navegación es opcional. Simplemente déjelo en blanco, de lo contrario podrá ingresar a un menú que debería abrirse.",
|
|
55
61
|
"menuDynamicSwitch": "Genera botones de multiplicar, los valores se pueden insertar individualmente. Reemplace TRIGGER con un valor único. LongitudDeRow es opcional y se puede utilizar para establecer el número de botones por fila. <br><strong class='breakingChange'>¡¡¡Cambio importante!!!</strong> Cambie manualmente: `[Nombre1:Valor1, Nombre2:Valor2]` a `[Nombre1|Valor1, Nombre2|Valor2]`. Ahora también se pueden utilizar números decimales como valores.",
|
|
56
62
|
"menuList": "Lista de menú",
|
|
@@ -115,10 +121,5 @@
|
|
|
115
121
|
"valueRound": "Redondea el valor, por ejemplo, a 2 decimales.",
|
|
116
122
|
"values": "Valores",
|
|
117
123
|
"yes": "Sí",
|
|
118
|
-
"
|
|
119
|
-
"menuCannotBeFound": "¡No se puede encontrar el menú en el que se hizo clic!",
|
|
120
|
-
"contactDeveloperForExistingMenu": "Si el menú existe pero no se encontró, ¡cree un problema en Github!",
|
|
121
|
-
"description": "Descripción",
|
|
122
|
-
"descriptions": "Descripciones",
|
|
123
|
-
"descriptionInfo": "Aquí puede ingresar información sobre las llamadas. Estos se muestran cuando hace clic en un botón de navegación en la navegación y no tiene un enlace directo, sino que se intercepta a través de su propio script. De esta manera podrá tener una mejor visión general."
|
|
124
|
+
"choose": "Elegir"
|
|
124
125
|
}
|
|
@@ -24,11 +24,15 @@
|
|
|
24
24
|
"confirmDelete": "Toutes les données seront perdues. Confirmer?",
|
|
25
25
|
"confirmMessage": "Confirmer par message",
|
|
26
26
|
"confirmSet": "Attention. La valeur a seulement été définie mais n'a pas encore été confirmée par l'adaptateur. Vous pouvez supprimer noValue, la valeur s'affichera alors. Position && remplacé par Value ou sera mis à la fin",
|
|
27
|
+
"contactDeveloperForExistingMenu": "Si le menu existe mais n'a pas été trouvé, veuillez créer un problème sur Github !",
|
|
27
28
|
"convertsUnixTimestamp": "Convertit un horodatage Unix en heure locale",
|
|
28
29
|
"copy": "Copie",
|
|
29
30
|
"createMenu": "S'il vous plaît, créez un menu !",
|
|
30
31
|
"delay": "Délai (ms)",
|
|
31
32
|
"delete": "Supprimer",
|
|
33
|
+
"description": "Description",
|
|
34
|
+
"descriptionInfo": "Ici, vous pouvez saisir des informations sur les appels. Ceux-ci sont affichés lorsque vous cliquez sur un bouton de navigation dans la navigation et celui-ci n'a pas de lien direct, mais est intercepté via son propre script. De cette façon, vous pouvez garder une meilleure vue d’ensemble.",
|
|
35
|
+
"descriptions": "Descriptions",
|
|
32
36
|
"directory": "Annuaire",
|
|
33
37
|
"doubleTrigger": "Vous avez des doubles déclencheurs, veuillez les supprimer !",
|
|
34
38
|
"edit": "Modifier",
|
|
@@ -38,6 +42,7 @@
|
|
|
38
42
|
"hide": "Cacher",
|
|
39
43
|
"identification": "Identification",
|
|
40
44
|
"inactive": "Inactif",
|
|
45
|
+
"info": "Informations",
|
|
41
46
|
"insertID": "Pour insérer un ID, insérez simplement le bloc en premier, sélectionnez l'ID. Celui-ci sera alors automatiquement inséré à l'endroit approprié, même si l'ID doit être modifié. Si le code ne reconnaît pas le bloc, l'ID est ajouté à la fin.",
|
|
42
47
|
"instance": "Exemple",
|
|
43
48
|
"isSubmenu": "Ceci est un sous-menu !",
|
|
@@ -51,6 +56,7 @@
|
|
|
51
56
|
"math": "Convertit la valeur, /10 peut être remplacé",
|
|
52
57
|
"menu": "Menu",
|
|
53
58
|
"menuBack": "Lorsque vous appuyez dessus, vous revenez au menu précédent",
|
|
59
|
+
"menuCannotBeFound": "Le menu cliqué est introuvable !",
|
|
54
60
|
"menuDeleteAll": "Génère un bouton pour supprimer tous les messages du bot. La navigation est facultative. Laissez-le simplement vide, sinon vous pourrez accéder à un menu qui devrait être appelé.",
|
|
55
61
|
"menuDynamicSwitch": "Génère des boutons de multiplication, les valeurs peuvent être insérées individuellement. Remplacez TRIGGER par une valeur unique. LengthOfRow est facultatif et peut être utilisé pour définir le nombre de boutons par ligne. <br><strong class='breakingChange'>Rupture de changement !!!</strong> Veuillez remplacer manuellement : `[Name1:Value1, Name2:Value2]` par `[Name1|Value1, Name2|Value2]`. Les nombres décimaux peuvent désormais également être utilisés comme valeurs.",
|
|
56
62
|
"menuList": "Liste des menus",
|
|
@@ -115,10 +121,5 @@
|
|
|
115
121
|
"valueRound": "Arrondit la valeur par exemple à 2 décimales",
|
|
116
122
|
"values": "Valeurs",
|
|
117
123
|
"yes": "Oui",
|
|
118
|
-
"
|
|
119
|
-
"menuCannotBeFound": "Le menu cliqué est introuvable !",
|
|
120
|
-
"contactDeveloperForExistingMenu": "Si le menu existe mais n'a pas été trouvé, veuillez créer un problème sur Github !",
|
|
121
|
-
"description": "Description",
|
|
122
|
-
"descriptions": "Descriptions",
|
|
123
|
-
"descriptionInfo": "Ici, vous pouvez saisir des informations sur les appels. Ceux-ci sont affichés lorsque vous cliquez sur un bouton de navigation dans la navigation et celui-ci n'a pas de lien direct, mais est intercepté via son propre script. De cette façon, vous pouvez garder une meilleure vue d’ensemble."
|
|
124
|
+
"choose": "Choisir"
|
|
124
125
|
}
|
|
@@ -24,11 +24,15 @@
|
|
|
24
24
|
"confirmDelete": "Tutti i dati andranno persi. Confermare?",
|
|
25
25
|
"confirmMessage": "Conferma con messaggio",
|
|
26
26
|
"confirmSet": "Attenzione. Il valore è stato solo impostato ma non ancora confermato dall'adattatore. Puoi rimuovere noValue, quindi il valore verrà visualizzato. Posizione && sostituito da Valore o verrà inserito alla fine",
|
|
27
|
+
"contactDeveloperForExistingMenu": "Se il menu esiste ma non è stato trovato, crea un problema su Github!",
|
|
27
28
|
"convertsUnixTimestamp": "Converte un timestamp Unix in un'ora locale",
|
|
28
29
|
"copy": "Copia",
|
|
29
30
|
"createMenu": "Per favore crea un menu!",
|
|
30
31
|
"delay": "Ritardo (ms)",
|
|
31
32
|
"delete": "Eliminare",
|
|
33
|
+
"description": "Descrizione",
|
|
34
|
+
"descriptionInfo": "Qui è possibile inserire le informazioni sulle chiamate. Questi vengono visualizzati quando si fa clic su un pulsante di navigazione nella navigazione e non hanno un collegamento diretto, ma vengono intercettati tramite un proprio script. In questo modo puoi mantenere una migliore visione d'insieme.",
|
|
35
|
+
"descriptions": "Descrizioni",
|
|
32
36
|
"directory": "Direttorio",
|
|
33
37
|
"doubleTrigger": "Hai doppi trigger, rimuovili!",
|
|
34
38
|
"edit": "Modificare",
|
|
@@ -38,6 +42,7 @@
|
|
|
38
42
|
"hide": "Nascondere",
|
|
39
43
|
"identification": "Identificazione",
|
|
40
44
|
"inactive": "Inattivo",
|
|
45
|
+
"info": "Informazioni",
|
|
41
46
|
"insertID": "Per inserire un ID è sufficiente inserire prima il blocco, selezionare l'ID. Questo verrà poi inserito automaticamente nell'apposito posto, anche nel caso in cui si voglia modificare l'ID. Se il codice non riconosce il blocco, l'ID viene aggiunto alla fine.",
|
|
42
47
|
"instance": "Esempio",
|
|
43
48
|
"isSubmenu": "Questo è un sottomenu!",
|
|
@@ -51,6 +56,7 @@
|
|
|
51
56
|
"math": "Converte il valore, /10 può essere sostituito",
|
|
52
57
|
"menu": "Menu",
|
|
53
58
|
"menuBack": "Quando viene premuto, si torna al menu precedente",
|
|
59
|
+
"menuCannotBeFound": "Impossibile trovare il menu cliccato!",
|
|
54
60
|
"menuDeleteAll": "Genera un pulsante per eliminare tutti i messaggi dal bot. La navigazione è facoltativa. Basta lasciarlo vuoto altrimenti si accede ad un menu da richiamare.",
|
|
55
61
|
"menuDynamicSwitch": "Genera pulsanti moltiplicativi, i valori possono essere inseriti individualmente. Sostituisci TRIGGER con un valore univoco. LengthOfRow è facoltativo e può essere utilizzato per impostare il numero di pulsanti per riga. <br><strong class='breakingChange'>Modifica rivoluzionaria!!!</strong> Modifica manualmente: `[Nome1:Valore1, Nome2:Valore2]` in `[Nome1|Valore1, Nome2|Valore2]`. I numeri decimali ora possono essere utilizzati anche come valori.",
|
|
56
62
|
"menuList": "Elenco dei menù",
|
|
@@ -115,10 +121,5 @@
|
|
|
115
121
|
"valueRound": "Arrotonda il valore, ad esempio, a 2 cifre decimali",
|
|
116
122
|
"values": "Valori",
|
|
117
123
|
"yes": "SÌ",
|
|
118
|
-
"
|
|
119
|
-
"menuCannotBeFound": "Impossibile trovare il menu cliccato!",
|
|
120
|
-
"contactDeveloperForExistingMenu": "Se il menu esiste ma non è stato trovato, crea un problema su Github!",
|
|
121
|
-
"description": "Descrizione",
|
|
122
|
-
"descriptions": "Descrizioni",
|
|
123
|
-
"descriptionInfo": "Qui è possibile inserire le informazioni sulle chiamate. Questi vengono visualizzati quando si fa clic su un pulsante di navigazione nella navigazione e non hanno un collegamento diretto, ma vengono intercettati tramite un proprio script. In questo modo puoi mantenere una migliore visione d'insieme."
|
|
124
|
+
"choose": "Scegliere"
|
|
124
125
|
}
|
|
@@ -24,11 +24,15 @@
|
|
|
24
24
|
"confirmDelete": "Alle gegevens gaan verloren. Bevestigen?",
|
|
25
25
|
"confirmMessage": "Bevestig met bericht",
|
|
26
26
|
"confirmSet": "Aandacht. De waarde is alleen ingesteld, maar nog niet bevestigd door de adapter. U kunt noValue verwijderen, waarna de waarde wordt weergegeven. Positie && vervangen door Waarde of wordt aan het Einde gezet",
|
|
27
|
+
"contactDeveloperForExistingMenu": "Als het menu bestaat maar niet is gevonden, maak dan een probleem aan op Github!",
|
|
27
28
|
"convertsUnixTimestamp": "Converteert een Unix-tijdstempel naar een lokale tijd",
|
|
28
29
|
"copy": "Kopiëren",
|
|
29
30
|
"createMenu": "Maak alstublieft een menu aan!",
|
|
30
31
|
"delay": "Vertraging (ms)",
|
|
31
32
|
"delete": "Verwijderen",
|
|
33
|
+
"description": "Beschrijving",
|
|
34
|
+
"descriptionInfo": "Hier kunt u informatie over oproepen invoeren. Deze worden weergegeven wanneer u op een navigatieknop in de navigatie klikt en deze heeft geen directe link, maar wordt via een eigen script onderschept. Zo behoud je een beter overzicht.",
|
|
35
|
+
"descriptions": "Beschrijvingen",
|
|
32
36
|
"directory": "Directory",
|
|
33
37
|
"doubleTrigger": "U heeft dubbele triggers, verwijder deze alstublieft!",
|
|
34
38
|
"edit": "Bewerking",
|
|
@@ -38,6 +42,7 @@
|
|
|
38
42
|
"hide": "Verbergen",
|
|
39
43
|
"identification": "Identificatie",
|
|
40
44
|
"inactive": "Inactief",
|
|
45
|
+
"info": "Info",
|
|
41
46
|
"insertID": "Om een ID in te voegen, voegt u eenvoudigweg eerst het blok in en selecteert u de ID. Deze wordt dan automatisch op de juiste plaats ingevoegd, ook als de ID moet worden gewijzigd. Als de code het blok niet herkent, wordt de ID aan het einde toegevoegd.",
|
|
42
47
|
"instance": "Aanleg",
|
|
43
48
|
"isSubmenu": "Dit is een submenu!",
|
|
@@ -51,6 +56,7 @@
|
|
|
51
56
|
"math": "Converteert de waarde, /10 kan worden vervangen",
|
|
52
57
|
"menu": "Menu",
|
|
53
58
|
"menuBack": "Wanneer u hierop drukt, springt u terug naar het vorige menu",
|
|
59
|
+
"menuCannotBeFound": "Het aangeklikte menu kan niet worden gevonden!",
|
|
54
60
|
"menuDeleteAll": "Genereert een knop om alle berichten van de bot te verwijderen. De navigatie is optioneel. Laat het gewoon leeg, anders komt u in een menu dat moet worden opgeroepen.",
|
|
55
61
|
"menuDynamicSwitch": "Genereert vermenigvuldigingsknoppen, waarden kunnen individueel worden ingevoegd. Vervang TRIGGER door een unieke waarde. LengthOfRow is optioneel en kan worden gebruikt om het aantal knoppen per rij in te stellen. <br><strong class='breakingChange'>Breekbare wijziging!!!</strong> Wijzig handmatig: `[Naam1:Waarde1, Naam2:Waarde2]` in `[Naam1|Waarde1, Naam2|Waarde2]`. Decimale getallen kunnen nu ook als waarden worden gebruikt.",
|
|
56
62
|
"menuList": "Menulijst",
|
|
@@ -115,10 +121,5 @@
|
|
|
115
121
|
"valueRound": "Rondt de waarde bijvoorbeeld af op 2 decimalen",
|
|
116
122
|
"values": "Waarden",
|
|
117
123
|
"yes": "Ja",
|
|
118
|
-
"
|
|
119
|
-
"menuCannotBeFound": "Het aangeklikte menu kan niet worden gevonden!",
|
|
120
|
-
"contactDeveloperForExistingMenu": "Als het menu bestaat maar niet is gevonden, maak dan een probleem aan op Github!",
|
|
121
|
-
"description": "Beschrijving",
|
|
122
|
-
"descriptions": "Beschrijvingen",
|
|
123
|
-
"descriptionInfo": "Hier kunt u informatie over oproepen invoeren. Deze worden weergegeven wanneer u op een navigatieknop in de navigatie klikt en deze heeft geen directe link, maar wordt via een eigen script onderschept. Zo behoud je een beter overzicht."
|
|
124
|
+
"choose": "Kiezen"
|
|
124
125
|
}
|
|
@@ -24,11 +24,15 @@
|
|
|
24
24
|
"confirmDelete": "Wszystkie dane zostaną utracone. Potwierdzać?",
|
|
25
25
|
"confirmMessage": "Potwierdź komunikatem",
|
|
26
26
|
"confirmSet": "Uwaga. Wartość została ustawiona, ale jeszcze nie potwierdzona przez adapter. Możesz usunąć noValue, wtedy wartość zostanie wyświetlona. Pozycja && zostanie zastąpiona wartością lub zostanie umieszczona na końcu",
|
|
27
|
+
"contactDeveloperForExistingMenu": "Jeśli menu istnieje, ale nie zostało znalezione, utwórz problem na Githubie!",
|
|
27
28
|
"convertsUnixTimestamp": "Konwertuje znacznik czasu Uniksa na czas lokalny",
|
|
28
29
|
"copy": "Kopia",
|
|
29
30
|
"createMenu": "Proszę stworzyć menu!",
|
|
30
31
|
"delay": "Opóźnienie (ms)",
|
|
31
32
|
"delete": "Usuwać",
|
|
33
|
+
"description": "Opis",
|
|
34
|
+
"descriptionInfo": "Tutaj możesz wprowadzić informacje o połączeniach. Są one wyświetlane po kliknięciu przycisku nawigacyjnego w nawigacji i nie mają bezpośredniego łącza, ale są przechwytywane za pomocą własnego skryptu. W ten sposób będziesz mieć lepszy przegląd.",
|
|
35
|
+
"descriptions": "Opisy",
|
|
32
36
|
"directory": "Informator",
|
|
33
37
|
"doubleTrigger": "Masz podwójne wyzwalacze, usuń je!",
|
|
34
38
|
"edit": "Redagować",
|
|
@@ -38,6 +42,7 @@
|
|
|
38
42
|
"hide": "Ukrywać",
|
|
39
43
|
"identification": "Identyfikacja",
|
|
40
44
|
"inactive": "Nieaktywny",
|
|
45
|
+
"info": "Informacje",
|
|
41
46
|
"insertID": "Aby wstawić identyfikator, wystarczy najpierw wstawić blok i wybrać identyfikator. Zostanie on następnie automatycznie wstawiony w odpowiednim miejscu, nawet jeśli identyfikator ma zostać zmieniony. Jeżeli kod nie rozpoznaje bloku, na końcu dodawany jest identyfikator.",
|
|
42
47
|
"instance": "Przykład",
|
|
43
48
|
"isSubmenu": "To jest podmenu!",
|
|
@@ -51,6 +56,7 @@
|
|
|
51
56
|
"math": "Konwertuje wartość, /10 można zastąpić",
|
|
52
57
|
"menu": "Menu",
|
|
53
58
|
"menuBack": "Po naciśnięciu następuje powrót do poprzedniego menu",
|
|
59
|
+
"menuCannotBeFound": "Nie można znaleźć klikniętego menu!",
|
|
54
60
|
"menuDeleteAll": "Generuje przycisk umożliwiający usunięcie wszystkich wiadomości od bota. Nawigacja jest opcjonalna. Po prostu pozostaw to pole puste, w przeciwnym razie możesz wejść do menu, które należy wywołać.",
|
|
55
61
|
"menuDynamicSwitch": "Generuje przyciski mnożenia, wartości można wstawiać indywidualnie. Zastąp TRIGGER unikalną wartością. DługośćOfRow jest opcjonalna i można jej użyć do ustawienia liczby przycisków w rzędzie. <br><strong class='breakingChange'>Przerywanie zmiany!!!</strong> Zmień ręcznie: `[Nazwa1:Wartość1, Nazwa2:Wartość2]` na `[Nazwa1|Wartość1, Nazwa2|Wartość2]`. Liczb dziesiętnych można teraz używać także jako wartości.",
|
|
56
62
|
"menuList": "Lista menu",
|
|
@@ -115,10 +121,5 @@
|
|
|
115
121
|
"valueRound": "Zaokrągla wartość na przykład do 2 miejsc po przecinku",
|
|
116
122
|
"values": "Wartości",
|
|
117
123
|
"yes": "Tak",
|
|
118
|
-
"
|
|
119
|
-
"menuCannotBeFound": "Nie można znaleźć klikniętego menu!",
|
|
120
|
-
"contactDeveloperForExistingMenu": "Jeśli menu istnieje, ale nie zostało znalezione, utwórz problem na Githubie!",
|
|
121
|
-
"description": "Opis",
|
|
122
|
-
"descriptions": "Opisy",
|
|
123
|
-
"descriptionInfo": "Tutaj możesz wprowadzić informacje o połączeniach. Są one wyświetlane po kliknięciu przycisku nawigacyjnego w nawigacji i nie mają bezpośredniego łącza, ale są przechwytywane za pomocą własnego skryptu. W ten sposób będziesz mieć lepszy przegląd."
|
|
124
|
+
"choose": "Wybierać"
|
|
124
125
|
}
|
|
@@ -24,11 +24,15 @@
|
|
|
24
24
|
"confirmDelete": "Todos os dados serão perdidos. Confirmar?",
|
|
25
25
|
"confirmMessage": "Confirme com mensagem",
|
|
26
26
|
"confirmSet": "Atenção. O valor foi apenas definido, mas ainda não confirmado pelo Adaptador. Você pode remover noValue e o valor será exibido. Posição && substituída por Valor ou será colocada no final",
|
|
27
|
+
"contactDeveloperForExistingMenu": "Se o menu existir, mas não foi encontrado, crie um problema no Github!",
|
|
27
28
|
"convertsUnixTimestamp": "Converte um carimbo de data/hora Unix em uma hora local",
|
|
28
29
|
"copy": "Cópia",
|
|
29
30
|
"createMenu": "Por favor, crie um menu!",
|
|
30
31
|
"delay": "Atraso (ms)",
|
|
31
32
|
"delete": "Excluir",
|
|
33
|
+
"description": "Descrição",
|
|
34
|
+
"descriptionInfo": "Aqui você pode inserir informações sobre chamadas. Estes são exibidos quando você clica em um botão de navegação na navegação e não possui link direto, mas é interceptado através de script próprio. Dessa forma, você pode manter uma visão geral melhor.",
|
|
35
|
+
"descriptions": "Descrições",
|
|
32
36
|
"directory": "Diretório",
|
|
33
37
|
"doubleTrigger": "Você tem gatilhos duplos, remova-os!",
|
|
34
38
|
"edit": "Editar",
|
|
@@ -38,6 +42,7 @@
|
|
|
38
42
|
"hide": "Esconder",
|
|
39
43
|
"identification": "Identificação",
|
|
40
44
|
"inactive": "Inativo",
|
|
45
|
+
"info": "Informações",
|
|
41
46
|
"insertID": "Para inserir um ID, basta inserir primeiro o bloco e selecionar o ID. Este será então inserido automaticamente no local apropriado, mesmo que o ID deva ser alterado. Se o código não reconhecer o bloco, o ID será anexado ao final.",
|
|
42
47
|
"instance": "Exemplo",
|
|
43
48
|
"isSubmenu": "Este é um submenu!",
|
|
@@ -51,6 +56,7 @@
|
|
|
51
56
|
"math": "Converte o valor, /10 pode ser substituído",
|
|
52
57
|
"menu": "Menu",
|
|
53
58
|
"menuBack": "Quando pressionado, você volta ao menu anterior",
|
|
59
|
+
"menuCannotBeFound": "O menu clicado não pode ser encontrado!",
|
|
54
60
|
"menuDeleteAll": "Gera um botão para excluir todas as mensagens do bot. A navegação é opcional. Simplesmente deixe em branco, caso contrário você poderá entrar em um menu que deve ser acessado.",
|
|
55
61
|
"menuDynamicSwitch": "Gera botões de multiplicação, os valores podem ser inseridos individualmente. Substitua TRIGGER por um valor exclusivo. LengthOfRow é opcional e pode ser usado para definir o número de botões por linha. <br><strong class='breakingChange'>Alteração significativa!!!</strong> Altere manualmente: `[Nome1:Valor1, Nome2:Valor2]` para `[Nome1|Valor1, Nome2|Valor2]`. Os números decimais agora também podem ser usados como valores.",
|
|
56
62
|
"menuList": "Lista de cardápios",
|
|
@@ -115,10 +121,5 @@
|
|
|
115
121
|
"valueRound": "Arredonda o valor, por exemplo, para 2 casas decimais",
|
|
116
122
|
"values": "Valores",
|
|
117
123
|
"yes": "Sim",
|
|
118
|
-
"
|
|
119
|
-
"menuCannotBeFound": "O menu clicado não pode ser encontrado!",
|
|
120
|
-
"contactDeveloperForExistingMenu": "Se o menu existir, mas não foi encontrado, crie um problema no Github!",
|
|
121
|
-
"description": "Descrição",
|
|
122
|
-
"descriptions": "Descrições",
|
|
123
|
-
"descriptionInfo": "Aqui você pode inserir informações sobre chamadas. Estes são exibidos quando você clica em um botão de navegação na navegação e não possui link direto, mas é interceptado através de script próprio. Dessa forma, você pode manter uma visão geral melhor."
|
|
124
|
+
"choose": "Escolher"
|
|
124
125
|
}
|
|
@@ -24,11 +24,15 @@
|
|
|
24
24
|
"confirmDelete": "Все данные будут потеряны. Подтверждать?",
|
|
25
25
|
"confirmMessage": "Подтвердите сообщением",
|
|
26
26
|
"confirmSet": "Внимание. Значение только установлено, но еще не подтверждено адаптером. Вы можете удалить noValue, тогда значение будет отображаться. Позиция && заменяется значением или будет помещена в конец",
|
|
27
|
+
"contactDeveloperForExistingMenu": "Если меню существует, но не найдено, создайте проблему на Github!",
|
|
27
28
|
"convertsUnixTimestamp": "Преобразует временную метку Unix в местное время.",
|
|
28
29
|
"copy": "Копировать",
|
|
29
30
|
"createMenu": "Пожалуйста, создайте меню!",
|
|
30
31
|
"delay": "Задержка (мс)",
|
|
31
32
|
"delete": "Удалить",
|
|
33
|
+
"description": "Описание",
|
|
34
|
+
"descriptionInfo": "Здесь вы можете ввести информацию о звонках. Они отображаются при нажатии на кнопку навигации в навигации и не имеют прямой ссылки, а перехватываются собственным скриптом. Таким образом, вы сможете лучше видеть ситуацию.",
|
|
35
|
+
"descriptions": "Описания",
|
|
32
36
|
"directory": "Каталог",
|
|
33
37
|
"doubleTrigger": "У вас есть двойные триггеры, пожалуйста, удалите их!",
|
|
34
38
|
"edit": "Редактировать",
|
|
@@ -38,6 +42,7 @@
|
|
|
38
42
|
"hide": "Скрывать",
|
|
39
43
|
"identification": "Идентификация",
|
|
40
44
|
"inactive": "Неактивный",
|
|
45
|
+
"info": "Информация",
|
|
41
46
|
"insertID": "Чтобы вставить идентификатор, просто сначала вставьте блок, выберите идентификатор. Затем он будет автоматически вставлен в соответствующее место, даже если идентификатор необходимо изменить. Если код не распознает блок, идентификатор добавляется в конец.",
|
|
42
47
|
"instance": "Пример",
|
|
43
48
|
"isSubmenu": "Это подменю!",
|
|
@@ -51,6 +56,7 @@
|
|
|
51
56
|
"math": "Преобразует значение, /10 можно заменить",
|
|
52
57
|
"menu": "Меню",
|
|
53
58
|
"menuBack": "При нажатии вы возвращаетесь в предыдущее меню.",
|
|
59
|
+
"menuCannotBeFound": "Выбранное меню не может быть найдено!",
|
|
54
60
|
"menuDeleteAll": "Создает кнопку для удаления всех сообщений от бота. Навигация не является обязательной. Просто оставьте это поле пустым, иначе вы сможете войти в меню, которое необходимо вызвать.",
|
|
55
61
|
"menuDynamicSwitch": "Генерирует кнопки умножения, значения можно вставлять индивидуально. Замените TRIGGER уникальным значением. ДлинаOfRow является необязательной и может использоваться для установки количества кнопок в строке. <br><strong class='breakingChange'>Критическое изменение!!!</strong> Измените вручную: `[Name1:Value1, Name2:Value2]` на `[Name1|Value1, Name2|Value2]`. Десятичные числа теперь также можно использовать в качестве значений.",
|
|
56
62
|
"menuList": "Список меню",
|
|
@@ -115,10 +121,5 @@
|
|
|
115
121
|
"valueRound": "Округляет значение, например, до 2 десятичных знаков.",
|
|
116
122
|
"values": "Ценности",
|
|
117
123
|
"yes": "Да",
|
|
118
|
-
"
|
|
119
|
-
"menuCannotBeFound": "Выбранное меню не может быть найдено!",
|
|
120
|
-
"contactDeveloperForExistingMenu": "Если меню существует, но не найдено, создайте проблему на Github!",
|
|
121
|
-
"description": "Описание",
|
|
122
|
-
"descriptions": "Описания",
|
|
123
|
-
"descriptionInfo": "Здесь вы можете ввести информацию о звонках. Они отображаются при нажатии на кнопку навигации в навигации и не имеют прямой ссылки, а перехватываются собственным скриптом. Таким образом, вы сможете лучше видеть ситуацию."
|
|
124
|
+
"choose": "Выбирать"
|
|
124
125
|
}
|