iobroker.telegram-menu 0.6.2 → 0.6.4
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 +8 -0
- package/admin/css/color.css +44 -2
- package/admin/css/style.css +11 -31
- package/admin/i18n/de/translations.json +12 -8
- package/admin/i18n/en/translations.json +4 -0
- package/admin/i18n/es/translations.json +5 -1
- package/admin/i18n/fr/translations.json +5 -1
- package/admin/i18n/it/translations.json +4 -0
- package/admin/i18n/nl/translations.json +4 -0
- package/admin/i18n/pl/translations.json +6 -2
- package/admin/i18n/pt/translations.json +4 -0
- package/admin/i18n/ru/translations.json +4 -0
- package/admin/i18n/uk/translations.json +4 -0
- package/admin/i18n/zh-cn/translations.json +19 -15
- package/admin/index_m.html +237 -161
- package/admin/js/main.js +152 -8
- package/admin/words.js +28 -24
- package/io-package.json +27 -27
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,6 +33,14 @@ You can create different groups with separate menus, and then assign users to th
|
|
|
33
33
|
Placeholder for the next version (at the beginning of the line):
|
|
34
34
|
### **WORK IN PROGRESS**
|
|
35
35
|
-->
|
|
36
|
+
### 0.6.4 (2023-08-20)
|
|
37
|
+
|
|
38
|
+
- Trigger check, used triggers are no longer available in action, in nav it is visualized that the trigger is already in use
|
|
39
|
+
|
|
40
|
+
### 0.6.3 (2023-08-17)
|
|
41
|
+
|
|
42
|
+
- user check, least one user must be checked
|
|
43
|
+
|
|
36
44
|
### 0.6.2 (2023-08-14)
|
|
37
45
|
|
|
38
46
|
- Active Menu Output fixed
|
package/admin/css/color.css
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
1
|
/* Color and Border */
|
|
2
|
+
.bg-error,
|
|
3
|
+
.bg-error-doubleUser {
|
|
4
|
+
background-color: #f75555;
|
|
5
|
+
}
|
|
6
|
+
.m .border:has(p.warning) {
|
|
7
|
+
border-color: #f75555;
|
|
8
|
+
}
|
|
9
|
+
.m p.warning {
|
|
10
|
+
color: #f75555 !important;
|
|
11
|
+
}
|
|
2
12
|
.border {
|
|
3
13
|
border: 2px solid white;
|
|
4
14
|
}
|
|
@@ -11,11 +21,43 @@
|
|
|
11
21
|
.startRow {
|
|
12
22
|
background-color: #96d15a;
|
|
13
23
|
}
|
|
14
|
-
|
|
15
|
-
|
|
24
|
+
#tab_action {
|
|
25
|
+
background-color: white;
|
|
26
|
+
border: 5px solid #64b5f6;
|
|
27
|
+
}
|
|
28
|
+
table th {
|
|
29
|
+
background-color: #64b5f6;
|
|
30
|
+
}
|
|
31
|
+
.bg--header {
|
|
32
|
+
background-color: #3399cc !important;
|
|
33
|
+
}
|
|
34
|
+
#tab-action p.name {
|
|
35
|
+
border-bottom: 2px solid white;
|
|
36
|
+
}
|
|
37
|
+
#activMenuOutput {
|
|
38
|
+
border-color: #96d15a;
|
|
39
|
+
}
|
|
40
|
+
.m p.description {
|
|
41
|
+
color: #96d15a !important;
|
|
42
|
+
}
|
|
43
|
+
#btn_expand {
|
|
44
|
+
border: 2px solid white;
|
|
45
|
+
}
|
|
46
|
+
.tab {
|
|
47
|
+
background-color: #eee;
|
|
48
|
+
border: 3px solid #999;
|
|
49
|
+
}
|
|
50
|
+
.tab:hover {
|
|
51
|
+
background-color: #fff;
|
|
52
|
+
border-color: #0e1072;
|
|
53
|
+
}
|
|
54
|
+
li.tab:has(.active) {
|
|
55
|
+
border-color: #477da8 !important;
|
|
56
|
+
}
|
|
16
57
|
.m.react-dark .tab {
|
|
17
58
|
background-color: #575757;
|
|
18
59
|
}
|
|
60
|
+
/* DarkMode */
|
|
19
61
|
.m.react-dark .tabs,
|
|
20
62
|
.m.react-dark header {
|
|
21
63
|
background-color: #2a2a2a;
|
package/admin/css/style.css
CHANGED
|
@@ -45,10 +45,6 @@ label > i[title] {
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
/* Background */
|
|
48
|
-
.bg-error {
|
|
49
|
-
background-color: rgb(243, 96, 96);
|
|
50
|
-
}
|
|
51
|
-
|
|
52
48
|
#group_list .tab {
|
|
53
49
|
text-transform: none;
|
|
54
50
|
}
|
|
@@ -62,8 +58,6 @@ h1 {
|
|
|
62
58
|
margin-top: 10px !important;
|
|
63
59
|
}
|
|
64
60
|
#tab_action {
|
|
65
|
-
background-color: white;
|
|
66
|
-
border: 5px solid #64b5f6;
|
|
67
61
|
width: 99% !important;
|
|
68
62
|
}
|
|
69
63
|
|
|
@@ -120,7 +114,6 @@ h1 {
|
|
|
120
114
|
vertical-align: -5px;
|
|
121
115
|
}
|
|
122
116
|
table th {
|
|
123
|
-
background-color: #64b5f6;
|
|
124
117
|
padding: 0.4rem !important;
|
|
125
118
|
border-radius: 0 !important;
|
|
126
119
|
}
|
|
@@ -131,14 +124,6 @@ table th {
|
|
|
131
124
|
font-size: 0.6rem;
|
|
132
125
|
}
|
|
133
126
|
|
|
134
|
-
div#infoNav .infoText {
|
|
135
|
-
text-align: center;
|
|
136
|
-
color: #ce3a3a !important;
|
|
137
|
-
margin: 0;
|
|
138
|
-
margin-bottom: 5px;
|
|
139
|
-
text-decoration: underline;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
127
|
.row {
|
|
143
128
|
margin-bottom: 3px !important;
|
|
144
129
|
}
|
|
@@ -153,26 +138,22 @@ div#infoNav .infoText {
|
|
|
153
138
|
margin-top: 10px !important;
|
|
154
139
|
}
|
|
155
140
|
.bg--header {
|
|
156
|
-
background-color: rgb(51, 153, 204) !important;
|
|
157
141
|
margin-bottom: 5px !important;
|
|
158
142
|
}
|
|
159
143
|
.noMargin {
|
|
160
144
|
margin: 0 !important;
|
|
161
145
|
}
|
|
162
|
-
|
|
146
|
+
#doubleTriggerInSubmenu {
|
|
147
|
+
text-align: center;
|
|
148
|
+
}
|
|
149
|
+
#doubleTriggerInSubmenu p,
|
|
150
|
+
#doubleTriggerInSubmenu div {
|
|
151
|
+
display: inline-block;
|
|
152
|
+
}
|
|
163
153
|
.tab {
|
|
164
|
-
background-color: #eee;
|
|
165
154
|
margin-right: 5px !important;
|
|
166
|
-
border: 3px solid #999;
|
|
167
155
|
border-radius: 10px;
|
|
168
156
|
}
|
|
169
|
-
.tab:hover {
|
|
170
|
-
background-color: #fff;
|
|
171
|
-
border-color: #0e1072;
|
|
172
|
-
}
|
|
173
|
-
li.tab:has(.active) {
|
|
174
|
-
border-color: #477da8 !important;
|
|
175
|
-
}
|
|
176
157
|
p[data-name="confirm"],
|
|
177
158
|
p[data-name="switch_checkbox"],
|
|
178
159
|
p[data-name="newline_checkbox"] {
|
|
@@ -184,7 +165,6 @@ p[data-name="newline_checkbox"] {
|
|
|
184
165
|
}
|
|
185
166
|
#tab-action p.name {
|
|
186
167
|
margin: 1px 0 !important;
|
|
187
|
-
border-bottom: 2px solid white;
|
|
188
168
|
}
|
|
189
169
|
#tab-action td {
|
|
190
170
|
padding: 0 3px !important;
|
|
@@ -198,7 +178,6 @@ p[data-name="newline_checkbox"] {
|
|
|
198
178
|
#btn_expand {
|
|
199
179
|
width: 29px;
|
|
200
180
|
height: 29px;
|
|
201
|
-
border: 2px solid white;
|
|
202
181
|
border-radius: 5px;
|
|
203
182
|
}
|
|
204
183
|
#group_list {
|
|
@@ -213,12 +192,11 @@ p[data-name="newline_checkbox"] {
|
|
|
213
192
|
margin: 10px;
|
|
214
193
|
text-align: center;
|
|
215
194
|
}
|
|
216
|
-
.
|
|
195
|
+
.hide {
|
|
217
196
|
display: none;
|
|
218
197
|
}
|
|
219
198
|
#activMenuOutput {
|
|
220
199
|
padding: 5px;
|
|
221
|
-
border-color: #96d15a;
|
|
222
200
|
}
|
|
223
201
|
|
|
224
202
|
/*User Selektion */
|
|
@@ -237,9 +215,11 @@ p[data-name="newline_checkbox"] {
|
|
|
237
215
|
margin: 0;
|
|
238
216
|
font-size: small;
|
|
239
217
|
text-decoration: underline;
|
|
240
|
-
color: #96d15a !important;
|
|
241
218
|
}
|
|
242
219
|
|
|
243
220
|
#group_UserInput div {
|
|
244
221
|
display: inline-block;
|
|
245
222
|
}
|
|
223
|
+
.warning {
|
|
224
|
+
text-align: center;
|
|
225
|
+
}
|
|
@@ -14,10 +14,11 @@
|
|
|
14
14
|
"Add new User": "Neuen Benutzer hinzufügen",
|
|
15
15
|
"Add new Username": "Neuen Benutzernamen hinzufügen",
|
|
16
16
|
"All User from Telegram, seperate with": "Alle Benutzer von Telegram, getrennt mit",
|
|
17
|
-
"
|
|
18
|
-
"Call
|
|
17
|
+
"At least one user must be checked, or the menu must be deactivated.": "Mindestens ein Benutzer muss aktiviert sein oder das Menü muss deaktiviert sein.",
|
|
18
|
+
"Call": "Anruf",
|
|
19
|
+
"Call Text": "Anruftext",
|
|
19
20
|
"Cancel": "Stornieren",
|
|
20
|
-
"Choose a trigger": "
|
|
21
|
+
"Choose a trigger": "Wählen Sie einen Auslöser",
|
|
21
22
|
"Choose your option": "Wählen Sie Ihre Option",
|
|
22
23
|
"Close": "Schließen",
|
|
23
24
|
"Confirm": "Bestätigen",
|
|
@@ -33,12 +34,13 @@
|
|
|
33
34
|
"Edit Menu": "Menü bearbeiten",
|
|
34
35
|
"Edit Username": "Benutzernamen bearbeiten",
|
|
35
36
|
"Entry not found!": "Eintrag nicht gefunden!",
|
|
36
|
-
"Filename": "
|
|
37
|
+
"Filename": "Dateiname",
|
|
37
38
|
"Global User activ": "Globaler Benutzer aktiv",
|
|
38
|
-
"Instanze": "
|
|
39
|
+
"Instanze": "Instanze",
|
|
39
40
|
"Navigation": "Navigation",
|
|
40
|
-
"New Row": "Neue
|
|
41
|
-
"Please Save the Nav Settings before you go to the aktions !!!": "Bitte speichern Sie die
|
|
41
|
+
"New Row": "Neue Zeile",
|
|
42
|
+
"Please Save the Nav Settings before you go to the aktions !!!": "Bitte speichern Sie die Navigationseinstellungen, bevor Sie zu den Aktionen gehen !!!",
|
|
43
|
+
"Please check the triggers, save, and reopen this menu to close the error!": "Bitte überprüfen Sie die Auslöser, speichern Sie und öffnen Sie dieses Menü erneut, um den Fehler zu schließen!",
|
|
42
44
|
"Rendering url": "Rendering-URL",
|
|
43
45
|
"Return text": "Rückgabetext",
|
|
44
46
|
"Save": "Speichern",
|
|
@@ -47,7 +49,9 @@
|
|
|
47
49
|
"Startside": "Startseite",
|
|
48
50
|
"Switch": "Schalten",
|
|
49
51
|
"Text will be send if no entry was found!": "Text wird gesendet, wenn kein Eintrag gefunden wurde!",
|
|
50
|
-
"
|
|
52
|
+
"The trigger is allready in use.": "Der Auslöser ist bereits im Einsatz.",
|
|
53
|
+
"There are doubled used Triggers:": "Es werden Trigger doppelt verwendet:",
|
|
54
|
+
"Trigger": "Auslösen",
|
|
51
55
|
"Users for this Group, seperate with": "Benutzer für diese Gruppe, trennen Sie mit",
|
|
52
56
|
"Users from Telegram": "Benutzer von Telegram",
|
|
53
57
|
"Value": "Wert",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"Add new User": "Add new User",
|
|
15
15
|
"Add new Username": "Add new Username",
|
|
16
16
|
"All User from Telegram, seperate with": "All User from Telegram, seperate with",
|
|
17
|
+
"At least one user must be checked, or the menu must be deactivated.": "At least one user must be checked, or the menu must be deactivated.",
|
|
17
18
|
"Call": "Call",
|
|
18
19
|
"Call Text": "Call Text",
|
|
19
20
|
"Cancel": "Cancel",
|
|
@@ -39,6 +40,7 @@
|
|
|
39
40
|
"Navigation": "Navigation",
|
|
40
41
|
"New Row": "New Row",
|
|
41
42
|
"Please Save the Nav Settings before you go to the aktions !!!": "Please Save the Nav Settings before you go to the aktions !!!",
|
|
43
|
+
"Please check the triggers, save, and reopen this menu to close the error!": "Please check the triggers, save, and reopen this menu to close the error!",
|
|
42
44
|
"Rendering url": "Rendering url",
|
|
43
45
|
"Return text": "Return text",
|
|
44
46
|
"Save": "Save",
|
|
@@ -47,6 +49,8 @@
|
|
|
47
49
|
"Startside": "Startside",
|
|
48
50
|
"Switch": "Switch",
|
|
49
51
|
"Text will be send if no entry was found!": "Text will be send if no entry was found!",
|
|
52
|
+
"The trigger is allready in use.": "The trigger is allready in use.",
|
|
53
|
+
"There are doubled used Triggers:": "There are doubled used Triggers:",
|
|
50
54
|
"Trigger": "Trigger",
|
|
51
55
|
"Users for this Group, seperate with": "Users for this Group, seperate with",
|
|
52
56
|
"Users from Telegram": "Users from Telegram",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
" No entry, send to all Users.": "Sin entrada, enviar a todos los usuarios.",
|
|
3
3
|
"Action": "Acción",
|
|
4
4
|
"Active": "Activo",
|
|
5
|
-
"Active Menu:": "Menú
|
|
5
|
+
"Active Menu:": "Menú activo:",
|
|
6
6
|
"Add": "agregar",
|
|
7
7
|
"Add && as a placeholder for the value in the text": "Agregue && como marcador de posición para el valor en el texto",
|
|
8
8
|
"Add && as a placeholder for the value in the text": "Agregue && como marcador de posición para el valor en el texto",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"Add new User": "Añadir nuevo usuario",
|
|
15
15
|
"Add new Username": "Agregar nuevo nombre de usuario",
|
|
16
16
|
"All User from Telegram, seperate with": "Todos los usuarios de Telegram, separados con",
|
|
17
|
+
"At least one user must be checked, or the menu must be deactivated.": "Se debe marcar al menos un usuario o se debe desactivar el menú.",
|
|
17
18
|
"Call": "Llamar",
|
|
18
19
|
"Call Text": "Texto de llamada",
|
|
19
20
|
"Cancel": "Cancelar",
|
|
@@ -39,6 +40,7 @@
|
|
|
39
40
|
"Navigation": "Navegación",
|
|
40
41
|
"New Row": "Fila nueva",
|
|
41
42
|
"Please Save the Nav Settings before you go to the aktions !!!": "¡Guarde la configuración de navegación antes de ir a las acciones!",
|
|
43
|
+
"Please check the triggers, save, and reopen this menu to close the error!": "Verifique los disparadores, guarde y vuelva a abrir este menú para cerrar el error.",
|
|
42
44
|
"Rendering url": "URL de representación",
|
|
43
45
|
"Return text": "Devolver texto",
|
|
44
46
|
"Save": "Ahorrar",
|
|
@@ -47,6 +49,8 @@
|
|
|
47
49
|
"Startside": "Lado de salida",
|
|
48
50
|
"Switch": "Cambiar",
|
|
49
51
|
"Text will be send if no entry was found!": "¡Se enviará texto si no se encontró ninguna entrada!",
|
|
52
|
+
"The trigger is allready in use.": "El gatillo ya está en uso.",
|
|
53
|
+
"There are doubled used Triggers:": "Hay Triggers usados duplicados:",
|
|
50
54
|
"Trigger": "Desencadenar",
|
|
51
55
|
"Users for this Group, seperate with": "Usuarios para este Grupo, separe con",
|
|
52
56
|
"Users from Telegram": "Usuarios de Telegram",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"Add new User": "Ajouter un nouvel utilisateur",
|
|
15
15
|
"Add new Username": "Ajouter un nouveau nom d'utilisateur",
|
|
16
16
|
"All User from Telegram, seperate with": "Tous les utilisateurs de Telegram, séparés par",
|
|
17
|
+
"At least one user must be checked, or the menu must be deactivated.": "Au moins un utilisateur doit être coché ou le menu doit être désactivé.",
|
|
17
18
|
"Call": "Appel",
|
|
18
19
|
"Call Text": "Texte d'appel",
|
|
19
20
|
"Cancel": "Annuler",
|
|
@@ -39,6 +40,7 @@
|
|
|
39
40
|
"Navigation": "La navigation",
|
|
40
41
|
"New Row": "Nouvelle ligne",
|
|
41
42
|
"Please Save the Nav Settings before you go to the aktions !!!": "Veuillez enregistrer les paramètres de navigation avant de vous rendre aux aktions !!!",
|
|
43
|
+
"Please check the triggers, save, and reopen this menu to close the error!": "Veuillez vérifier les déclencheurs, enregistrer et rouvrir ce menu pour fermer l'erreur !",
|
|
42
44
|
"Rendering url": "URL de rendu",
|
|
43
45
|
"Return text": "Texte de retour",
|
|
44
46
|
"Save": "Sauvegarder",
|
|
@@ -47,7 +49,9 @@
|
|
|
47
49
|
"Startside": "Côté départ",
|
|
48
50
|
"Switch": "Changer",
|
|
49
51
|
"Text will be send if no entry was found!": "Le texte sera envoyé si aucune entrée n'a été trouvée !",
|
|
50
|
-
"
|
|
52
|
+
"The trigger is allready in use.": "Le déclencheur est déjà utilisé.",
|
|
53
|
+
"There are doubled used Triggers:": "Il y a des déclencheurs utilisés doublés :",
|
|
54
|
+
"Trigger": "Déclenchement",
|
|
51
55
|
"Users for this Group, seperate with": "Utilisateurs pour ce groupe, séparés par",
|
|
52
56
|
"Users from Telegram": "Utilisateurs de Telegram",
|
|
53
57
|
"Value": "Valeur",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"Add new User": "Aggiungi nuovo utente",
|
|
15
15
|
"Add new Username": "Aggiungi nuovo nome utente",
|
|
16
16
|
"All User from Telegram, seperate with": "Tutti gli utenti di Telegram, separati da",
|
|
17
|
+
"At least one user must be checked, or the menu must be deactivated.": "Almeno un utente deve essere selezionato o il menu deve essere disattivato.",
|
|
17
18
|
"Call": "Chiamata",
|
|
18
19
|
"Call Text": "Chiama il testo",
|
|
19
20
|
"Cancel": "Annulla",
|
|
@@ -39,6 +40,7 @@
|
|
|
39
40
|
"Navigation": "Navigazione",
|
|
40
41
|
"New Row": "Nuova fila",
|
|
41
42
|
"Please Save the Nav Settings before you go to the aktions !!!": "Si prega di salvare le impostazioni di navigazione prima di andare alle azioni!!!",
|
|
43
|
+
"Please check the triggers, save, and reopen this menu to close the error!": "Controlla i trigger, salva e riapri questo menu per chiudere l'errore!",
|
|
42
44
|
"Rendering url": "URL di rendering",
|
|
43
45
|
"Return text": "Restituisci testo",
|
|
44
46
|
"Save": "Salva",
|
|
@@ -47,6 +49,8 @@
|
|
|
47
49
|
"Startside": "Lato iniziale",
|
|
48
50
|
"Switch": "Interruttore",
|
|
49
51
|
"Text will be send if no entry was found!": "Il testo verrà inviato se non è stata trovata alcuna voce!",
|
|
52
|
+
"The trigger is allready in use.": "Il grilletto è già in uso.",
|
|
53
|
+
"There are doubled used Triggers:": "Ci sono Trigger usati raddoppiati:",
|
|
50
54
|
"Trigger": "Grilletto",
|
|
51
55
|
"Users for this Group, seperate with": "Utenti per questo gruppo, separati da",
|
|
52
56
|
"Users from Telegram": "Utenti di Telegram",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"Add new User": "Voeg een nieuwe gebruiker toe",
|
|
15
15
|
"Add new Username": "Nieuwe gebruikersnaam toevoegen",
|
|
16
16
|
"All User from Telegram, seperate with": "Alle gebruikers van Telegram, gescheiden met",
|
|
17
|
+
"At least one user must be checked, or the menu must be deactivated.": "Er moet minimaal één gebruiker zijn aangevinkt, of het menu moet zijn gedeactiveerd.",
|
|
17
18
|
"Call": "Telefoongesprek",
|
|
18
19
|
"Call Text": "Bel tekst",
|
|
19
20
|
"Cancel": "Annuleren",
|
|
@@ -39,6 +40,7 @@
|
|
|
39
40
|
"Navigation": "Navigatie",
|
|
40
41
|
"New Row": "Nieuwe rij",
|
|
41
42
|
"Please Save the Nav Settings before you go to the aktions !!!": "Sla de navigatie-instellingen op voordat u naar de acties gaat !!!",
|
|
43
|
+
"Please check the triggers, save, and reopen this menu to close the error!": "Controleer de triggers, sla op en open dit menu opnieuw om de fout te sluiten!",
|
|
42
44
|
"Rendering url": "URL weergeven",
|
|
43
45
|
"Return text": "Retour tekst",
|
|
44
46
|
"Save": "Redden",
|
|
@@ -47,6 +49,8 @@
|
|
|
47
49
|
"Startside": "Startzijde",
|
|
48
50
|
"Switch": "Schakelaar",
|
|
49
51
|
"Text will be send if no entry was found!": "Er wordt een tekst verzonden als er geen item is gevonden!",
|
|
52
|
+
"The trigger is allready in use.": "De trigger is al in gebruik.",
|
|
53
|
+
"There are doubled used Triggers:": "Er zijn dubbel gebruikte triggers:",
|
|
50
54
|
"Trigger": "Trekker",
|
|
51
55
|
"Users for this Group, seperate with": "Gebruikers voor deze groep, scheid met",
|
|
52
56
|
"Users from Telegram": "Gebruikers van Telegram",
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
"Active": "Aktywny",
|
|
5
5
|
"Active Menu:": "aktywne menu:",
|
|
6
6
|
"Add": "dodać",
|
|
7
|
-
"Add && as a placeholder for the value in the text": "Dodaj && jako symbol zastępczy wartości w tekście",
|
|
8
|
-
"Add && as a placeholder for the value in the text": "Dodaj && jako symbol zastępczy wartości w tekście",
|
|
7
|
+
"Add && as a placeholder for the value in the text": "Dodaj && jako symbol zastępczy dla wartości w tekście",
|
|
8
|
+
"Add && as a placeholder for the value in the text": "Dodaj && jako symbol zastępczy dla wartości w tekście",
|
|
9
9
|
"Add Global User": "Dodaj użytkownika globalnego",
|
|
10
10
|
"Add new Action": "Dodaj nową akcję",
|
|
11
11
|
"Add new Groupname": "Dodaj nową nazwę grupy",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"Add new User": "Dodaj nowego użytkownika",
|
|
15
15
|
"Add new Username": "Dodaj nową nazwę użytkownika",
|
|
16
16
|
"All User from Telegram, seperate with": "Wszyscy użytkownicy z Telegramu, oddzielni od",
|
|
17
|
+
"At least one user must be checked, or the menu must be deactivated.": "Należy zaznaczyć przynajmniej jednego użytkownika lub dezaktywować menu.",
|
|
17
18
|
"Call": "Dzwonić",
|
|
18
19
|
"Call Text": "Tekst połączenia",
|
|
19
20
|
"Cancel": "Anulować",
|
|
@@ -39,6 +40,7 @@
|
|
|
39
40
|
"Navigation": "Nawigacja",
|
|
40
41
|
"New Row": "Nowy rząd",
|
|
41
42
|
"Please Save the Nav Settings before you go to the aktions !!!": "Zapisz ustawienia nawigacji, zanim przejdziesz do działań !!!",
|
|
43
|
+
"Please check the triggers, save, and reopen this menu to close the error!": "Sprawdź wyzwalacze, zapisz i ponownie otwórz to menu, aby zamknąć błąd!",
|
|
42
44
|
"Rendering url": "URL renderowania",
|
|
43
45
|
"Return text": "Zwróć tekst",
|
|
44
46
|
"Save": "Ratować",
|
|
@@ -47,6 +49,8 @@
|
|
|
47
49
|
"Startside": "Strona startowa",
|
|
48
50
|
"Switch": "Przełącznik",
|
|
49
51
|
"Text will be send if no entry was found!": "Tekst zostanie wysłany, jeśli nie znaleziono żadnego wpisu!",
|
|
52
|
+
"The trigger is allready in use.": "Spust jest już w użyciu.",
|
|
53
|
+
"There are doubled used Triggers:": "Wyzwalacze są używane podwójnie:",
|
|
50
54
|
"Trigger": "Spust",
|
|
51
55
|
"Users for this Group, seperate with": "Użytkownicy dla tej grupy, oddzielni od",
|
|
52
56
|
"Users from Telegram": "Użytkownicy Telegrama",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"Add new User": "Adicionar novo usuário",
|
|
15
15
|
"Add new Username": "Adicionar novo nome de usuário",
|
|
16
16
|
"All User from Telegram, seperate with": "Todos os usuários do Telegram, separados por",
|
|
17
|
+
"At least one user must be checked, or the menu must be deactivated.": "Pelo menos um usuário deve ser verificado ou o menu deve ser desativado.",
|
|
17
18
|
"Call": "Chamar",
|
|
18
19
|
"Call Text": "Texto de chamada",
|
|
19
20
|
"Cancel": "Cancelar",
|
|
@@ -39,6 +40,7 @@
|
|
|
39
40
|
"Navigation": "Navegação",
|
|
40
41
|
"New Row": "Nova linha",
|
|
41
42
|
"Please Save the Nav Settings before you go to the aktions !!!": "Salve as configurações de navegação antes de ir para as ações !!!",
|
|
43
|
+
"Please check the triggers, save, and reopen this menu to close the error!": "Verifique os gatilhos, salve e reabra este menu para fechar o erro!",
|
|
42
44
|
"Rendering url": "URL de renderização",
|
|
43
45
|
"Return text": "Texto de retorno",
|
|
44
46
|
"Save": "Salvar",
|
|
@@ -47,6 +49,8 @@
|
|
|
47
49
|
"Startside": "Startside",
|
|
48
50
|
"Switch": "Trocar",
|
|
49
51
|
"Text will be send if no entry was found!": "O texto será enviado se nenhuma entrada for encontrada!",
|
|
52
|
+
"The trigger is allready in use.": "O gatilho já está em uso.",
|
|
53
|
+
"There are doubled used Triggers:": "Existem Gatilhos usados duplicados:",
|
|
50
54
|
"Trigger": "Acionar",
|
|
51
55
|
"Users for this Group, seperate with": "Usuários deste Grupo, separados por",
|
|
52
56
|
"Users from Telegram": "Usuários do Telegram",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"Add new User": "Добавить нового пользователя",
|
|
15
15
|
"Add new Username": "Добавить новое имя пользователя",
|
|
16
16
|
"All User from Telegram, seperate with": "Все пользователи из Telegram, отдельно от",
|
|
17
|
+
"At least one user must be checked, or the menu must be deactivated.": "Должен быть отмечен хотя бы один пользователь, или меню должно быть деактивировано.",
|
|
17
18
|
"Call": "Вызов",
|
|
18
19
|
"Call Text": "Текст вызова",
|
|
19
20
|
"Cancel": "Отмена",
|
|
@@ -39,6 +40,7 @@
|
|
|
39
40
|
"Navigation": "Навигация",
|
|
40
41
|
"New Row": "Новый ряд",
|
|
41
42
|
"Please Save the Nav Settings before you go to the aktions !!!": "Пожалуйста, сохраните настройки навигации, прежде чем переходить к действиям !!!",
|
|
43
|
+
"Please check the triggers, save, and reopen this menu to close the error!": "Пожалуйста, проверьте триггеры, сохраните и снова откройте это меню, чтобы закрыть ошибку!",
|
|
42
44
|
"Rendering url": "Отображение URL",
|
|
43
45
|
"Return text": "Возвращаемый текст",
|
|
44
46
|
"Save": "Сохранять",
|
|
@@ -47,6 +49,8 @@
|
|
|
47
49
|
"Startside": "Стартовая сторона",
|
|
48
50
|
"Switch": "Выключатель",
|
|
49
51
|
"Text will be send if no entry was found!": "Текст будет отправлен, если запись не найдена!",
|
|
52
|
+
"The trigger is allready in use.": "Триггер уже используется.",
|
|
53
|
+
"There are doubled used Triggers:": "Триггеры используются дважды:",
|
|
50
54
|
"Trigger": "Курок",
|
|
51
55
|
"Users for this Group, seperate with": "Пользователи для этой группы, отдельно с",
|
|
52
56
|
"Users from Telegram": "Пользователи из Telegram",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"Add new User": "Додати нового користувача",
|
|
15
15
|
"Add new Username": "Додайте нове ім'я користувача",
|
|
16
16
|
"All User from Telegram, seperate with": "Всі користувачі з Telegram, окремо від",
|
|
17
|
+
"At least one user must be checked, or the menu must be deactivated.": "Принаймні один користувач повинен бути відмічений, або меню має бути дезактивовано.",
|
|
17
18
|
"Call": "Телефонуйте",
|
|
18
19
|
"Call Text": "Текст виклику",
|
|
19
20
|
"Cancel": "Скасувати",
|
|
@@ -39,6 +40,7 @@
|
|
|
39
40
|
"Navigation": "Навігація",
|
|
40
41
|
"New Row": "Новий рядок",
|
|
41
42
|
"Please Save the Nav Settings before you go to the aktions !!!": "Будь ласка, збережіть налаштування навігації, перш ніж переходити до дій !!!",
|
|
43
|
+
"Please check the triggers, save, and reopen this menu to close the error!": "Будь ласка, перевірте тригери, збережіть і знову відкрийте це меню, щоб закрити помилку!",
|
|
42
44
|
"Rendering url": "URL-адреса візуалізації",
|
|
43
45
|
"Return text": "Повернути текст",
|
|
44
46
|
"Save": "зберегти",
|
|
@@ -47,6 +49,8 @@
|
|
|
47
49
|
"Startside": "Стартова сторона",
|
|
48
50
|
"Switch": "Перемикач",
|
|
49
51
|
"Text will be send if no entry was found!": "Текст буде надіслано, якщо запис не знайдено!",
|
|
52
|
+
"The trigger is allready in use.": "Тригер уже використовується.",
|
|
53
|
+
"There are doubled used Triggers:": "Існують подвоєні тригери:",
|
|
50
54
|
"Trigger": "Тригер",
|
|
51
55
|
"Users for this Group, seperate with": "Користувачі для цієї групи, окремо від",
|
|
52
56
|
"Users from Telegram": "Користувачі з Telegram",
|
|
@@ -10,15 +10,16 @@
|
|
|
10
10
|
"Add new Action": "添加新动作",
|
|
11
11
|
"Add new Groupname": "添加新组名",
|
|
12
12
|
"Add new Menu Name": "添加新菜单名称",
|
|
13
|
-
"Add new Navigation": "
|
|
13
|
+
"Add new Navigation": "添加新的导航",
|
|
14
14
|
"Add new User": "添加新用户",
|
|
15
15
|
"Add new Username": "添加新用户名",
|
|
16
|
-
"All User from Telegram, seperate with": "来自 Telegram
|
|
16
|
+
"All User from Telegram, seperate with": "来自 Telegram 的所有用户,分开",
|
|
17
|
+
"At least one user must be checked, or the menu must be deactivated.": "必须至少检查一名用户,否则必须停用菜单。",
|
|
17
18
|
"Call": "称呼",
|
|
18
|
-
"Call Text": "
|
|
19
|
+
"Call Text": "通话短信",
|
|
19
20
|
"Cancel": "取消",
|
|
20
|
-
"Choose a trigger": "
|
|
21
|
-
"Choose your option": "
|
|
21
|
+
"Choose a trigger": "选择一个触发器",
|
|
22
|
+
"Choose your option": "选择您的选项",
|
|
22
23
|
"Close": "关闭",
|
|
23
24
|
"Confirm": "确认",
|
|
24
25
|
"Confirm set value": "确认设定值",
|
|
@@ -28,30 +29,33 @@
|
|
|
28
29
|
"Delete Menu": "删除菜单",
|
|
29
30
|
"Delete User": "删除用户",
|
|
30
31
|
"Directory": "目录",
|
|
31
|
-
"Do you really want to delete the group?": "
|
|
32
|
-
"Each entry may only occur once in the complete navigation": "
|
|
32
|
+
"Do you really want to delete the group?": "您真的要删除该群组吗?",
|
|
33
|
+
"Each entry may only occur once in the complete navigation": "每个条目在完整的导航中只能出现一次",
|
|
33
34
|
"Edit Menu": "编辑菜单",
|
|
34
|
-
"Edit Username": "
|
|
35
|
-
"Entry not found!": "
|
|
35
|
+
"Edit Username": "编辑用户名",
|
|
36
|
+
"Entry not found!": "未找到条目!",
|
|
36
37
|
"Filename": "文件名",
|
|
37
38
|
"Global User activ": "全球用户活跃度",
|
|
38
39
|
"Instanze": "瞬间",
|
|
39
40
|
"Navigation": "导航",
|
|
40
41
|
"New Row": "新行",
|
|
41
|
-
"Please Save the Nav Settings before you go to the aktions !!!": "
|
|
42
|
-
"
|
|
42
|
+
"Please Save the Nav Settings before you go to the aktions !!!": "请在执行操作之前保存导航设置!",
|
|
43
|
+
"Please check the triggers, save, and reopen this menu to close the error!": "请检查触发器,保存并重新打开此菜单以关闭错误!",
|
|
44
|
+
"Rendering url": "渲染网址",
|
|
43
45
|
"Return text": "返回文本",
|
|
44
46
|
"Save": "节省",
|
|
45
47
|
"Select": "选择",
|
|
46
48
|
"Settings": "设置",
|
|
47
|
-
"Startside": "
|
|
49
|
+
"Startside": "开始边",
|
|
48
50
|
"Switch": "转变",
|
|
49
|
-
"Text will be send if no entry was found!": "
|
|
51
|
+
"Text will be send if no entry was found!": "如果未找到条目,将发送文本!",
|
|
52
|
+
"The trigger is allready in use.": "触发器已准备好使用。",
|
|
53
|
+
"There are doubled used Triggers:": "有双重使用的触发器:",
|
|
50
54
|
"Trigger": "扳机",
|
|
51
|
-
"Users for this Group, seperate with": "
|
|
55
|
+
"Users for this Group, seperate with": "该组的用户,分别是",
|
|
52
56
|
"Users from Telegram": "来自 Telegram 的用户",
|
|
53
57
|
"Value": "价值",
|
|
54
|
-
"What is to do?": "
|
|
58
|
+
"What is to do?": "该怎么办?",
|
|
55
59
|
"active": "积极的",
|
|
56
60
|
"telegram-menu adapter settings": "电报菜单的适配器设置"
|
|
57
61
|
}
|