iobroker.yamaha 0.4.0 → 0.5.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.
@@ -0,0 +1,17 @@
1
+ # Configure here which dependency updates should be merged automatically.
2
+ # The recommended configuration is the following:
3
+ - match:
4
+ # Only merge patches for production dependencies
5
+ dependency_type: production
6
+ update_type: "semver:patch"
7
+ - match:
8
+ # Except for security fixes, here we allow minor patches
9
+ dependency_type: production
10
+ update_type: "security:minor"
11
+ - match:
12
+ # and development dependencies can have a minor update, too
13
+ dependency_type: development
14
+ update_type: "semver:minor"
15
+
16
+ # The syntax is based on the legacy dependabot v1 automerged_updates syntax, see:
17
+ # https://dependabot.com/docs/config-file/#automerged_updates
@@ -1,7 +1,17 @@
1
1
  version: 2
2
2
  updates:
3
- - package-ecosystem: npm
4
- directory: "/"
5
- schedule:
6
- interval: daily
7
- open-pull-requests-limit: 10
3
+ - package-ecosystem: github-actions
4
+ directory: "/"
5
+ schedule:
6
+ interval: monthly
7
+ time: "04:00"
8
+ timezone: Europe/Berlin
9
+ - package-ecosystem: npm
10
+ directory: "/"
11
+ schedule:
12
+ interval: monthly
13
+ time: "04:00"
14
+ timezone: Europe/Berlin
15
+ open-pull-requests-limit: 20
16
+ versioning-strategy: increase
17
+
@@ -0,0 +1,25 @@
1
+ # Automatically merge Dependabot PRs when version comparison is within the range
2
+ # that is configured in .github/auto-merge.yml
3
+
4
+ name: Auto-Merge Dependabot PRs
5
+
6
+ on:
7
+ # WARNING: This needs to be run in the PR base, DO NOT build untrusted code in this action
8
+ # details under https://github.blog/changelog/2021-02-19-github-actions-workflows-triggered-by-dependabot-prs-will-run-with-read-only-permissions/
9
+ pull_request_target:
10
+
11
+ jobs:
12
+ auto-merge:
13
+ if: github.actor == 'dependabot[bot]'
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout code
17
+ uses: actions/checkout@v3
18
+
19
+ - name: Check if PR should be auto-merged
20
+ uses: ahmadnassri/action-dependabot-auto-merge@v2
21
+ with:
22
+ # This must be a personal access token with push access
23
+ github-token: ${{ secrets.AUTO_MERGE_TOKEN }}
24
+ # By default, squash and merge, so Github chooses nice commit messages
25
+ command: squash and merge
@@ -0,0 +1,147 @@
1
+ name: Test and Release
2
+
3
+ # Run this job on all pushes and pull requests
4
+ # as well as tags with a semantic version
5
+ on:
6
+ push:
7
+ branches:
8
+ - "*"
9
+ tags:
10
+ # normal versions
11
+ - "v[0-9]+.[0-9]+.[0-9]+"
12
+ # pre-releases
13
+ - "v[0-9]+.[0-9]+.[0-9]+-**"
14
+ pull_request: {}
15
+
16
+ jobs:
17
+ # Performs quick checks before the expensive test runs
18
+ check-and-lint:
19
+ if: contains(github.event.head_commit.message, '[skip ci]') == false
20
+
21
+ runs-on: ubuntu-latest
22
+
23
+ strategy:
24
+ matrix:
25
+ node-version: [14.x]
26
+
27
+ steps:
28
+ - name: Checkout code
29
+ uses: actions/checkout@v3
30
+
31
+ - name: Use Node.js ${{ matrix.node-version }}
32
+ uses: actions/setup-node@v3
33
+ with:
34
+ node-version: ${{ matrix.node-version }}
35
+
36
+ - name: Install Dependencies
37
+ run: npm ci
38
+
39
+ - name: Lint source code
40
+ run: npm run lint
41
+ - name: Test package files
42
+ run: npm run test:package
43
+
44
+ # Runs adapter tests on all supported node versions and OSes
45
+ adapter-tests:
46
+ if: contains(github.event.head_commit.message, '[skip ci]') == false
47
+
48
+ needs: [check-and-lint]
49
+
50
+ runs-on: ${{ matrix.os }}
51
+ strategy:
52
+ matrix:
53
+ node-version: [12.x, 14.x, 16.x]
54
+ os: [ubuntu-latest, windows-latest, macos-latest]
55
+
56
+ steps:
57
+ - name: Checkout code
58
+ uses: actions/checkout@v3
59
+
60
+ - name: Use Node.js ${{ matrix.node-version }}
61
+ uses: actions/setup-node@v3
62
+ with:
63
+ node-version: ${{ matrix.node-version }}
64
+
65
+ - name: Install Dependencies
66
+ run: npm ci
67
+
68
+ - name: Run unit tests
69
+ run: npm run test:unit
70
+
71
+ - name: Run integration tests (unix only)
72
+ if: startsWith(runner.OS, 'windows') == false
73
+ run: DEBUG=testing:* npm run test:integration
74
+
75
+ - name: Run integration tests (windows only)
76
+ if: startsWith(runner.OS, 'windows')
77
+ run: set DEBUG=testing:* & npm run test:integration
78
+
79
+ # Deploys the final package to NPM
80
+ deploy:
81
+ needs: [adapter-tests]
82
+
83
+ # Trigger this step only when a commit on any branch is tagged with a version number
84
+ if: |
85
+ contains(github.event.head_commit.message, '[skip ci]') == false &&
86
+ github.event_name == 'push' &&
87
+ startsWith(github.ref, 'refs/tags/v')
88
+
89
+ runs-on: ubuntu-latest
90
+ strategy:
91
+ matrix:
92
+ node-version: [14.x]
93
+
94
+ steps:
95
+ - name: Checkout code
96
+ uses: actions/checkout@v3
97
+
98
+ - name: Use Node.js ${{ matrix.node-version }}
99
+ uses: actions/setup-node@v3
100
+ with:
101
+ node-version: ${{ matrix.node-version }}
102
+
103
+ - name: Extract the version and commit body from the tag
104
+ id: extract_release
105
+ # The body may be multiline, therefore newlines and % need to be escaped
106
+ run: |
107
+ VERSION="${{ github.ref }}"
108
+ VERSION=${VERSION##*/v}
109
+ echo "::set-output name=VERSION::$VERSION"
110
+ BODY=$(git show -s --format=%b)
111
+ BODY="${BODY//'%'/'%25'}"
112
+ BODY="${BODY//$'\n'/'%0A'}"
113
+ BODY="${BODY//$'\r'/'%0D'}"
114
+ echo "::set-output name=BODY::$BODY"
115
+
116
+ - name: Publish package to npm
117
+ run: |
118
+ npm config set //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}
119
+ npm whoami
120
+ npm publish
121
+
122
+ - name: Create Github Release
123
+ uses: actions/create-release@v1
124
+ env:
125
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
126
+ with:
127
+ tag_name: ${{ github.ref }}
128
+ release_name: Release v${{ steps.extract_release.outputs.VERSION }}
129
+ draft: false
130
+ # Prerelease versions create prereleases on Github
131
+ prerelease: ${{ contains(steps.extract_release.outputs.VERSION, '-') }}
132
+ body: ${{ steps.extract_release.outputs.BODY }}
133
+
134
+ - name: Notify Sentry.io about the release
135
+ run: |
136
+ npm i -g @sentry/cli
137
+ export SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}
138
+ export SENTRY_URL=https://sentry.iobroker.net
139
+ export SENTRY_ORG=iobroker
140
+ export SENTRY_PROJECT=iobroker-yamaha
141
+ export SENTRY_VERSION=iobroker.yamaha@${{ steps.extract_release.outputs.VERSION }}
142
+ sentry-cli releases new $SENTRY_VERSION
143
+ sentry-cli releases set-commits $SENTRY_VERSION --auto
144
+ sentry-cli releases finalize $SENTRY_VERSION
145
+
146
+ # Add the following line BEFORE finalize if sourcemap uploads are needed
147
+ # sentry-cli releases files $SENTRY_VERSION upload-sourcemaps build/
@@ -0,0 +1,3 @@
1
+ {
2
+ "plugins": ["iobroker", "license"]
3
+ }
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015-2020 soef <soef@gmx.net>
3
+ Copyright (c) 2015-2022 soef <soef@gmx.net>
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,14 +1,22 @@
1
1
  ![Logo](admin/yamaha.png)
2
2
  ## ioBroker.yamaha
3
3
 
4
- ![Number of Installations](http://iobroker.live/badges/yamaha-installed.svg) ![Number of Installations](http://iobroker.live/badges/yamaha-stable.svg) [![NPM version](http://img.shields.io/npm/v/iobroker.yamaha.svg)](https://www.npmjs.com/package/iobroker.yamaha)
5
- [![Tests](http://img.shields.io/travis/iobroker-community-adapters/ioBroker.yamaha/master.svg)](https://travis-ci.org/iobroker-community-adapters/ioBroker.yamaha)
6
- [![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat)](https://github.com/iobroker-community-adapters/iobroker.yamaha/blob/master/LICENSE)
4
+ ![Number of Installations](http://iobroker.live/badges/yamaha-installed.svg)
5
+ ![Number of Installations](http://iobroker.live/badges/yamaha-stable.svg)
6
+ [![NPM version](http://img.shields.io/npm/v/iobroker.yamaha.svg)](https://www.npmjs.com/package/iobroker.yamaha)
7
+
8
+ ![Test and Release](https://github.com/iobroker-community-adapters/ioBroker.yamaha/workflows/Test%20and%20Release/badge.svg)
9
+ [![Translation status](https://weblate.iobroker.net/widgets/adapters/-/yamaha/svg-badge.svg)](https://weblate.iobroker.net/engage/adapters/?utm_source=widget)
10
+ [![Downloads](https://img.shields.io/npm/dm/iobroker.yamaha.svg)](https://www.npmjs.com/package/iobroker.yamaha)
11
+
12
+ **This adapter uses Sentry libraries to automatically report exceptions and code errors to the developers.** For more details and for information how to disable the error reporting see [Sentry-Plugin Documentation](https://github.com/ioBroker/plugin-sentry#plugin-sentry)! Sentry reporting is used starting with js-controller 3.0.
7
13
 
8
14
  #### Description
9
15
 
10
16
  Adapter for Yamaha AV receivers
11
17
 
18
+ Discussion please at github or at https://forum.iobroker.net/topic/53174/weiterentwicklung-yamaha-adapter
19
+
12
20
  ### Initial Creation
13
21
  This adapter was initialy created by @soef at https://github.com/soef/ioBroker.yamaha but not maintained any more, so we moved it to iobroker-community so that bugs could be fixed. thanks @soef for his work.
14
22
 
@@ -25,7 +33,7 @@ iobroker upload yamaha
25
33
  ``
26
34
 
27
35
  #### Realtime
28
- The states will be created, when they accur. I.e. use your ir-remote and change something and you will see the new states.
36
+ The states will be created, when they occur. I.e. use your ir-remote and change something and you will see the new states.
29
37
  Only one connection is accepted by yamaha devices.
30
38
 
31
39
  #### Requirements
@@ -35,42 +43,70 @@ You have to enable "network standby" function in the configuration of your recei
35
43
 
36
44
 
37
45
  ## Changelog
38
- ### 0.3.21
46
+ ### 0.5.2 (2022-04-23)
47
+ * (Apollon77) Fix crash cases reported by Sentry
48
+
49
+ ### 0.5.1 (2022-03-29)
50
+ * (Apollon77) Fix crash cases reported by Sentry
51
+ * (Sneak-L8) fix type of pureDirect
52
+
53
+ ### 0.5.0 (2022-03-08)
54
+ * IMPORTANT: js-controller 2.0 is needed at least
55
+ * (Apollon77) Add Sentry for crash reporting
56
+
57
+ ### 0.4.1
58
+ * (Sneak-L8) "toggleMute" now toggle mute state (instead of always muting)
59
+
60
+ ### 0.4.0
39
61
  * (Garfonso) added admin 3 compatibility and more meta-data stuff.
40
62
  * (Garfonso) added compact mode support.
63
+
41
64
  ### 0.3.20
42
65
  * (Garfonso) adjusted local copy of soef.js to js-controller 3.0
43
66
  * (Garfonso) updated meta information (links etc) to iobroker-community-adapters
67
+
44
68
  ### 0.3.19
45
69
  * (soef) Changelog added to readme
70
+
46
71
  ### 0.3.18
47
72
  * (Apollon77) Update utils.js and usage, CI Testing and deps
73
+
48
74
  ### 0.3.17
49
75
  * (Apollon77) update basic package-file testing
76
+
50
77
  ### 0.3.16
51
78
  * (soef) node 0.12 removed from testing
79
+
52
80
  ### 0.3.15
53
81
  * (soef) Enhance CI testing
82
+
54
83
  ### 0.3.14
55
84
  * (soef) Possible exception in reconnect fixed
85
+
56
86
  ### 0.3.12
57
87
  * (soef) Version incr. for npm
88
+
58
89
  ### 0.3.11
59
90
  * (soef) reconnect overworked
91
+
60
92
  ### 0.3.10
61
93
  * (soef) realtime Ping now configurable
94
+
62
95
  ### 0.3.8
63
96
  * (soef) realtime states optimized
97
+
64
98
  ### 0.3.7
65
99
  * (soef) fix typo in creating realtime states
100
+
66
101
  ### 0.3.6
67
102
  * (soef) timeout to connect reduced
68
103
 
69
104
  <!--
105
+
70
106
  ### License
71
107
  The MIT License (MIT)
72
108
 
73
- Copyright (c) 2015-2020 soef <soef@gmx.net>
109
+ Copyright (c) 2015-2022 soef <soef@gmx.net>
74
110
 
75
111
  Permission is hereby granted, free of charge, to any person obtaining a copy
76
112
  of this software and associated documentation files (the "Software"), to deal
@@ -0,0 +1,9 @@
1
+ {
2
+ "IP Address": "IP Adresse",
3
+ "Ping interval": "Intervall zum Pingen der Echtzeitverbindung in Sekunden (0 = keine)",
4
+ "Poll Interval": "Abfrageintervall",
5
+ "Realtime Options": "Echtzeitoptionen",
6
+ "Use Realtime": "Echtzeitmodus verwenden",
7
+ "refreshOnRealtime": "Aktualisieren Sie alle Datenpunkte bei einem Echtzeitereignis",
8
+ "template adapter settings": "Adaptereinstellungen für template"
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "IP Address": "IP Address",
3
+ "Ping interval": "Interval to ping the realtime connection in sec, (0=none)",
4
+ "Poll Interval": "Poll Interval",
5
+ "Realtime Options": "Realtime Options",
6
+ "Use Realtime": "Use Realtime",
7
+ "refreshOnRealtime": "Refresh all datapoints on realtime event",
8
+ "template adapter settings": "Adapter settings for template"
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "IP Address": "Dirección IP",
3
+ "Ping interval": "Intervalo para hacer ping a la conexión en tiempo real en segundos, (0 = ninguno)",
4
+ "Poll Interval": "Intervalo de encuesta",
5
+ "Realtime Options": "Opciones en tiempo real",
6
+ "Use Realtime": "Usar en tiempo real",
7
+ "refreshOnRealtime": "Actualizar todos los puntos de datos en un evento en tiempo real",
8
+ "template adapter settings": "Ajustes del adaptador para template"
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "IP Address": "Adresse IP",
3
+ "Ping interval": "Intervalle de ping de la connexion en temps réel en sec, (0 = aucun)",
4
+ "Poll Interval": "Intervalle de sondage",
5
+ "Realtime Options": "Options en temps réel",
6
+ "Use Realtime": "Utiliser en temps réel",
7
+ "refreshOnRealtime": "Actualisez tous les points de données sur l'événement en temps réel",
8
+ "template adapter settings": "Paramètres d'adaptateur pour template"
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "IP Address": "Indirizzo IP",
3
+ "Ping interval": "Intervallo per eseguire il ping della connessione in tempo reale in secondi, (0 = nessuno)",
4
+ "Poll Interval": "Intervallo di polling",
5
+ "Realtime Options": "Opzioni in tempo reale",
6
+ "Use Realtime": "Usa in tempo reale",
7
+ "refreshOnRealtime": "Aggiorna tutti i punti dati sull'evento in tempo reale",
8
+ "template adapter settings": "Impostazioni dell'adattatore per template"
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "IP Address": "IP adres",
3
+ "Ping interval": "Interval om de realtime verbinding in seconden te pingen, (0 = geen)",
4
+ "Poll Interval": "Pollinterval",
5
+ "Realtime Options": "Realtime opties",
6
+ "Use Realtime": "Gebruik Realtime",
7
+ "refreshOnRealtime": "Ververs alle datapunten op een realtime evenement",
8
+ "template adapter settings": "Adapterinstellingen voor template"
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "IP Address": "Adres IP",
3
+ "Ping interval": "Interwał pingowania połączenia w czasie rzeczywistym w sekundach (0 = brak)",
4
+ "Poll Interval": "Interwał sondowania",
5
+ "Realtime Options": "Opcje w czasie rzeczywistym",
6
+ "Use Realtime": "Użyj czasu rzeczywistego",
7
+ "refreshOnRealtime": "Odśwież wszystkie punkty danych podczas wydarzenia w czasie rzeczywistym",
8
+ "template adapter settings": "Ustawienia adaptera dla template"
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "IP Address": "Endereço de IP",
3
+ "Ping interval": "Intervalo para executar ping na conexão em tempo real em segundos, (0 = nenhum)",
4
+ "Poll Interval": "Intervalo de votação",
5
+ "Realtime Options": "Opções em tempo real",
6
+ "Use Realtime": "Usar em tempo real",
7
+ "refreshOnRealtime": "Atualizar todos os pontos de dados no evento em tempo real",
8
+ "template adapter settings": "Configurações do adaptador para template"
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "IP Address": "Айпи адрес",
3
+ "Ping interval": "Интервал проверки связи в реальном времени в секундах (0 = нет)",
4
+ "Poll Interval": "Интервал опроса",
5
+ "Realtime Options": "Варианты в реальном времени",
6
+ "Use Realtime": "Использовать в реальном времени",
7
+ "refreshOnRealtime": "Обновить все точки данных на событии в реальном времени",
8
+ "template adapter settings": "Настройки адаптера для template"
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "IP Address": "IP地址",
3
+ "Ping interval": "ping实时连接的时间间隔,以秒为单位,(0 =无)",
4
+ "Poll Interval": "轮询间隔",
5
+ "Realtime Options": "实时选项",
6
+ "Use Realtime": "使用实时",
7
+ "refreshOnRealtime": "在实时事件上刷新所有数据点",
8
+ "template adapter settings": "template的适配器设置"
9
+ }
package/admin/words.js CHANGED
@@ -2,88 +2,11 @@
2
2
  'use strict';
3
3
 
4
4
  systemDictionary = {
5
- 'template adapter settings': {
6
- 'en': 'Adapter settings for template',
7
- 'de': 'Adaptereinstellungen für template',
8
- 'ru': 'Настройки адаптера для template',
9
- 'pt': 'Configurações do adaptador para template',
10
- 'nl': 'Adapterinstellingen voor template',
11
- 'fr': "Paramètres d'adaptateur pour template",
12
- 'it': "Impostazioni dell'adattatore per template",
13
- 'es': 'Ajustes del adaptador para template',
14
- 'pl': 'Ustawienia adaptera dla template',
15
- 'zh-cn': 'template的适配器设置'
16
- },
17
- "IP Address": {
18
- "en": "IP Address",
19
- "de": "IP Adresse",
20
- "ru": "Айпи адрес",
21
- "pt": "Endereço de IP",
22
- "nl": "IP adres",
23
- "fr": "Adresse IP",
24
- "it": "Indirizzo IP",
25
- "es": "Dirección IP",
26
- "pl": "Adres IP",
27
- "zh-cn": "IP地址"
28
- },
29
- "Poll Interval": {
30
- "en": "Poll Interval",
31
- "de": "Abfrageintervall",
32
- "ru": "Интервал опроса",
33
- "pt": "Intervalo de votação",
34
- "nl": "Pollinterval",
35
- "fr": "Intervalle de sondage",
36
- "it": "Intervallo di polling",
37
- "es": "Intervalo de encuesta",
38
- "pl": "Interwał sondowania",
39
- "zh-cn": "轮询间隔"
40
- },
41
- "Realtime Options": {
42
- "en": "Realtime Options",
43
- "de": "Echtzeitoptionen",
44
- "ru": "Варианты в реальном времени",
45
- "pt": "Opções em tempo real",
46
- "nl": "Realtime opties",
47
- "fr": "Options en temps réel",
48
- "it": "Opzioni in tempo reale",
49
- "es": "Opciones en tiempo real",
50
- "pl": "Opcje w czasie rzeczywistym",
51
- "zh-cn": "实时选项"
52
- },
53
- "Use Realtime": {
54
- "en": "Use Realtime",
55
- "de": "Echtzeitmodus verwenden",
56
- "ru": "Использовать в реальном времени",
57
- "pt": "Usar em tempo real",
58
- "nl": "Gebruik Realtime",
59
- "fr": "Utiliser en temps réel",
60
- "it": "Usa in tempo reale",
61
- "es": "Usar en tiempo real",
62
- "pl": "Użyj czasu rzeczywistego",
63
- "zh-cn": "使用实时"
64
- },
65
- "refreshOnRealtime": {
66
- "en": "Refresh all datapoints on realtime event",
67
- "de": "Aktualisieren Sie alle Datenpunkte bei einem Echtzeitereignis",
68
- "ru": "Обновить все точки данных на событии в реальном времени",
69
- "pt": "Atualizar todos os pontos de dados no evento em tempo real",
70
- "nl": "Ververs alle datapunten op een realtime evenement",
71
- "fr": "Actualisez tous les points de données sur l'événement en temps réel",
72
- "it": "Aggiorna tutti i punti dati sull'evento in tempo reale",
73
- "es": "Actualizar todos los puntos de datos en un evento en tiempo real",
74
- "pl": "Odśwież wszystkie punkty danych podczas wydarzenia w czasie rzeczywistym",
75
- "zh-cn": "在实时事件上刷新所有数据点"
76
- },
77
- "Ping interval": {
78
- "en": "Interval to ping the realtime connection in sec, (0=none)",
79
- "de": "Intervall zum Pingen der Echtzeitverbindung in Sekunden (0 = keine)",
80
- "ru": "Интервал проверки связи в реальном времени в секундах (0 = нет)",
81
- "pt": "Intervalo para executar ping na conexão em tempo real em segundos, (0 = nenhum)",
82
- "nl": "Interval om de realtime verbinding in seconden te pingen, (0 = geen)",
83
- "fr": "Intervalle de ping de la connexion en temps réel en sec, (0 = aucun)",
84
- "it": "Intervallo per eseguire il ping della connessione in tempo reale in secondi, (0 = nessuno)",
85
- "es": "Intervalo para hacer ping a la conexión en tiempo real en segundos, (0 = ninguno)",
86
- "pl": "Interwał pingowania połączenia w czasie rzeczywistym w sekundach (0 = brak)",
87
- "zh-cn": "ping实时连接的时间间隔,以秒为单位,(0 =无)"
88
- }
89
- };
5
+ "IP Address": { "en": "IP Address", "de": "IP Adresse", "ru": "Айпи адрес", "pt": "Endereço de IP", "nl": "IP adres", "fr": "Adresse IP", "it": "Indirizzo IP", "es": "Dirección IP", "pl": "Adres IP", "zh-cn": "IP地址"},
6
+ "Ping interval": { "en": "Interval to ping the realtime connection in sec, (0=none)", "de": "Intervall zum Pingen der Echtzeitverbindung in Sekunden (0 = keine)", "ru": "Интервал проверки связи в реальном времени в секундах (0 = нет)", "pt": "Intervalo para executar ping na conexão em tempo real em segundos, (0 = nenhum)", "nl": "Interval om de realtime verbinding in seconden te pingen, (0 = geen)", "fr": "Intervalle de ping de la connexion en temps réel en sec, (0 = aucun)", "it": "Intervallo per eseguire il ping della connessione in tempo reale in secondi, (0 = nessuno)", "es": "Intervalo para hacer ping a la conexión en tiempo real en segundos, (0 = ninguno)", "pl": "Interwał pingowania połączenia w czasie rzeczywistym w sekundach (0 = brak)", "zh-cn": "ping实时连接的时间间隔,以秒为单位,(0 =无)"},
7
+ "Poll Interval": { "en": "Poll Interval", "de": "Abfrageintervall", "ru": "Интервал опроса", "pt": "Intervalo de votação", "nl": "Pollinterval", "fr": "Intervalle de sondage", "it": "Intervallo di polling", "es": "Intervalo de encuesta", "pl": "Interwał sondowania", "zh-cn": "轮询间隔"},
8
+ "Realtime Options": { "en": "Realtime Options", "de": "Echtzeitoptionen", "ru": "Варианты в реальном времени", "pt": "Opções em tempo real", "nl": "Realtime opties", "fr": "Options en temps réel", "it": "Opzioni in tempo reale", "es": "Opciones en tiempo real", "pl": "Opcje w czasie rzeczywistym", "zh-cn": "实时选项"},
9
+ "Use Realtime": { "en": "Use Realtime", "de": "Echtzeitmodus verwenden", "ru": "Использовать в реальном времени", "pt": "Usar em tempo real", "nl": "Gebruik Realtime", "fr": "Utiliser en temps réel", "it": "Usa in tempo reale", "es": "Usar en tiempo real", "pl": "Użyj czasu rzeczywistego", "zh-cn": "使用实时"},
10
+ "refreshOnRealtime": { "en": "Refresh all datapoints on realtime event", "de": "Aktualisieren Sie alle Datenpunkte bei einem Echtzeitereignis", "ru": "Обновить все точки данных на событии в реальном времени", "pt": "Atualizar todos os pontos de dados no evento em tempo real", "nl": "Ververs alle datapunten op een realtime evenement", "fr": "Actualisez tous les points de données sur l'événement en temps réel", "it": "Aggiorna tutti i punti dati sull'evento in tempo reale", "es": "Actualizar todos los puntos de datos en un evento en tiempo real", "pl": "Odśwież wszystkie punkty danych podczas wydarzenia w czasie rzeczywistym", "zh-cn": "在实时事件上刷新所有数据点"},
11
+ "template adapter settings": { "en": "Adapter settings for template", "de": "Adaptereinstellungen für template", "ru": "Настройки адаптера для template", "pt": "Configurações do adaptador para template", "nl": "Adapterinstellingen voor template", "fr": "Paramètres d'adaptateur pour template", "it": "Impostazioni dell'adattatore per template", "es": "Ajustes del adaptador para template", "pl": "Ustawienia adaptera dla template", "zh-cn": "template的适配器设置"},
12
+ };