From c4e061c8b2d6b82c84321598f76659dc49d3f145 Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:14:11 +0100 Subject: [PATCH 01/22] Update dyndns.php - Ajout ChangeIP --- desktop/php/dyndns.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/desktop/php/dyndns.php b/desktop/php/dyndns.php index 509cfc6..30962fe 100755 --- a/desktop/php/dyndns.php +++ b/desktop/php/dyndns.php @@ -121,10 +121,11 @@ + -
+
@@ -137,13 +138,13 @@
-
+
-
+
@@ -191,4 +192,4 @@
- \ No newline at end of file + From f71ee71b288ea54d0c9b206d228d1b90878d7c7d Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:17:02 +0100 Subject: [PATCH 02/22] Update dyndns.class.php - Ajout ChangeIP --- core/class/dyndns.class.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/core/class/dyndns.class.php b/core/class/dyndns.class.php index 406a7c1..7a0bb0f 100755 --- a/core/class/dyndns.class.php +++ b/core/class/dyndns.class.php @@ -276,6 +276,16 @@ public function updateIP() { throw new Exception(__('Erreur de mise à jour de infomaniak.com : ', __FILE__) . $result); } break; + case 'changeip': + $url = 'https://'. urlencode($this->getConfiguration('username')) . ':' . urlencode($this->getConfiguration('password')) . '@nic.changeip.com/nic/update?&hostname='.$this->getConfiguration('hostname').'&ip='.$ip; + log::add('dyndns', 'debug', $url); + $request_http = new com_http($url); + $request_http->setUserAgent('Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.12) Gecko/20070508 Firefox/1.5.0.12'); + $result = $request_http->exec(); + if (strpos($result, '200') === false) { + throw new Exception(__('-Erreur de mise à jour de changeip.com : ', __FILE__) . $result); + } + break; } } From 326174405656a2d4db06c81a7dd2f71e8d70805e Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:18:26 +0100 Subject: [PATCH 03/22] Update changelog.md - Ajout ChangeIP --- docs/fr_FR/changelog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/fr_FR/changelog.md b/docs/fr_FR/changelog.md index bae0652..14a845e 100644 --- a/docs/fr_FR/changelog.md +++ b/docs/fr_FR/changelog.md @@ -4,6 +4,10 @@ > >Pour rappel s'il n'y a pas d'information sur la mise à jour, c'est que celle-ci concerne uniquement de la mise à jour de documentation, de traduction ou de texte +# 04/02/2025 + +- Support de changeip.com + # 24/10/2024 - Optimisation de la récuperation de l'ip From 9806a42c0d1d672cc4dc14d234e011c49906751d Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:20:05 +0100 Subject: [PATCH 04/22] Update changelog.md - Ajout ChangeIP --- docs/en_US/changelog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/en_US/changelog.md b/docs/en_US/changelog.md index 42550e3..39f22fb 100644 --- a/docs/en_US/changelog.md +++ b/docs/en_US/changelog.md @@ -4,6 +4,10 @@ > >As a reminder if there is no information on the update, it means that it only concerns the updating of documentation, translation or text +# 02/04/2025 + +- changeip.com support + # 10/24/2024 - Optimization of IP recovery From bcdd3092d7971eab1d2f351468df02cd07535067 Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:20:56 +0100 Subject: [PATCH 05/22] Update changelog.md - Ajout changeIP --- docs/de_DE/changelog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/de_DE/changelog.md b/docs/de_DE/changelog.md index e18aac5..ccb2040 100644 --- a/docs/de_DE/changelog.md +++ b/docs/de_DE/changelog.md @@ -4,6 +4,10 @@ > >Zur Erinnerung: Wenn keine Informationen zum Update vorhanden sind, bedeutet dies, dass es sich nur um die Aktualisierung von Dokumentation, Übersetzung oder Text handelt +# 04.02.2025 + +- changeip.com-Unterstützung + # 24.10.2024 - Optimierung der IP-Wiederherstellung From 177944b99746620d60e0ef2978a834da3f8aff3a Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:21:44 +0100 Subject: [PATCH 06/22] Update changelog.md - Ajout changeip --- docs/es_ES/changelog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/es_ES/changelog.md b/docs/es_ES/changelog.md index 173ae3b..04be8ae 100644 --- a/docs/es_ES/changelog.md +++ b/docs/es_ES/changelog.md @@ -4,6 +4,10 @@ > >Como recordatorio si no hay información sobre la actualización, significa que solo se refiere a la actualización de documentación, traducción o texto +# 04/02/2025 + +- Soporte changeip.com + # 24/10/2024 - Optimización de la recuperación de IP From 4f44591ce29b91c7a8480da55c14c5578da035ca Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:24:01 +0100 Subject: [PATCH 07/22] Update de_DE.json - Ajout changeip --- docs/i18n/de_DE.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/i18n/de_DE.json b/docs/i18n/de_DE.json index aee966b..b81ccb2 100644 --- a/docs/i18n/de_DE.json +++ b/docs/i18n/de_DE.json @@ -2,6 +2,8 @@ "changelog.md": { "Changelog Dyndns": "Changelog Dyndns", "Pour rappel s'il n'y a pas d'information sur la mise à jour, c'est que celle-ci concerne uniquement de la mise à jour de documentation, de traduction ou de texte": "Zur Erinnerung: Wenn keine Informationen zum Update vorhanden sind, bedeutet dies, dass es sich nur um die Aktualisierung von Dokumentation, Übersetzung oder Text handelt", + "04\/02\/2025": "04.02.2025", + "Support de changeip.com": "changeip.com-Unterstützung", "24\/10\/2024": "24.10.2024", "Optimisation de la récuperation de l'ip": "Optimierung der IP-Wiederherstellung", "31\/05\/2024": "31.05.2024", @@ -159,4 +161,4 @@ "*Important*": "*Wichtig*", " Important*": " Wichtig*" } -} \ No newline at end of file +} From fd9066b75b52cce9371ea59af3291e301ef5a798 Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:25:23 +0100 Subject: [PATCH 08/22] Update en_US.json - Ajout changeip --- docs/i18n/en_US.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/i18n/en_US.json b/docs/i18n/en_US.json index 98ce484..6ff8c46 100644 --- a/docs/i18n/en_US.json +++ b/docs/i18n/en_US.json @@ -2,6 +2,8 @@ "changelog.md": { "Changelog Dyndns": "Changelog dyndns", "Pour rappel s'il n'y a pas d'information sur la mise à jour, c'est que celle-ci concerne uniquement de la mise à jour de documentation, de traduction ou de texte": "As a reminder if there is no information on the update, it means that it only concerns the updating of documentation, translation or text", + "04\/02\/2025": "02\/04\/2025", + "Support de changeip.com": "changeip.com support", "24\/10\/2024": "10\/24\/2024", "Optimisation de la récuperation de l'ip": "Optimization of IP recovery", "31\/05\/2024": "05\/31\/2024", @@ -159,4 +161,4 @@ "*Important*": "*Important*", " Important*": " Important*" } -} \ No newline at end of file +} From 17d48b4131622034328bff9bf75e133a4cda01a0 Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:26:08 +0100 Subject: [PATCH 09/22] Update es_ES.json - Ajout changeip --- docs/i18n/es_ES.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/i18n/es_ES.json b/docs/i18n/es_ES.json index b1c7f33..0d3f7e5 100644 --- a/docs/i18n/es_ES.json +++ b/docs/i18n/es_ES.json @@ -2,6 +2,8 @@ "changelog.md": { "Changelog Dyndns": "Registro de cambios dyndns", "Pour rappel s'il n'y a pas d'information sur la mise à jour, c'est que celle-ci concerne uniquement de la mise à jour de documentation, de traduction ou de texte": "Como recordatorio si no hay información sobre la actualización, significa que solo se refiere a la actualización de documentación, traducción o texto", + "04\/02\/2022": "04\/02\/2022", + "Support de changeip.com": "Soporte changeip.com", "24\/10\/2024": "24\/10\/2024", "Optimisation de la récuperation de l'ip": "Optimización de la recuperación de IP", "31\/05\/2024": "31\/05\/2024", @@ -159,4 +161,4 @@ "*Important*": "*Importante*", " Important*": " Importante*" } -} \ No newline at end of file +} From e368806f630a5c03defacfda0231b6a67c3b0226 Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:27:00 +0100 Subject: [PATCH 10/22] Update fr_FR.json - Ajout changeip --- docs/i18n/fr_FR.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/i18n/fr_FR.json b/docs/i18n/fr_FR.json index f55fe00..8641b42 100644 --- a/docs/i18n/fr_FR.json +++ b/docs/i18n/fr_FR.json @@ -3,6 +3,8 @@ "Changelog Dyndns": "Changelog Dyndns", "IMPORTANT": "IMPORTANT", "Pour rappel s'il n'y a pas d'information sur la mise à jour, c'est que celle-ci concerne uniquement de la mise à jour de documentation, de traduction ou de texte": "Pour rappel s'il n'y a pas d'information sur la mise à jour, c'est que celle-ci concerne uniquement de la mise à jour de documentation, de traduction ou de texte", + "04\/02\/2025": "04\/02\/2025", + "Support de changeip.com": "Support de changeip.com", "24\/10\/2024": "24\/10\/2024", "Optimisation de la récuperation de l'ip": "Optimisation de la récuperation de l'ip", "31\/05\/2024": "31\/05\/2024", @@ -81,4 +83,4 @@ "Tous les": "Tous les", "ne supportent pas ou ne fournissent pas les informations pour IPv6": "ne supportent pas ou ne fournissent pas les informations pour IPv6" } -} \ No newline at end of file +} From bf2df77e9d9b19fc946a2d39d07d4bb99ed044b7 Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:27:40 +0100 Subject: [PATCH 11/22] Update pt_PT.json - Ajout changeip --- docs/i18n/pt_PT.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/i18n/pt_PT.json b/docs/i18n/pt_PT.json index f534899..7babf6b 100644 --- a/docs/i18n/pt_PT.json +++ b/docs/i18n/pt_PT.json @@ -2,6 +2,8 @@ "changelog.md": { "Changelog Dyndns": "Changelog dyndns", "Pour rappel s'il n'y a pas d'information sur la mise à jour, c'est que celle-ci concerne uniquement de la mise à jour de documentation, de traduction ou de texte": "Como lembrete, se não houver informações sobre a atualização, isso significa que se trata apenas da atualização da documentação, tradução ou texto", + "04\/02\/2022": "04\/02\/2025", + "Support de changeip.com": "Suporte changeip.com", "24\/10\/2024": "24\/10\/2024", "Optimisation de la récuperation de l'ip": "Otimização da recuperação de IP", "31\/05\/2024": "31\/05\/2024", @@ -159,4 +161,4 @@ "*Important*": "*IMPORTANTE*", " Important*": " IMPORTANTE*" } -} \ No newline at end of file +} From bd85c9f3395a6e07e7c041db6776032df162d9d4 Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:29:06 +0100 Subject: [PATCH 12/22] Update de_DE.json - Ajout changeip --- core/i18n/de_DE.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/i18n/de_DE.json b/core/i18n/de_DE.json index 74ff30b..d151274 100644 --- a/core/i18n/de_DE.json +++ b/core/i18n/de_DE.json @@ -65,9 +65,10 @@ "Erreur de mise à jour de duckdns : ' . $url": "Fehler beim Aktualisieren von duckdns: '. $ url", "Erreur de mise à jour de strato.com : ": "Fehler beim Aktualisieren von strato.com:", "Erreur de mise à jour de gandinet : ' . $url": "Fehler beim Aktualisieren des Gandinets: '. $-URL", - "Erreur de mise à jour de infomaniak.com : ": "Infomaniak.com-Aktualisierungsfehler:" + "Erreur de mise à jour de infomaniak.com : ": "Infomaniak.com-Aktualisierungsfehler:", + "Erreur de mise à jour de changeip.com : ": "Changeip.com-Aktualisierungsfehler:" }, "info.json": { "Plugin pour mettre à jour dynamiquement des DNS": "Plugin zum dynamischen Aktualisieren von DNS" } -} \ No newline at end of file +} From a167f634c52877c7bad42885be85d3f2ad2d5527 Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:29:39 +0100 Subject: [PATCH 13/22] Update en_US.json - Ajout changeip --- core/i18n/en_US.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/i18n/en_US.json b/core/i18n/en_US.json index bf62fe8..a5e8140 100644 --- a/core/i18n/en_US.json +++ b/core/i18n/en_US.json @@ -65,9 +65,10 @@ "Erreur de mise à jour de duckdns : ' . $url": "Error updating duckdns : ' . $url", "Erreur de mise à jour de strato.com : ": "Error updating strato.com :", "Erreur de mise à jour de gandinet : ' . $url": "Error updating gandinet: '. $ url", - "Erreur de mise à jour de infomaniak.com : ": "Infomaniak.com update error:" + "Erreur de mise à jour de infomaniak.com : ": "Infomaniak.com update error:", + "Erreur de mise à jour de changeip.com : ": "Changeip.com update error:" }, "info.json": { "Plugin pour mettre à jour dynamiquement des DNS": "Plugin to dynamically update DNS" } -} \ No newline at end of file +} From 32d321bd1e922f8b9e133f94245cf07eb33e2c72 Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:30:10 +0100 Subject: [PATCH 14/22] Update es_ES.json - Ajout changeip --- core/i18n/es_ES.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/i18n/es_ES.json b/core/i18n/es_ES.json index f76b357..224b176 100644 --- a/core/i18n/es_ES.json +++ b/core/i18n/es_ES.json @@ -65,9 +65,10 @@ "Erreur de mise à jour de duckdns : ' . $url": "Error al actualizar duckdns: '. $ url", "Erreur de mise à jour de strato.com : ": "Error al actualizar strato.com:", "Erreur de mise à jour de gandinet : ' . $url": "Error al actualizar gandinet: '. $ url", - "Erreur de mise à jour de infomaniak.com : ": "Error de actualización de Infomaniak.com:" + "Erreur de mise à jour de infomaniak.com : ": "Error de actualización de Infomaniak.com:", + "Erreur de mise à jour de changeip.com : ": "Error de actualización de Changeip.com:" }, "info.json": { "Plugin pour mettre à jour dynamiquement des DNS": "Complemento para actualizar dinámicamente DNS" } -} \ No newline at end of file +} From 33b2c87d7af5b3c3df3a56be0621828ae01bf464 Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:30:36 +0100 Subject: [PATCH 15/22] Update fr_FR.json - Ajout changeip --- core/i18n/fr_FR.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/i18n/fr_FR.json b/core/i18n/fr_FR.json index 9882375..7b0c583 100644 --- a/core/i18n/fr_FR.json +++ b/core/i18n/fr_FR.json @@ -65,9 +65,10 @@ "Erreur de mise à jour de duckdns : ' . $url": "Erreur de mise à jour de duckdns : ' . $url", "Erreur de mise à jour de strato.com : ": "Erreur de mise à jour de strato.com : ", "Erreur de mise à jour de gandinet : ' . $url": "Erreur de mise à jour de gandinet : ' . $url", - "Erreur de mise à jour de infomaniak.com : ": "Erreur de mise à jour de infomaniak.com : " + "Erreur de mise à jour de infomaniak.com : ": "Erreur de mise à jour de infomaniak.com : ", + "Erreur de mise à jour de changeip.com : ": "Erreur de mise à jour de Changeip.com : " }, "info.json": { "Plugin pour mettre à jour dynamiquement des DNS": "Plugin pour mettre à jour dynamiquement des DNS" } -} \ No newline at end of file +} From a0825ac870469e4c1977177830bb73c69f88fa89 Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:31:04 +0100 Subject: [PATCH 16/22] Update id_ID.json - changeip --- core/i18n/id_ID.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/i18n/id_ID.json b/core/i18n/id_ID.json index 9676346..0f74d8b 100644 --- a/core/i18n/id_ID.json +++ b/core/i18n/id_ID.json @@ -65,9 +65,10 @@ "Erreur de mise à jour de duckdns : ' . $url": "Erreur de mise à jour de duckdns : ' . $url", "Erreur de mise à jour de strato.com : ": "Erreur de mise à jour de strato.com :", "Erreur de mise à jour de gandinet : ' . $url": "Erreur de mise à jour de gandinet : ' . $url", - "Erreur de mise à jour de infomaniak.com : ": "Erreur de mise à jour de infomaniak.com :" + "Erreur de mise à jour de infomaniak.com : ": "Erreur de mise à jour de infomaniak.com :", + "Erreur de mise à jour de changeip.com : ": "Erreur de mise à jour de Changeip.com :" }, "info.json": { "Plugin pour mettre à jour dynamiquement des DNS": "Plugin pour mettre à jour dynamiquement des DNS" } -} \ No newline at end of file +} From ecd0eee9a493c1011b01380f949a43696f77947d Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:31:33 +0100 Subject: [PATCH 17/22] Update it_IT.json - Ajout changeip --- core/i18n/it_IT.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/i18n/it_IT.json b/core/i18n/it_IT.json index 29690b9..0bb835c 100644 --- a/core/i18n/it_IT.json +++ b/core/i18n/it_IT.json @@ -65,9 +65,10 @@ "Erreur de mise à jour de duckdns : ' . $url": "Erreur de mise à jour de duckdns : ' . $url", "Erreur de mise à jour de strato.com : ": "Erreur de mise à jour de strato.com :", "Erreur de mise à jour de gandinet : ' . $url": "Erreur de mise à jour de gandinet : ' . $url", - "Erreur de mise à jour de infomaniak.com : ": "Erreur de mise à jour de infomaniak.com :" + "Erreur de mise à jour de infomaniak.com : ": "Erreur de mise à jour de infomaniak.com :", + "Erreur de mise à jour de changeip.com : ": "Erreur de mise à jour de Changeip.com :" }, "info.json": { "Plugin pour mettre à jour dynamiquement des DNS": "Plugin pour mettre à jour dynamiquement des DNS" } -} \ No newline at end of file +} From d445f75ff82f528bdc473aa28d166732568b485b Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:32:03 +0100 Subject: [PATCH 18/22] Update ja_JP.json - Ajout changip --- core/i18n/ja_JP.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/i18n/ja_JP.json b/core/i18n/ja_JP.json index b29d9ad..36fff89 100644 --- a/core/i18n/ja_JP.json +++ b/core/i18n/ja_JP.json @@ -65,9 +65,10 @@ "Erreur de mise à jour de duckdns : ' . $url": "Erreur de mise à jour de duckdns : ' . $url", "Erreur de mise à jour de strato.com : ": "Erreur de mise à jour de strato.com :", "Erreur de mise à jour de gandinet : ' . $url": "Erreur de mise à jour de gandinet : ' . $url", - "Erreur de mise à jour de infomaniak.com : ": "Erreur de mise à jour de infomaniak.com :" + "Erreur de mise à jour de infomaniak.com : ": "Erreur de mise à jour de infomaniak.com :", + "Erreur de mise à jour de changeip.com : ": "Erreur de mise à jour de Changeip.com :" }, "info.json": { "Plugin pour mettre à jour dynamiquement des DNS": "Plugin pour mettre à jour dynamiquement des DNS" } -} \ No newline at end of file +} From 6bcfa6e9448d73b5e73ba3e7975b6bb9f2b16e24 Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:32:29 +0100 Subject: [PATCH 19/22] Update pt_PT.json - Ajout changeip --- core/i18n/pt_PT.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/i18n/pt_PT.json b/core/i18n/pt_PT.json index f322561..b81fc21 100644 --- a/core/i18n/pt_PT.json +++ b/core/i18n/pt_PT.json @@ -65,9 +65,10 @@ "Erreur de mise à jour de duckdns : ' . $url": "Erro ao atualizar duckdns: '. $ url", "Erreur de mise à jour de strato.com : ": "Erro ao atualizar strato.com:", "Erreur de mise à jour de gandinet : ' . $url": "Erro ao atualizar gandinet: '. $ url", - "Erreur de mise à jour de infomaniak.com : ": "Erro de atualização do Infomaniak.com:" + "Erreur de mise à jour de infomaniak.com : ": "Erro de atualização do Infomaniak.com:", + "Erreur de mise à jour de changeip.com : ": "Erro de atualização do Changeip.com:" }, "info.json": { "Plugin pour mettre à jour dynamiquement des DNS": "Plug-in para atualizar dinamicamente o DNS" } -} \ No newline at end of file +} From e5bcd088503779e313b2105b2c6cb6612fea99d4 Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:32:53 +0100 Subject: [PATCH 20/22] Update ru_RU.json - Ajout changeip --- core/i18n/ru_RU.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/i18n/ru_RU.json b/core/i18n/ru_RU.json index 69f165e..58a68c9 100644 --- a/core/i18n/ru_RU.json +++ b/core/i18n/ru_RU.json @@ -66,8 +66,9 @@ "Erreur de mise à jour de strato.com : ": "Erreur de mise à jour de strato.com :", "Erreur de mise à jour de gandinet : ' . $url": "Erreur de mise à jour de gandinet : ' . $url", "Erreur de mise à jour de infomaniak.com : ": "Erreur de mise à jour de infomaniak.com :" + "Erreur de mise à jour de changeip.com : ": "Erreur de mise à jour de Changeip.com :" }, "info.json": { "Plugin pour mettre à jour dynamiquement des DNS": "Plugin pour mettre à jour dynamiquement des DNS" } -} \ No newline at end of file +} From 54ec6dce617e0713c6bdc6cc41fe71cf983915f0 Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:33:21 +0100 Subject: [PATCH 21/22] Update tr.json - Ajout changeip --- core/i18n/tr.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/i18n/tr.json b/core/i18n/tr.json index ec54671..dac2d44 100644 --- a/core/i18n/tr.json +++ b/core/i18n/tr.json @@ -65,9 +65,10 @@ "Erreur de mise à jour de duckdns : ' . $url": "Erreur de mise à jour de duckdns : ' . $url", "Erreur de mise à jour de strato.com : ": "Erreur de mise à jour de strato.com :", "Erreur de mise à jour de gandinet : ' . $url": "Erreur de mise à jour de gandinet : ' . $url", - "Erreur de mise à jour de infomaniak.com : ": "Erreur de mise à jour de infomaniak.com :" + "Erreur de mise à jour de infomaniak.com : ": "Erreur de mise à jour de infomaniak.com :", + "Erreur de mise à jour de changeip.com : ": "Erreur de mise à jour de Changeip.com :" }, "info.json": { "Plugin pour mettre à jour dynamiquement des DNS": "Plugin pour mettre à jour dynamiquement des DNS" } -} \ No newline at end of file +} From 8d11b844e12aa8258005f175700542c5879d0cb7 Mon Sep 17 00:00:00 2001 From: bodbod44 <50763752+bodbod44@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:39:29 +0100 Subject: [PATCH 22/22] Update ru_RU.json - Correction changeip --- core/i18n/ru_RU.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/i18n/ru_RU.json b/core/i18n/ru_RU.json index 58a68c9..09fe81a 100644 --- a/core/i18n/ru_RU.json +++ b/core/i18n/ru_RU.json @@ -65,7 +65,7 @@ "Erreur de mise à jour de duckdns : ' . $url": "Erreur de mise à jour de duckdns : ' . $url", "Erreur de mise à jour de strato.com : ": "Erreur de mise à jour de strato.com :", "Erreur de mise à jour de gandinet : ' . $url": "Erreur de mise à jour de gandinet : ' . $url", - "Erreur de mise à jour de infomaniak.com : ": "Erreur de mise à jour de infomaniak.com :" + "Erreur de mise à jour de infomaniak.com : ": "Erreur de mise à jour de infomaniak.com :", "Erreur de mise à jour de changeip.com : ": "Erreur de mise à jour de Changeip.com :" }, "info.json": {