]> git.ipfire.org Git - people/stevee/ddns.git/commitdiff
Merge remote-tracking branch 'origin/man-pages'
authorStefan Schantl <stefan.schantl@ipfire.org>
Sun, 8 Feb 2015 22:05:27 +0000 (23:05 +0100)
committerStefan Schantl <stefan.schantl@ipfire.org>
Sun, 8 Feb 2015 22:05:27 +0000 (23:05 +0100)
Conflicts:
configure.ac

40 files changed:
Makefile.am
README
configure.ac
ddns.conf.sample
po/LINGUAS
po/ar.po
po/ca.po
po/cs_CZ.po
po/da.po
po/ddns.pot
po/de.po
po/el_GR.po
po/es.po
po/fa.po
po/fr.po
po/hu.po
po/id.po
po/it.po
po/ja.po
po/km_KH.po
po/nl.po
po/pl.po
po/pt_BR.po
po/pt_PT.po
po/ro_RO.po
po/ru.po
po/sq.po
po/sv.po
po/th.po
po/tk.po
po/tr.po
po/uk.po
po/uz@Latn.po
po/vi.po
po/zh.po [new file with mode: 0644]
src/ddns/__init__.py
src/ddns/database.py [new file with mode: 0644]
src/ddns/errors.py
src/ddns/providers.py
src/ddns/system.py

index 0ee85ae48f0c4f8b9f3dc2a05a5ded34943cbd9b..a783064e887694ae836280b6cec32ac05e6e47cc 100644 (file)
@@ -73,6 +73,7 @@ dist_configs_DATA = \
 ddns_PYTHON = \
        src/ddns/__init__.py \
        src/ddns/__version__.py \
+       src/ddns/database.py \
        src/ddns/errors.py \
        src/ddns/i18n.py \
        src/ddns/providers.py \
diff --git a/README b/README
index a4b72adf128b6ab0bd0563834ea1da950a64ce9d..72e7c064406bbebc03b8b6fd1a27e8ab0dfc9e71 100644 (file)
--- a/README
+++ b/README
@@ -49,16 +49,21 @@ INSTALLATION:
 
 SUPPORTED PROVIDERS:
        all-inkl.com
+       changeip.com
+       ddnss.de
        dhs.org
        dns.lightningwirelabs.com
        dnspark.com
+       domopoli.de
        dtdns.com
        dyndns.org
+       dyns.cx|net
        dynu.com
        easydns.com
        enom.com
        entrydns.net
        freedns.afraid.org
+       myonlineportal.net
        namecheap.com
        no-ip.com
        nsupdate.info
@@ -71,6 +76,8 @@ SUPPORTED PROVIDERS:
        twodns.de
        udmedia.de
        variomedia.de
+       xlhost.de
        zoneedit.com
+       zzzz.io
 
 Also supports DNS updates via the ISC BIND nsupdate utility.
index c09e2024b8385cc174430bf836f926efcdf87e62..c3f7b4a76bd0275320832445d99cc6b3b8f1925c 100644 (file)
@@ -21,7 +21,7 @@
 AC_PREREQ([2.64])
 
 AC_INIT([ddns],
-       [003],
+       [005],
        [info@ipfire.org],
        [ddns],
        [http://git.ipfire.org/?p=oddments/ddns.git;a=summary])
@@ -56,12 +56,6 @@ AC_PATH_PROG([XSLTPROC], [xsltproc])
 # Python
 AM_PATH_PYTHON([2.7])
 
-# BIND nsupdate
-AC_CHECK_TOOL([NSUPDATE], [nsupdate])
-if test -z "${NSUPDATE}"; then
-       AC_MSG_ERROR([*** nsupdate not found])
-fi
-
 save_LIBS="$LIBS"
 
 # ------------------------------------------------------------------------------
@@ -83,10 +77,8 @@ AC_OUTPUT
 AC_MSG_RESULT([
        ${PACKAGE_NAME} ${VERSION}
 
-       prefix             : ${prefix}
-       sysconfdir         : ${sysconfdir}
-
-       nsupdate           : ${NSUPDATE}
+       prefix            : ${prefix}
+       sysconfdir        : ${sysconfdir}
 
        Generate man-pages : ${have_manpages}
 ])
index de9516c2d3fac355faf1c98ec78f6c093c3b1a4b..84c7c8bdc602b92cb2c22293b25066658e6e78f0 100644 (file)
 #
 # (optional)
 # server = 1.2.3.4
+# zone = somezone.bind.nsupdate
 # key = name
 # secret = XYZ
 # ttl = 60
 
+# [test.changeip.com]
+# provider = changeip.com
+# username = user
+# password = pass
+
+# [test.ddnss.de]
+# provider = ddnss.de
+#
+# Only use one of these two auth options.
+# token = token
+# username = user
+# password = pass
+
 # [test.dhs.org]
 # provider = dhs.org
 # username = user
 # username = user
 # password = pass
 
+# [text.dyns.net]
+# provider = dyns.net
+# username = user
+# password = pass
+
 # [test.dynu.com]
 # provider = dynu.com
 # username = user
 # [test.freedns.afraid.org]
 # provider = freedns.afraid.org
 # token = token
-# proto = ipv4 OR ipv6
+
+# [test.myonlineportal.net]
+# provider = myonlineportal.net
+# username = user
+# password = pass
 
 # [test.namecheap.com]
 # provider = namecheap.com
 
 # [test.nsupdate.info]
 # provider = nsupdate.info
-# secret = secret
-# proto = ipv4 OR ipv6
+# token = token
 
 # [test.opendns.com]
 # handle = opendns.com
 # username = user
 # password = pass
-# proto = ipv4 OR ipv6
 
 # [test.ovh.com]
 # provider = ovh.com
 
 # [test.spdns.org]
 # provider = spdns.org
+
+# Only use one the these two auth options.
+# token = token
 # username = user
 # password = pass
 
 # provider = variomedia.de
 # username = user
 # password = pass
-# proto = ipv4 OR ipv6
+
+# [test.xlhost.de]
+# provider = xlhost.de
+# username = user
+# password = pass
 
 # [test.zoneedit.com]
 # provider = zoneedit.com
 # username = user
 # password = pass
-# proto = ipv4 OR ipv6 
+
+# [test.zzzz.io]
+# provider = zzzz.io
+# token = token 
index 0cd1049345e20a665beb43ec321abd48735b9956..7a64cb2e363187d3622e63a8d2e2917dfdd30ea3 100644 (file)
@@ -26,3 +26,4 @@ tr
 uk
 uz@Latn
 vi
+zh
index 92722fa57798ceedc6ad8ad43de92b67b99a8e42..1937c10eca27b0bda8c40fd4363a8c631426d5bf 100644 (file)
--- a/po/ar.po
+++ b/po/ar.po
@@ -1,52 +1,50 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # Jasem Elayeb <j.elayeb@itech.ly>, 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Arabic (http://www.transifex.com/projects/p/ipfire/language/ar/)\n"
+"Language-Team: Arabic (http://www.transifex.com/projects/p/ipfire/language/"
+"ar/)\n"
+"Language: ar\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: ar\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
+"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr "لايوجد اي مدخلات ملف الاعدادات. جاري الخروج."
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr "فشل عملية تحديث ال DynDNS لل  %(hostname)s (%(provider)s) :"
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
-msgstr "تحديث الDyndDNS لل  %(hostname)s (%(provider)s)  انتجت استثناء غير معالج:"
-
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr "نجاح تحديث ال DynDNS لل  %(hostname)s (%(provider)s)  "
+msgstr ""
+"تحديث الDyndDNS لل  %(hostname)s (%(provider)s)  انتجت استثناء غير معالج:"
 
 #: ../src/ddns/errors.py:29
 msgid "Error"
@@ -77,7 +75,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -93,103 +91,175 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr "نجاح تحديث ال DynDNS لل  %(hostname)s (%(provider)s)  "
+
+#: ../src/ddns/providers.py:194
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+"تحديث الDyndDNS لل  %(hostname)s (%(provider)s)  انتجت استثناء غير معالج:"
+
+#: ../src/ddns/providers.py:202
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+"تحديث الDyndDNS لل  %(hostname)s (%(provider)s)  انتجت استثناء غير معالج:"
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, fuzzy, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr "فشل عملية تحديث ال DynDNS لل  %(hostname)s (%(provider)s) :"
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
 #, python-format
-msgid "%s is already up to date"
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr "طلب العنوان:"
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index 034f08beb50519213e01a002ed065236fd6dfce0..e0b285d974b080022dd2a0168463b75d414bcd1a 100644 (file)
--- a/po/ca.po
+++ b/po/ca.po
@@ -1,52 +1,48 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Catalan (http://www.transifex.com/projects/p/ipfire/language/ca/)\n"
+"Language-Team: Catalan (http://www.transifex.com/projects/p/ipfire/language/"
+"ca/)\n"
+"Language: ca\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: ca\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr ""
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr ""
-
 #: ../src/ddns/errors.py:29
 msgid "Error"
 msgstr ""
@@ -76,7 +72,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -92,103 +88,173 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr ""
+
+#: ../src/ddns/providers.py:194
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+
+#: ../src/ddns/providers.py:202
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr ""
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
 #, python-format
-msgid "%s is already up to date"
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr ""
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index 5ae6125002da8fcd105b1c697d8085993dff3c04..2a6acbd4a948e074de6f793d56eee13f10409243 100644 (file)
@@ -1,52 +1,50 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # n3oklan <michal@gavlik.eu>, 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/ipfire/language/cs_CZ/)\n"
+"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/"
+"ipfire/language/cs_CZ/)\n"
+"Language: cs_CZ\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: cs_CZ\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr "Nenalezeny žádné záznamy v konfiguračním souboru. Ukončuji."
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr "Dynamická aktualizace DNS pro %(hostname)s (%(provider)s) selhala:"
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
-msgstr "Dynamická aktualizace DNS pro %(hostname)s (%(provider)s) vyvolala neošetřenou vyjímku:"
-
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr "Dynamická aktualizace DNS pro %(hostname)s (%(provider)s) úspěšná"
+msgstr ""
+"Dynamická aktualizace DNS pro %(hostname)s (%(provider)s) vyvolala "
+"neošetřenou vyjímku:"
 
 #: ../src/ddns/errors.py:29
 msgid "Error"
@@ -77,7 +75,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -93,103 +91,177 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr "Dynamická aktualizace DNS pro %(hostname)s (%(provider)s) úspěšná"
+
+#: ../src/ddns/providers.py:194
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+"Dynamická aktualizace DNS pro %(hostname)s (%(provider)s) vyvolala "
+"neošetřenou vyjímku:"
+
+#: ../src/ddns/providers.py:202
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+"Dynamická aktualizace DNS pro %(hostname)s (%(provider)s) vyvolala "
+"neošetřenou vyjímku:"
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, fuzzy, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr "Dynamická aktualizace DNS pro %(hostname)s (%(provider)s) selhala:"
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
 #, python-format
-msgid "%s is already up to date"
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr "Žádost hlavičky:"
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index a443ad7c1eb3760a5b9432cd31da3e156206ca5c..402809203dcedf90bba78bfe8ddaddf3c2e69a0b 100644 (file)
--- a/po/da.po
+++ b/po/da.po
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # Henrik Simonsen <cybermaze@gmail.com>, 2014
+# Henrik Simonsen <cybermaze@gmail.com>, 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Danish (http://www.transifex.com/projects/p/ipfire/language/da/)\n"
+"Language-Team: Danish (http://www.transifex.com/projects/p/ipfire/language/"
+"da/)\n"
+"Language: da\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: da\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
-msgstr ""
+msgstr "Fejlsøgning aktiveret"
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
-msgstr ""
+msgstr "Indlæser konfigurationsfil %s"
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr "Fandt ingen indgange i konfigurationsfilen. Afslutter."
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr "Dynamisk DNS opdatering af %(hostname)s (%(provider)s) fejlede:"
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
-msgstr "Dynamisk DNS opdatering af %(hostname)s (%(provider)s) kastede en ubehandlet undtagelse:"
-
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr "Dynamisk DNS opdatering af %(hostname)s (%(provider)s) succesfuld"
+msgstr ""
+"Dynamisk DNS opdatering af %(hostname)s (%(provider)s) returnerede en "
+"ubehandlet undtagelse:"
 
 #: ../src/ddns/errors.py:29
 msgid "Error"
-msgstr ""
+msgstr "Fejl"
 
 #: ../src/ddns/errors.py:39
 msgid "Network error"
-msgstr ""
+msgstr "Netværksfejl"
 
 #: ../src/ddns/errors.py:47
 msgid ""
 "The server denied processing the request because account abuse is suspected"
 msgstr ""
+"Serveren nægtede at modtage forespørgslen på grund af mistanke om misbrug af "
+"brugerkontoen"
 
 #: ../src/ddns/errors.py:55
 msgid "Authentication against the server has failed"
-msgstr ""
+msgstr "Serveren godtog ikke autentifikationen"
 
 #: ../src/ddns/errors.py:64
 msgid "The server denies any updates from this client"
-msgstr ""
+msgstr "Serveren nægter alle opdateringer fra denne klient"
 
 #: ../src/ddns/errors.py:72
 msgid "The configuration file has errors"
-msgstr ""
+msgstr "Konfigurationsfilen indeholder fejl"
 
 #: ../src/ddns/errors.py:79
 msgid "Connection refused"
-msgstr ""
+msgstr "Forbindelse nægtet"
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
-msgstr ""
+msgstr "Forbindelsen udløb"
 
 #: ../src/ddns/errors.py:94
 msgid "The host could not be found in the configuration file"
-msgstr ""
+msgstr "Værten kunne ikke findes i konfigurationsfilen"
 
 #: ../src/ddns/errors.py:102
 msgid "Internal server error"
-msgstr ""
+msgstr "Intern server fejl"
 
 #: ../src/ddns/errors.py:109
 msgid "Network unreachable"
-msgstr ""
+msgstr "Netværket kan ikke nås"
+
+#: ../src/ddns/errors.py:116
+#, fuzzy
+msgid "Not found"
+msgstr "Domæne ikke fundet."
 
-#: ../src/ddns/errors.py:117
+#: ../src/ddns/errors.py:124
 msgid "Request error"
+msgstr "Forespørgsel fejl"
+
+#: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
 msgstr ""
 
-#: ../src/ddns/errors.py:124
+#: ../src/ddns/errors.py:139
 msgid "Service unavailable"
-msgstr ""
+msgstr "Service ikke tilgængelig"
 
-#: ../src/ddns/errors.py:132
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
+msgstr "Opdateringen kunne ikke udføres"
+
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
-msgstr ""
+msgstr "Opdaterer %s tvunget"
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
 #, python-format
-msgid "%s is already up to date"
-msgstr ""
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr "Dynamisk DNS opdatering af %(hostname)s (%(provider)s) succesfuld"
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
-msgid "No valid FQDN was given."
+#: ../src/ddns/providers.py:194
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
 msgstr ""
+"Dynamisk DNS opdatering af %(hostname)s (%(provider)s) returnerede en "
+"ubehandlet undtagelse:"
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
-msgid "Invalid hostname specified."
+#: ../src/ddns/providers.py:202
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
 msgstr ""
+"Dynamisk DNS opdatering af %(hostname)s (%(provider)s) returnerede en "
+"ubehandlet undtagelse:"
 
-#: ../src/ddns/providers.py:282
-msgid "Hostname not marked as a dynamic host."
-msgstr ""
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, fuzzy, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr "Dynamisk DNS opdatering af %(hostname)s (%(provider)s) fejlede:"
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
-msgid "Invalid IP address has been sent."
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:324
-msgid "No hostname specified."
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
 msgstr ""
 
-#: ../src/ddns/providers.py:333
-msgid "Account has been disabled."
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
 msgstr ""
 
-#: ../src/ddns/providers.py:339
-msgid "Too many failed requests."
+#: ../src/ddns/providers.py:251
+#, python-format
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:388
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
+msgid "No valid FQDN was given."
+msgstr "Ingen gyldig FQDN angivet."
+
+#: ../src/ddns/providers.py:387
 msgid "Specified host does not exist."
-msgstr ""
+msgstr "Den angivne vært findes ikke."
 
-#: ../src/ddns/providers.py:392
+#: ../src/ddns/providers.py:391
 msgid "DNS error encountered."
-msgstr ""
+msgstr "DNS fejl opstod."
 
 #. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
 #, python-format
 msgid "Server response: %s"
+msgstr "Server svar: %s"
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
+msgid "Invalid hostname specified."
+msgstr "Ugyldig værtsnavn angivet."
+
+#: ../src/ddns/providers.py:616
+msgid "Hostname not marked as a dynamic host."
+msgstr "Værtsnavn er ikke angivet som dynamisk vært."
+
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
+msgid "Invalid IP address has been sent."
+msgstr "Ugyldig IP adresse er sendt."
+
+#: ../src/ddns/providers.py:658
+msgid "No hostname specified."
+msgstr "Intet værtsnavn angivet."
+
+#: ../src/ddns/providers.py:667
+msgid "Account has been disabled."
+msgstr "Brugerkonto er deaktiveret."
+
+#: ../src/ddns/providers.py:673
+msgid "Too many failed requests."
+msgstr "For mange fejlede forespørgsler."
+
+#: ../src/ddns/providers.py:776
+#, fuzzy
+msgid "Malformed request has been sent."
+msgstr "Ugyldig IP adresse er sendt."
+
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
+msgstr "Domæne ikke fundet."
+
+#: ../src/ddns/providers.py:861
+#, fuzzy
+msgid "An invalid IP address was submitted"
+msgstr "Ugyldig IP adresse er sendt."
+
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
-msgstr ""
+msgstr "Domæne ikke aktivt."
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
-msgstr ""
+msgstr "Ingen autentifikationsdetaljer angivet."
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
-msgstr ""
+msgstr "Ugyldig IPv4 adresse sendt."
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
-msgstr ""
+msgstr "Ugyldig IPv6 adresse sendt."
+
+#: ../src/ddns/providers.py:1385
+#, fuzzy
+msgid "Invalid hostname specified"
+msgstr "Ugyldig værtsnavn angivet."
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
-msgstr ""
+msgstr "Kører distribution: %s"
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
-msgstr "Request header:"
+msgstr "Forespørgsel header:"
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
-msgstr ""
+msgstr "Svar header (Status kode %s):"
index 46f56117b79eccc3d73a17761fbcaa28abd12e58..c3f46300bca55b5b692a077a2e2d150d1c070273 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,36 +17,31 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr ""
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr ""
-
 #: ../src/ddns/errors.py:29
 msgid "Error"
 msgstr ""
@@ -76,7 +71,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -92,103 +87,173 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr ""
+
+#: ../src/ddns/providers.py:194
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+
+#: ../src/ddns/providers.py:202
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr ""
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
 #, python-format
-msgid "%s is already up to date"
+msgid "An update has not been performed because earlier updates failed for %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
+#, python-format
+msgid "Further updates will be withheld until %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr ""
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index d1028e8b8721fc80840038f4f1905644feffec89..0f75f79e3fc398397ae6d14862b1a9dfbb5a36ce 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -1,53 +1,53 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
+# BluGen, 2014
 # Michael Tremer <michael.tremer@ipfire.org>, 2012,2014
 # Peter Cloudstone <rmg-mainz@web.de>, 2014
+# BlockMall, 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-24 09:47+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:26+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: German (http://www.transifex.com/projects/p/ipfire/language/de/)\n"
+"Language-Team: German (http://www.transifex.com/projects/p/ipfire/language/"
+"de/)\n"
+"Language: de\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr "Debugmodus eingeschaltet"
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr "Lade Konfigurationsdatei %s"
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr "Keine Einträge in der Konfigurationsdatei gefunden. Ende."
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr "Dynamic DNS-Update für %(hostname)s (%(provider)s) fehlgeschlagen"
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
-msgstr "Dynamic DNS-Update für %(hostname)s (%(provider)s) erzeugte einen unerwarteten Fehler:"
-
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr "Dynamic DNS-Update für %(hostname)s (%(provider)s) erfolgreich"
+msgstr ""
+"Dynamic DNS-Update für %(hostname)s (%(provider)s) erzeugte einen "
+"unerwarteten Fehler:"
 
 #: ../src/ddns/errors.py:29
 msgid "Error"
@@ -60,7 +60,8 @@ msgstr "Netzwerkfehler"
 #: ../src/ddns/errors.py:47
 msgid ""
 "The server denied processing the request because account abuse is suspected"
-msgstr "Der Server hat die Anfrage aufgrund eines Missbrauchsverdachts zurückgewiesen"
+msgstr ""
+"Der Server hat die Anfrage aufgrund eines Missbrauchsverdachts zurückgewiesen"
 
 #: ../src/ddns/errors.py:55
 msgid "Authentication against the server has failed"
@@ -78,7 +79,7 @@ msgstr "Die Konfigurationsdatei weist Fehler auf"
 msgid "Connection refused"
 msgstr "Verbindung zurückgewiesen"
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr "Verbindungstimeout"
 
@@ -94,103 +95,184 @@ msgstr "Interner Serverfehler"
 msgid "Network unreachable"
 msgstr "Netzwerk nicht erreichbar"
 
-#: ../src/ddns/errors.py:117
+#: ../src/ddns/errors.py:116
+#, fuzzy
+msgid "Not found"
+msgstr "Domain nicht gefunden."
+
+#: ../src/ddns/errors.py:124
 msgid "Request error"
 msgstr "Request-Fehler"
 
-#: ../src/ddns/errors.py:124
+#: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
 msgid "Service unavailable"
 msgstr "Service nicht verfügbar"
 
-#: ../src/ddns/errors.py:132
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr "Die Aktualisierung konnte nicht ausgeführt werden"
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr "Aktualisierung von %s erzwungen"
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr "Dynamic DNS-Update für %(hostname)s (%(provider)s) erfolgreich"
+
+#: ../src/ddns/providers.py:194
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+"Dynamic DNS-Update für %(hostname)s (%(provider)s) erzeugte einen "
+"unerwarteten Fehler:"
+
+#: ../src/ddns/providers.py:202
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+"Dynamic DNS-Update für %(hostname)s (%(provider)s) erzeugte einen "
+"unerwarteten Fehler:"
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, fuzzy, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr "Dynamic DNS-Update für %(hostname)s (%(provider)s) fehlgeschlagen"
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
 #, python-format
-msgid "%s is already up to date"
-msgstr "%s ist bereits auf dem neuesten Stand"
+msgid "Further updates will be withheld until %s"
+msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr "Kein gültiger FQDN angegeben."
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr "Der angebene Host existiert nicht."
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr "DNS-Fehler aufgetreten."
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr "Antwort des Servers: %s"
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr "Ungültiger Computername angegeben."
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr "Computername nicht als dynamischer Computer markiert."
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr "Ungültige IP-Adresse abgeschickt."
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr "Kein Hostname angegeben."
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr "Der Account wurde deaktiviert."
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr "Zu viele fehlgeschlagene Anfragen."
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
-msgstr "Der angebene Host existiert nicht."
-
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
-msgstr "DNS-Fehler aufgetreten."
+#: ../src/ddns/providers.py:776
+#, fuzzy
+msgid "Malformed request has been sent."
+msgstr "Ungültige IP-Adresse abgeschickt."
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
-msgstr "Antwort des Servers: %s"
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
+msgstr ""
 
-#: ../src/ddns/providers.py:596
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
 msgid "Domain not found."
 msgstr "Domain nicht gefunden."
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:861
+#, fuzzy
+msgid "An invalid IP address was submitted"
+msgstr "Ungültige IP-Adresse abgeschickt."
+
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr "Domain nicht aktiv."
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
-msgstr ""
+msgstr "Keine Authentifizierungsdetails angegeben."
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr "Eine ungültige IPv4-Adresse wurde gesendet."
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr "Eine ungültige IPv6-Adresse wurde gesendet."
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+#, fuzzy
+msgid "Invalid hostname specified"
+msgstr "Ungültiger Computername angegeben."
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr "Laufe auf Distribution: %s"
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr "Request-Header:"
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr "Header der Antwort (Status Code %s):"
+
+#~ msgid "%s is already up to date"
+#~ msgstr "%s ist bereits auf dem neuesten Stand"
index 6907ef95d936164a7f4f35f8fe6150266ebc8005..86b80e1805fea46af4dc01cf120864632eb7580b 100644 (file)
@@ -1,52 +1,48 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Greek (Greece) (http://www.transifex.com/projects/p/ipfire/language/el_GR/)\n"
+"Language-Team: Greek (Greece) (http://www.transifex.com/projects/p/ipfire/"
+"language/el_GR/)\n"
+"Language: el_GR\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: el_GR\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr ""
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr ""
-
 #: ../src/ddns/errors.py:29
 msgid "Error"
 msgstr ""
@@ -76,7 +72,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -92,103 +88,173 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr ""
+
+#: ../src/ddns/providers.py:194
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+
+#: ../src/ddns/providers.py:202
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr ""
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
 #, python-format
-msgid "%s is already up to date"
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr ""
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index a496e73cb99c9a1827b34c9386311492bbad61bb..22f378389944b7be4656652b4e355a37425d202c 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -1,52 +1,52 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # Andrés Reyes <andres.rt@gmail.com>, 2012
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Spanish (http://www.transifex.com/projects/p/ipfire/language/es/)\n"
+"Language-Team: Spanish (http://www.transifex.com/projects/p/ipfire/language/"
+"es/)\n"
+"Language: es\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: es\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
-msgstr "No se han encontrado entradas en el fichero de configuración. Saliendo."
+msgstr ""
+"No se han encontrado entradas en el fichero de configuración. Saliendo."
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
-msgstr "La actualizacón dinámica de DNS para %(hostname)s (%(provider)s) ha fallado."
+msgstr ""
+"La actualizacón dinámica de DNS para %(hostname)s (%(provider)s) ha fallado."
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
-msgstr "La actualizacón dinámica de DNS para %(hostname)s (%(provider)s) ha lanzado una excepción no manejada."
-
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr "La actualizacón dinámica de DNS para %(hostname)s (%(provider)s) ha resultado satisfactoria."
+msgstr ""
+"La actualizacón dinámica de DNS para %(hostname)s (%(provider)s) ha lanzado "
+"una excepción no manejada."
 
 #: ../src/ddns/errors.py:29
 msgid "Error"
@@ -77,7 +77,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -93,103 +93,180 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr ""
+"La actualizacón dinámica de DNS para %(hostname)s (%(provider)s) ha "
+"resultado satisfactoria."
+
+#: ../src/ddns/providers.py:194
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+"La actualizacón dinámica de DNS para %(hostname)s (%(provider)s) ha lanzado "
+"una excepción no manejada."
+
+#: ../src/ddns/providers.py:202
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+"La actualizacón dinámica de DNS para %(hostname)s (%(provider)s) ha lanzado "
+"una excepción no manejada."
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, fuzzy, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr ""
+"La actualizacón dinámica de DNS para %(hostname)s (%(provider)s) ha fallado."
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
 #, python-format
-msgid "%s is already up to date"
+msgid "An update has not been performed because earlier updates failed for %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
+#, python-format
+msgid "Further updates will be withheld until %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr "Cabecera de la petición:"
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index 715abed0f1aec712bd46728b15aaee83f4d7a6d8..e20130664641cb25e845c252147d0b75ebdfffc2 100644 (file)
--- a/po/fa.po
+++ b/po/fa.po
@@ -1,7 +1,7 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # Khalil Delavaran <khalil.delavaran@gmail.com>, 2013-2014
 # Reza Moghadam <r.moghadam@hotmail.com>, 2013
@@ -9,45 +9,43 @@ msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-24 04:35+0000\n"
-"Last-Translator: Khalil Delavaran <khalil.delavaran@gmail.com>\n"
-"Language-Team: Persian (http://www.transifex.com/projects/p/ipfire/language/fa/)\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
+"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
+"Language-Team: Persian (http://www.transifex.com/projects/p/ipfire/language/"
+"fa/)\n"
+"Language: fa\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: fa\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr "پویای کردن حالت اشکال زدایی"
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr "بارگذاری فایل پیکربندی %s "
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr "هیچ نوشته ای در فایل پیکربندی یافت نشد. در حال خارج شدن میباشید."
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr "بروزرسانی Dynamic DNS برای %(hostname)s (%(provider)s) شکست خورد:"
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
-msgstr "بروزرسانی Dynamic DNS برای %(hostname)s (%(provider)s) یک استثنا اداره نشده باطل :"
-
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr "Dynamic DNS برای %(hostname)s (%(provider)s) بروزرسانی شد"
+msgstr ""
+"بروزرسانی Dynamic DNS برای %(hostname)s (%(provider)s) یک استثنا اداره نشده "
+"باطل :"
 
 #: ../src/ddns/errors.py:29
 msgid "Error"
@@ -78,7 +76,7 @@ msgstr "فایل پیکربندی ایراد دارد"
 msgid "Connection refused"
 msgstr "اتصال رد شد"
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr "مهلت زمانی اتصال پایان یافت"
 
@@ -94,103 +92,181 @@ msgstr "ایراد درونی سرور"
 msgid "Network unreachable"
 msgstr "شبکه دور از دسترس است"
 
-#: ../src/ddns/errors.py:117
+#: ../src/ddns/errors.py:116
+#, fuzzy
+msgid "Not found"
+msgstr "دامین یافت نشد."
+
+#: ../src/ddns/errors.py:124
 msgid "Request error"
 msgstr "ایراد در درخواست"
 
-#: ../src/ddns/errors.py:124
+#: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
 msgid "Service unavailable"
 msgstr "سرویس در دسترس نیست"
 
-#: ../src/ddns/errors.py:132
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr "بروز رسانی نمی تواند انجام شود"
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr "بروزرسانی %s به زور شد"
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
 #, python-format
-msgid "%s is already up to date"
-msgstr "%s بروزراسنی شده است"
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr "Dynamic DNS برای %(hostname)s (%(provider)s) بروزرسانی شد"
+
+#: ../src/ddns/providers.py:194
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+"بروزرسانی Dynamic DNS برای %(hostname)s (%(provider)s) یک استثنا اداره نشده "
+"باطل :"
+
+#: ../src/ddns/providers.py:202
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+"بروزرسانی Dynamic DNS برای %(hostname)s (%(provider)s) یک استثنا اداره نشده "
+"باطل :"
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, fuzzy, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr "بروزرسانی Dynamic DNS برای %(hostname)s (%(provider)s) شکست خورد:"
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
+#, python-format
+msgid "Further updates will be withheld until %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr "FQDN بدست آمده درست نیست."
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr "میزبان گزینش شده وجود ندارد."
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr "ایراد در DNS مواجه شده است."
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr "پاسخ سرور: %s"
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr "نام هاست گزینش شده درست نیست."
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr "نام هاست به عنوان یک هاست پویا مشخص نیست."
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr "آدرس IP نادرست فرستاده شده است."
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr "هیچ نام میزبانی مشخص نشده است."
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr "حساب کاربری ناپویا شده است."
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr "درخواست های بسیاری شکست خورده است."
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
-msgstr "میزبان گزینش شده وجود ندارد."
-
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
-msgstr "ایراد در DNS مواجه شده است."
+#: ../src/ddns/providers.py:776
+#, fuzzy
+msgid "Malformed request has been sent."
+msgstr "آدرس IP نادرست فرستاده شده است."
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
-msgstr "پاسخ سرور: %s"
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
+msgstr ""
 
-#: ../src/ddns/providers.py:596
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
 msgid "Domain not found."
 msgstr "دامین یافت نشد."
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:861
+#, fuzzy
+msgid "An invalid IP address was submitted"
+msgstr "آدرس IP نادرست فرستاده شده است."
+
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr "دامین پویا نشده است."
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr "جزئیات تایید مشخص نشده است."
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr "آدرس IPv4 نامعتبر فرستاده شده است."
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr "آدرس IPv6 نامعتبر فرستاده شده است."
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+#, fuzzy
+msgid "Invalid hostname specified"
+msgstr "نام هاست گزینش شده درست نیست."
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr "در حال اجرا در توزیع: %s"
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr "درخواست هدر:"
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr "هدر پاسخ (کد وضعیت %s):"
index 17e5a637f4f7d11063c9b758d16b0da8ecc0c8bf..6648d1ca2d81f49e5d5a7fccd4157ca08a6639ef 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,52 +1,51 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # RafaelK <rafael@keramid.as>, 2012
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: French (http://www.transifex.com/projects/p/ipfire/language/fr/)\n"
+"Language-Team: French (http://www.transifex.com/projects/p/ipfire/language/"
+"fr/)\n"
+"Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr "Aucune entrée trouvée dans le fichier de configuration. Sortie."
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
-msgstr "Mise à jour du DNS dynamique pour %(hostname)s (%(provider)s) a échouée :"
+msgstr ""
+"Mise à jour du DNS dynamique pour %(hostname)s (%(provider)s) a échouée :"
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
-msgstr "Mise à jour du DNS dynamique pour %(hostname)s (%(provider)s) a retourné une exception non gérée :"
-
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr "Mise à jour du DNS dynamique pour %(hostname)s (%(provider)s) a été effectuée avec succès"
+msgstr ""
+"Mise à jour du DNS dynamique pour %(hostname)s (%(provider)s) a retourné une "
+"exception non gérée :"
 
 #: ../src/ddns/errors.py:29
 msgid "Error"
@@ -77,7 +76,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -93,103 +92,180 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr ""
+"Mise à jour du DNS dynamique pour %(hostname)s (%(provider)s) a été "
+"effectuée avec succès"
+
+#: ../src/ddns/providers.py:194
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+"Mise à jour du DNS dynamique pour %(hostname)s (%(provider)s) a retourné une "
+"exception non gérée :"
+
+#: ../src/ddns/providers.py:202
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+"Mise à jour du DNS dynamique pour %(hostname)s (%(provider)s) a retourné une "
+"exception non gérée :"
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, fuzzy, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr ""
+"Mise à jour du DNS dynamique pour %(hostname)s (%(provider)s) a échouée :"
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
 #, python-format
-msgid "%s is already up to date"
+msgid "An update has not been performed because earlier updates failed for %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
+#, python-format
+msgid "Further updates will be withheld until %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr "En-tête de requête:"
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index 7710c9332c8079e2747d644d8bf2e0510146b408..ce5abb19059d76393d563bccd9d36e890922b65f 100644 (file)
--- a/po/hu.po
+++ b/po/hu.po
@@ -1,52 +1,50 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # Gábor Sávolyi <huginn@naglfar.hu>, 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Hungarian (http://www.transifex.com/projects/p/ipfire/language/hu/)\n"
+"Language-Team: Hungarian (http://www.transifex.com/projects/p/ipfire/"
+"language/hu/)\n"
+"Language: hu\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: hu\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr "Nem találhatóak bejegyzések a konfigurációs fájlban. Feladat vége."
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr "A %(hostname)s (%(provider)s) Dynamic DNS cím frissítése sikertelen:"
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
-msgstr "A %(hostname)s (%(provider)s) Dynamic DNS cím frissítése nem várt választ adott:"
-
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr "A %(hostname)s (%(provider)s) Dynamic DNS cím frissítése sikeres."
+msgstr ""
+"A %(hostname)s (%(provider)s) Dynamic DNS cím frissítése nem várt választ "
+"adott:"
 
 #: ../src/ddns/errors.py:29
 msgid "Error"
@@ -77,7 +75,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -93,103 +91,177 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr "A %(hostname)s (%(provider)s) Dynamic DNS cím frissítése sikeres."
+
+#: ../src/ddns/providers.py:194
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+"A %(hostname)s (%(provider)s) Dynamic DNS cím frissítése nem várt választ "
+"adott:"
+
+#: ../src/ddns/providers.py:202
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+"A %(hostname)s (%(provider)s) Dynamic DNS cím frissítése nem várt választ "
+"adott:"
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, fuzzy, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr "A %(hostname)s (%(provider)s) Dynamic DNS cím frissítése sikertelen:"
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
 #, python-format
-msgid "%s is already up to date"
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr "A lekérés fejléce:"
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index 2607186f573a3687b9ee04b489d1185d306260b5..8384f7ea9b7af5b218a2e27a7d58bf73b1629a7e 100644 (file)
--- a/po/id.po
+++ b/po/id.po
@@ -1,52 +1,50 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # yudi.akbar <yudi.akbar@gmail.com>, 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Indonesian (http://www.transifex.com/projects/p/ipfire/language/id/)\n"
+"Language-Team: Indonesian (http://www.transifex.com/projects/p/ipfire/"
+"language/id/)\n"
+"Language: id\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: id\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr "Tidak ditemukan entri dalam berkas konfigurasi. Keluar."
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr "Pembaruan DNS dinamis untuk %(hostname)s (%(provider)s) gagal:"
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
-msgstr "Pembaruan DNS dinamis untuk %(hostname)s (%(provider)s) dilepaskan suatu pengecualian yang tidak tertangani:"
-
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr "Pembaruan DNS dinamis untuk %(hostname)s (%(provider)s) berhasil"
+msgstr ""
+"Pembaruan DNS dinamis untuk %(hostname)s (%(provider)s) dilepaskan suatu "
+"pengecualian yang tidak tertangani:"
 
 #: ../src/ddns/errors.py:29
 msgid "Error"
@@ -77,7 +75,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -93,103 +91,177 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr "Pembaruan DNS dinamis untuk %(hostname)s (%(provider)s) berhasil"
+
+#: ../src/ddns/providers.py:194
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+"Pembaruan DNS dinamis untuk %(hostname)s (%(provider)s) dilepaskan suatu "
+"pengecualian yang tidak tertangani:"
+
+#: ../src/ddns/providers.py:202
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+"Pembaruan DNS dinamis untuk %(hostname)s (%(provider)s) dilepaskan suatu "
+"pengecualian yang tidak tertangani:"
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, fuzzy, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr "Pembaruan DNS dinamis untuk %(hostname)s (%(provider)s) gagal:"
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
 #, python-format
-msgid "%s is already up to date"
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr "Header permintaan:"
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index d95d71a4e58587f8029a0048ed0aa9b2bb36fa7f..a7074dcd46f01d14cf5c17999f7521c4823ee58a 100644 (file)
--- a/po/it.po
+++ b/po/it.po
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
+# gtufano <gt@iltofa.com>, 2014
+# luX <lucianocataldo@gmail.com>, 2014
 # n.patriarchi <niccolo@cyber.it>, 2014
 # umberto <web.af@email.it>, 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Italian (http://www.transifex.com/projects/p/ipfire/language/it/)\n"
+"Language-Team: Italian (http://www.transifex.com/projects/p/ipfire/language/"
+"it/)\n"
+"Language: it\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: it\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
-msgstr ""
+msgstr "Modalità di debug abilitata"
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
-msgstr ""
+msgstr "Carico il file di configurazione %s"
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr "Non ha trovato voci nel file di configurazione"
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr "Aggiornamento DNS dinamico fallita per  %(hostname)s (%(provider)s)"
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
-msgstr "Aggiornamento DNS dinamico per  %(hostname)s (%(provider)s) generata un'eccezione non gestita:"
-
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr "Aggiornamento DNS dinamico per %(hostname)s (%(provider)s) eseguito con successo"
+msgstr ""
+"Aggiornamento DNS dinamico per  %(hostname)s (%(provider)s) generata "
+"un'eccezione non gestita:"
 
 #: ../src/ddns/errors.py:29
 msgid "Error"
-msgstr ""
+msgstr "Errore"
 
 #: ../src/ddns/errors.py:39
 msgid "Network error"
-msgstr ""
+msgstr "Errore di rete"
 
 #: ../src/ddns/errors.py:47
 msgid ""
 "The server denied processing the request because account abuse is suspected"
 msgstr ""
+"Il server non processerà la richiesta perché sospetta un abuso dell'account "
+"utente"
 
 #: ../src/ddns/errors.py:55
 msgid "Authentication against the server has failed"
-msgstr ""
+msgstr "L'autenticazione sul server è fallita."
 
 #: ../src/ddns/errors.py:64
 msgid "The server denies any updates from this client"
-msgstr ""
+msgstr "Il server non vuole aggiornamenti da questo client"
 
 #: ../src/ddns/errors.py:72
 msgid "The configuration file has errors"
-msgstr ""
+msgstr "Il file di configurazione ha errori"
 
 #: ../src/ddns/errors.py:79
 msgid "Connection refused"
-msgstr ""
+msgstr "Connessione rifiutata"
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
-msgstr ""
+msgstr "Connessione scaduta"
 
 #: ../src/ddns/errors.py:94
 msgid "The host could not be found in the configuration file"
-msgstr ""
+msgstr "L'host non può essere trovato nel file di configurazione"
 
 #: ../src/ddns/errors.py:102
 msgid "Internal server error"
-msgstr ""
+msgstr "Errore interno del server"
 
 #: ../src/ddns/errors.py:109
 msgid "Network unreachable"
-msgstr ""
+msgstr "Rete irraggiungibile"
 
-#: ../src/ddns/errors.py:117
+#: ../src/ddns/errors.py:116
+#, fuzzy
+msgid "Not found"
+msgstr "Dominio non trovato."
+
+#: ../src/ddns/errors.py:124
 msgid "Request error"
+msgstr "Errore nella richiesta"
+
+#: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
 msgstr ""
 
-#: ../src/ddns/errors.py:124
+#: ../src/ddns/errors.py:139
 msgid "Service unavailable"
-msgstr ""
+msgstr "Serivizio non disponibile"
 
-#: ../src/ddns/errors.py:132
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
+msgstr "L'aggiornamento non può essere eseguito"
+
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr "L'aggiornamento %s è stato forzato"
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr ""
+"Aggiornamento DNS dinamico per %(hostname)s (%(provider)s) eseguito con "
+"successo"
+
+#: ../src/ddns/providers.py:194
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+"Aggiornamento DNS dinamico per  %(hostname)s (%(provider)s) generata "
+"un'eccezione non gestita:"
+
+#: ../src/ddns/providers.py:202
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+"Aggiornamento DNS dinamico per  %(hostname)s (%(provider)s) generata "
+"un'eccezione non gestita:"
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, fuzzy, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr "Aggiornamento DNS dinamico fallita per  %(hostname)s (%(provider)s)"
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
 #, python-format
-msgid "%s is already up to date"
-msgstr "%s è già aggiornato"
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
+#, python-format
+msgid "Further updates will be withheld until %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr "Non è stato dato un valido FQDN."
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr "L'host specificato non esiste"
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr "Errore nel DNS."
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr "Risposta del server: %s"
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr "Nome host specificato non valido."
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr "Il nome host non è marcato come uno dinamico."
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr "E' stato inviato un indirizzo IP non valido."
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
-msgstr ""
+msgstr "Nome dell'host non specificato"
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
-msgstr ""
+msgstr "L'utente è stato disabilitato"
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
-msgstr ""
+msgstr "Troppe richieste fallite"
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
-msgstr ""
-
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
-msgstr ""
+#: ../src/ddns/providers.py:776
+#, fuzzy
+msgid "Malformed request has been sent."
+msgstr "E' stato inviato un indirizzo IP non valido."
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
 msgid "Domain not found."
-msgstr ""
+msgstr "Dominio non trovato."
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:861
+#, fuzzy
+msgid "An invalid IP address was submitted"
+msgstr "E' stato inviato un indirizzo IP non valido."
+
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
-msgstr ""
+msgstr "Dominio non attivo."
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
-msgstr ""
+msgstr "Nessun dettagli di autorizzazione specificato."
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
-msgstr ""
+msgstr "È stato spedito un indirizzo IPv4 non valido."
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
-msgstr ""
+msgstr "È stato spedito un indirizzo IPv6 non valido."
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+#, fuzzy
+msgid "Invalid hostname specified"
+msgstr "Nome host specificato non valido."
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
-msgstr ""
+msgstr "In esecuzione sulla distribuzione: %s"
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr "Intestazione di richiesta:"
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
-msgstr ""
+msgstr "Testata della risposta (codice di stato %s)."
index 950372466e9e52850d86d8ef66b4fd66942a762a..4f14620449bce9fedd480219c63d0e4ea9284563 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -1,52 +1,48 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Japanese (http://www.transifex.com/projects/p/ipfire/language/ja/)\n"
+"Language-Team: Japanese (http://www.transifex.com/projects/p/ipfire/language/"
+"ja/)\n"
+"Language: ja\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: ja\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr ""
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr ""
-
 #: ../src/ddns/errors.py:29
 msgid "Error"
 msgstr ""
@@ -76,7 +72,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -92,103 +88,173 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr ""
+
+#: ../src/ddns/providers.py:194
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+
+#: ../src/ddns/providers.py:202
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr ""
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
 #, python-format
-msgid "%s is already up to date"
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr ""
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index 73f9ac9d64d6935925a963c93ad536ecfa2895e0..9bd91583257dd235518038a9defdad50d5dbc4a6 100644 (file)
@@ -1,52 +1,48 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Khmer (Cambodia) (http://www.transifex.com/projects/p/ipfire/language/km_KH/)\n"
+"Language-Team: Khmer (Cambodia) (http://www.transifex.com/projects/p/ipfire/"
+"language/km_KH/)\n"
+"Language: km_KH\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: km_KH\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr ""
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr ""
-
 #: ../src/ddns/errors.py:29
 msgid "Error"
 msgstr ""
@@ -76,7 +72,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -92,103 +88,173 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr ""
+
+#: ../src/ddns/providers.py:194
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+
+#: ../src/ddns/providers.py:202
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr ""
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
 #, python-format
-msgid "%s is already up to date"
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr ""
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index a93cc82ced8205ae9a0eb87f6a188d03b9c23e56..86fa65001fea185545b5d1d327bdf66768d4e44e 100644 (file)
--- a/po/nl.po
+++ b/po/nl.po
@@ -1,7 +1,7 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # Hans <dutchtux@gmail.com>, 2013
 # Hans <dutchtux@gmail.com>, 2014
@@ -9,45 +9,43 @@ msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-07-05 12:36+0000\n"
-"Last-Translator: Hans <dutchtux@gmail.com>\n"
-"Language-Team: Dutch (http://www.transifex.com/projects/p/ipfire/language/nl/)\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
+"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
+"Language-Team: Dutch (http://www.transifex.com/projects/p/ipfire/language/"
+"nl/)\n"
+"Language: nl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: nl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr "Debugging modus is geactiveerd"
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr "Inladen configuratiebestand %s"
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr "Geen items gevonden in het configuratiebestand. Gestopt."
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr "Dynamische DNS update voor %(hostname)s (%(provider)s) mislukt:"
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
-msgstr "Dynamische DNS update voor %(hostname)s (%(provider)s) gaf een onverwerkte uitzondering:"
-
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr "Dynamische DNS update voor %(hostname)s (%(provider)s) geslaagd"
+msgstr ""
+"Dynamische DNS update voor %(hostname)s (%(provider)s) gaf een onverwerkte "
+"uitzondering:"
 
 #: ../src/ddns/errors.py:29
 msgid "Error"
@@ -60,7 +58,9 @@ msgstr "Netwerkfout"
 #: ../src/ddns/errors.py:47
 msgid ""
 "The server denied processing the request because account abuse is suspected"
-msgstr "De server heeft het verzoek niet verwerkt omdat het account vermoedelijk is misbruikt"
+msgstr ""
+"De server heeft het verzoek niet verwerkt omdat het account vermoedelijk is "
+"misbruikt"
 
 #: ../src/ddns/errors.py:55
 msgid "Authentication against the server has failed"
@@ -78,7 +78,7 @@ msgstr "Het configuratiebestand bevat fouten"
 msgid "Connection refused"
 msgstr "Verbinding geweigerd"
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr "Verbinding timeout"
 
@@ -94,103 +94,181 @@ msgstr "Interne serverfout"
 msgid "Network unreachable"
 msgstr "Netwerk onbereikbaar"
 
-#: ../src/ddns/errors.py:117
+#: ../src/ddns/errors.py:116
+#, fuzzy
+msgid "Not found"
+msgstr "Domein niet gevonden."
+
+#: ../src/ddns/errors.py:124
 msgid "Request error"
 msgstr "Opvraagfout"
 
-#: ../src/ddns/errors.py:124
+#: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
 msgid "Service unavailable"
 msgstr "Dienst niet beschikbaaar"
 
-#: ../src/ddns/errors.py:132
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr "De update kon niet worden uitgevoerd"
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr "Bijwerken %s gereed"
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr "Dynamische DNS update voor %(hostname)s (%(provider)s) geslaagd"
+
+#: ../src/ddns/providers.py:194
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+"Dynamische DNS update voor %(hostname)s (%(provider)s) gaf een onverwerkte "
+"uitzondering:"
+
+#: ../src/ddns/providers.py:202
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+"Dynamische DNS update voor %(hostname)s (%(provider)s) gaf een onverwerkte "
+"uitzondering:"
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, fuzzy, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr "Dynamische DNS update voor %(hostname)s (%(provider)s) mislukt:"
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
 #, python-format
-msgid "%s is already up to date"
-msgstr "%s is al bijgewerkt"
+msgid "Further updates will be withheld until %s"
+msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr "Geen geldige FQDN opgegeven."
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr "Opgegeven host bestaat niet."
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr "DNS fout geconstateerd."
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr "Server antwoord: %s"
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr "Ongeldige hostnaam opgegeven."
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr "Hostnaam is niet gemarkeerd als dynamische host."
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr "Ongeldig IP adres is verzonden."
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr "Geen hostnaam opgegeven."
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr "Account is uitgeschakeld."
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr "Teveel mislukte pogingen."
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
-msgstr "Opgegeven host bestaat niet."
-
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
-msgstr "DNS fout geconstateerd."
+#: ../src/ddns/providers.py:776
+#, fuzzy
+msgid "Malformed request has been sent."
+msgstr "Ongeldig IP adres is verzonden."
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
-msgstr "Server antwoord: %s"
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
+msgstr ""
 
-#: ../src/ddns/providers.py:596
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
 msgid "Domain not found."
 msgstr "Domein niet gevonden."
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:861
+#, fuzzy
+msgid "An invalid IP address was submitted"
+msgstr "Ongeldig IP adres is verzonden."
+
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr "Domein niet actief."
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr "Geen authenticatie details opgegeven."
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr "Ongeldig IPv4 adres is verstuurd."
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr "Ongeldig IPv6 adres is verstuurd."
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+#, fuzzy
+msgid "Invalid hostname specified"
+msgstr "Ongeldige hostnaam opgegeven."
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr "Draait op distributie: %s"
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr "Aanvraag header:"
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr "Antwoord header (statuscode %s):"
index 3449f04553813a3a4119ad4ffe0bb8c4ab24bc28..6eabe7b3b0a66283afb35e84825790f9a2c5e26f 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,52 +1,52 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # Jakub Ratajczak <j.ratajczak@eqba.pl>, 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Polish (http://www.transifex.com/projects/p/ipfire/language/pl/)\n"
+"Language-Team: Polish (http://www.transifex.com/projects/p/ipfire/language/"
+"pl/)\n"
+"Language: pl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: pl\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
+"|| n%100>=20) ? 1 : 2);\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr "Nie znaleziono żadnych wpisów w pliku configuracyjnym. Kończenie."
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
-msgstr "Aktualizacja dynamicznago DNS dla %(hostname)s (%(provider)s) nieudana:"
+msgstr ""
+"Aktualizacja dynamicznago DNS dla %(hostname)s (%(provider)s) nieudana:"
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
-msgstr "Aktualizacja dynamicznago DNS dla %(hostname)s (%(provider)s) wywołała nieobsługiwany błąd: "
-
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr "Aktualizacja dynamicznago DNS dla %(hostname)s (%(provider)s) poprawna:"
+msgstr ""
+"Aktualizacja dynamicznago DNS dla %(hostname)s (%(provider)s) wywołała "
+"nieobsługiwany błąd: "
 
 #: ../src/ddns/errors.py:29
 msgid "Error"
@@ -77,7 +77,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -93,103 +93,179 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr ""
+"Aktualizacja dynamicznago DNS dla %(hostname)s (%(provider)s) poprawna:"
+
+#: ../src/ddns/providers.py:194
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+"Aktualizacja dynamicznago DNS dla %(hostname)s (%(provider)s) wywołała "
+"nieobsługiwany błąd: "
+
+#: ../src/ddns/providers.py:202
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+"Aktualizacja dynamicznago DNS dla %(hostname)s (%(provider)s) wywołała "
+"nieobsługiwany błąd: "
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, fuzzy, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr ""
+"Aktualizacja dynamicznago DNS dla %(hostname)s (%(provider)s) nieudana:"
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
 #, python-format
-msgid "%s is already up to date"
+msgid "An update has not been performed because earlier updates failed for %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
+#, python-format
+msgid "Further updates will be withheld until %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr "Nagłówek żądania: "
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index 33abd7d92eff851c36969eb5db0d8a33028d012b..735f7db76ec6bbdbf58ff874664dd127b9b6fd72 100644 (file)
@@ -1,54 +1,53 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # André Felipe Morro <andre@andremorro.com>, 2012
 # André Felipe Morro <andre@andremorro.com>, 2014
 # Flávio Veras <flaviove@gmail.com>, 2014
+# Leandro Luquetti Basilio da Silva <leandroluquetti@gmail.com>, 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-07-04 10:46+0000\n"
-"Last-Translator: Flávio Veras <flaviove@gmail.com>\n"
-"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/ipfire/language/pt_BR/)\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
+"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
+"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/"
+"ipfire/language/pt_BR/)\n"
+"Language: pt_BR\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: pt_BR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr "Modo de depuração habilitado"
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr "Carregando arquivo de configuração %s"
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr "Não foram encontradas entradas no arquivo de configuração. Saindo."
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr "Atualização de DNS Dinâmico para %(hostname)s (%(provider)s) falhou:"
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
-msgstr "Atualização de DNS Dinâmico para %(hostname)s (%(provider)s) teve uma exceção não tratada:"
-
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr "Atualização de DNS Dinâmico para %(hostname)s (%(provider)s) bem sucedida"
+msgstr ""
+"Atualização de DNS Dinâmico para %(hostname)s (%(provider)s) teve uma "
+"exceção não tratada:"
 
 #: ../src/ddns/errors.py:29
 msgid "Error"
@@ -56,12 +55,13 @@ msgstr "Erro"
 
 #: ../src/ddns/errors.py:39
 msgid "Network error"
-msgstr "Erro na rede"
+msgstr "Erro de rede"
 
 #: ../src/ddns/errors.py:47
 msgid ""
 "The server denied processing the request because account abuse is suspected"
-msgstr "O servidor negou o processamento do pedido, por suspeita de abuso na conta"
+msgstr ""
+"O servidor negou o processamento do pedido, por suspeita de abuso na conta"
 
 #: ../src/ddns/errors.py:55
 msgid "Authentication against the server has failed"
@@ -69,7 +69,7 @@ msgstr "Autenticação contra o servidor falhou"
 
 #: ../src/ddns/errors.py:64
 msgid "The server denies any updates from this client"
-msgstr "O servidor nega todas as atualizações deste cliente"
+msgstr "O servidor nega quaisquer atualizações deste cliente"
 
 #: ../src/ddns/errors.py:72
 msgid "The configuration file has errors"
@@ -79,7 +79,7 @@ msgstr "O arquivo de configuração tem erros"
 msgid "Connection refused"
 msgstr "Conexão recusada"
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr "Tempo limite de conexão"
 
@@ -95,103 +95,182 @@ msgstr "Erro Interno do Servidor"
 msgid "Network unreachable"
 msgstr "Rede inacessível"
 
-#: ../src/ddns/errors.py:117
+#: ../src/ddns/errors.py:116
+#, fuzzy
+msgid "Not found"
+msgstr "Domínio não encontrado."
+
+#: ../src/ddns/errors.py:124
 msgid "Request error"
 msgstr "Erro de requisição"
 
-#: ../src/ddns/errors.py:124
+#: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
 msgid "Service unavailable"
 msgstr "Serviço indisponível"
 
-#: ../src/ddns/errors.py:132
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr "A atualizalçao não pode ser realizada"
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr "Atualição de %s forçada"
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
 #, python-format
-msgid "%s is already up to date"
-msgstr "%s já está atualizado"
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr ""
+"Atualização de DNS Dinâmico para %(hostname)s (%(provider)s) bem sucedida"
+
+#: ../src/ddns/providers.py:194
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+"Atualização de DNS Dinâmico para %(hostname)s (%(provider)s) teve uma "
+"exceção não tratada:"
+
+#: ../src/ddns/providers.py:202
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+"Atualização de DNS Dinâmico para %(hostname)s (%(provider)s) teve uma "
+"exceção não tratada:"
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, fuzzy, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr "Atualização de DNS Dinâmico para %(hostname)s (%(provider)s) falhou:"
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
+#, python-format
+msgid "Further updates will be withheld until %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr "Não foi dado um FQDN válido."
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr "Host especificado não existe."
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr "Encontrado erro de DNS."
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr "Resposta do servidor: %s"
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr "Hostname especificado inválido."
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr "Hostname não marcado como host dinâmico."
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr "Endereço IP inválido foi enviado."
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
-msgstr "Nenhum nome de host foi espacificado."
+msgstr "Nenhum hostname foi espacificado."
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr "A conta foi desabilitada."
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
-msgstr "Falha em muitas rwequisições."
-
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
-msgstr "Host especificado não existe."
+msgstr "Muitas requisições falhas."
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
-msgstr "Encontrado erro de DNS."
+#: ../src/ddns/providers.py:776
+#, fuzzy
+msgid "Malformed request has been sent."
+msgstr "Endereço IP inválido foi enviado."
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
-msgstr "Resposta do servidor: %s"
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
+msgstr ""
 
-#: ../src/ddns/providers.py:596
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
 msgid "Domain not found."
 msgstr "Domínio não encontrado."
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:861
+#, fuzzy
+msgid "An invalid IP address was submitted"
+msgstr "Endereço IP inválido foi enviado."
+
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr "Domínio não está ativo."
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
-msgstr "Nenhum detalhe de Autor especificado."
+msgstr "Nenhum detalhe de autenticação especificado."
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
-msgstr "Endereço IPv4 inválido foi enviado."
+msgstr "Endereço IPv4 enviado é inválido."
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
-msgstr "Endereço IPv6 inválido foi enviado."
+msgstr "Endereço IPv6 enviado é inválido."
+
+#: ../src/ddns/providers.py:1385
+#, fuzzy
+msgid "Invalid hostname specified"
+msgstr "Hostname especificado inválido."
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
-msgstr "Em execução na distribuição: %s"
+msgstr "Rodando na distribuição: %s"
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr "Header solicitada:"
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr "Cabeçalho de resposta (código de status %s):"
index f9aedf05929c30d711432e5444f7ce347b476c47..c2799cd94fc66e1c119a282ecc002a3336c3e912 100644 (file)
@@ -1,52 +1,48 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/ipfire/language/pt_PT/)\n"
+"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/"
+"ipfire/language/pt_PT/)\n"
+"Language: pt_PT\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: pt_PT\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr ""
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr ""
-
 #: ../src/ddns/errors.py:29
 msgid "Error"
 msgstr ""
@@ -76,7 +72,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -92,103 +88,173 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr ""
+
+#: ../src/ddns/providers.py:194
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+
+#: ../src/ddns/providers.py:202
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr ""
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
 #, python-format
-msgid "%s is already up to date"
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr ""
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index 889e2f095b35bc3a1f7dbc89dacdd58beff1d581..5b20bab8f6df5aa3f0016e04055fa59a33aa5fbc 100644 (file)
@@ -1,52 +1,51 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # robert lasic <robertlasic@gmail.com>, 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/ipfire/language/ro_RO/)\n"
+"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/"
+"ipfire/language/ro_RO/)\n"
+"Language: ro_RO\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: ro_RO\n"
-"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
+"2:1));\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr "Nici o intrare în fișierul de configurare. Ieșire."
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr "Eroare actualizare DNS dinamic %(hostname)s (%(provider)s):"
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
-msgstr "Actualizare DNS dinamic pentru %(hostname)s (%(provider)s) a generat o excepție netratată:"
-
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr "Actualizarea DNS dinamic pentru %(hostname)s (%(provider)s) s-a făcut cu succes."
+msgstr ""
+"Actualizare DNS dinamic pentru %(hostname)s (%(provider)s) a generat o "
+"excepție netratată:"
 
 #: ../src/ddns/errors.py:29
 msgid "Error"
@@ -77,7 +76,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -93,103 +92,179 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr ""
+"Actualizarea DNS dinamic pentru %(hostname)s (%(provider)s) s-a făcut cu "
+"succes."
+
+#: ../src/ddns/providers.py:194
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+"Actualizare DNS dinamic pentru %(hostname)s (%(provider)s) a generat o "
+"excepție netratată:"
+
+#: ../src/ddns/providers.py:202
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+"Actualizare DNS dinamic pentru %(hostname)s (%(provider)s) a generat o "
+"excepție netratată:"
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, fuzzy, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr "Eroare actualizare DNS dinamic %(hostname)s (%(provider)s):"
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
 #, python-format
-msgid "%s is already up to date"
+msgid "An update has not been performed because earlier updates failed for %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
+#, python-format
+msgid "Further updates will be withheld until %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr "Cerere header:"
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index 3f3c5d457a57b7b8b84180b80d30d2b374f51e3e..6e582ff00a173099954dfad57223821d28f42654 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,53 +1,53 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # Alexander Savchenko, 2014
+# bubnov_pi <ipfire@bubnov.su>, 2014
 # Вальчишин Андрій Олегович <v.andrey@i.ua>, 2012
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-07-08 09:47+0000\n"
-"Last-Translator: Alexander Savchenko\n"
-"Language-Team: Russian (http://www.transifex.com/projects/p/ipfire/language/ru/)\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
+"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
+"Language-Team: Russian (http://www.transifex.com/projects/p/ipfire/language/"
+"ru/)\n"
+"Language: ru\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: ru\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
-msgstr ""
+msgstr "Включён режим отладки"
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
-msgstr ""
+msgstr "Загружается файл конфигурации %s"
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr "Не найдено записей в конфигурационном файле. Выход."
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr "Ошибка обновления Dynamic DNS для %(hostname)s (%(provider)s):"
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
-msgstr "Обновление Dynamic DNS для %(hostname)s (%(provider)s) вызвало необработанное исключение:"
-
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr "Обновление Dynamic DNS для %(hostname)s (%(provider)s) выполнено успешно."
+msgstr ""
+"Обновление Dynamic DNS для %(hostname)s (%(provider)s) вызвало "
+"необработанное исключение:"
 
 #: ../src/ddns/errors.py:29
 msgid "Error"
@@ -55,142 +55,222 @@ msgstr "Ошибка"
 
 #: ../src/ddns/errors.py:39
 msgid "Network error"
-msgstr ""
+msgstr "Сетевая ошибка"
 
 #: ../src/ddns/errors.py:47
 msgid ""
 "The server denied processing the request because account abuse is suspected"
 msgstr ""
+"Сервер отклонил обработку запроса из-за подозрения в компрометации аккаунта."
 
 #: ../src/ddns/errors.py:55
 msgid "Authentication against the server has failed"
-msgstr ""
+msgstr "Неудачная авторизация на сервере"
 
 #: ../src/ddns/errors.py:64
 msgid "The server denies any updates from this client"
-msgstr ""
+msgstr "Сервер отклоняет любые обновления от этого клиента"
 
 #: ../src/ddns/errors.py:72
 msgid "The configuration file has errors"
-msgstr ""
+msgstr "Конфигурационный файл содержит ошибки"
 
 #: ../src/ddns/errors.py:79
 msgid "Connection refused"
-msgstr ""
+msgstr "Соединение отклонено"
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
-msgstr ""
+msgstr "Тайм-аут подключения"
 
 #: ../src/ddns/errors.py:94
 msgid "The host could not be found in the configuration file"
-msgstr ""
+msgstr "Хост не найден в файле конфигурации"
 
 #: ../src/ddns/errors.py:102
 msgid "Internal server error"
-msgstr ""
+msgstr "Внутренняя ошибка сервера"
 
 #: ../src/ddns/errors.py:109
 msgid "Network unreachable"
-msgstr ""
+msgstr "Сеть недоступна"
 
-#: ../src/ddns/errors.py:117
+#: ../src/ddns/errors.py:116
+#, fuzzy
+msgid "Not found"
+msgstr "Домен не найден."
+
+#: ../src/ddns/errors.py:124
 msgid "Request error"
+msgstr "Ошибка запроса"
+
+#: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
 msgstr ""
 
-#: ../src/ddns/errors.py:124
+#: ../src/ddns/errors.py:139
 msgid "Service unavailable"
-msgstr ""
+msgstr "Сервис недоступен"
 
-#: ../src/ddns/errors.py:132
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
+msgstr "Обновление не может быть выполнено"
+
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
-msgstr ""
+msgstr "Принудительное обновление %s"
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
 #, python-format
-msgid "%s is already up to date"
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
 msgstr ""
+"Обновление Dynamic DNS для %(hostname)s (%(provider)s) выполнено успешно."
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
-msgid "No valid FQDN was given."
+#: ../src/ddns/providers.py:194
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
 msgstr ""
+"Обновление Dynamic DNS для %(hostname)s (%(provider)s) вызвало "
+"необработанное исключение:"
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
-msgid "Invalid hostname specified."
+#: ../src/ddns/providers.py:202
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
 msgstr ""
+"Обновление Dynamic DNS для %(hostname)s (%(provider)s) вызвало "
+"необработанное исключение:"
 
-#: ../src/ddns/providers.py:282
-msgid "Hostname not marked as a dynamic host."
-msgstr ""
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, fuzzy, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr "Ошибка обновления Dynamic DNS для %(hostname)s (%(provider)s):"
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
-msgid "Invalid IP address has been sent."
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:324
-msgid "No hostname specified."
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
 msgstr ""
 
-#: ../src/ddns/providers.py:333
-msgid "Account has been disabled."
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
 msgstr ""
 
-#: ../src/ddns/providers.py:339
-msgid "Too many failed requests."
+#: ../src/ddns/providers.py:251
+#, python-format
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:388
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
+msgid "No valid FQDN was given."
+msgstr "Не дано верного FQDN"
+
+#: ../src/ddns/providers.py:387
 msgid "Specified host does not exist."
-msgstr ""
+msgstr "Указанный узел не существует."
 
-#: ../src/ddns/providers.py:392
+#: ../src/ddns/providers.py:391
 msgid "DNS error encountered."
-msgstr ""
+msgstr "Произошла ошибка DNS"
 
 #. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
 #, python-format
 msgid "Server response: %s"
+msgstr "Ответ сервера: %s"
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
+msgid "Invalid hostname specified."
+msgstr "Указано неверное имя узла."
+
+#: ../src/ddns/providers.py:616
+msgid "Hostname not marked as a dynamic host."
+msgstr "Узел не помечен как динамический."
+
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
+msgid "Invalid IP address has been sent."
+msgstr "Отправлен некорректный IP-адрес."
+
+#: ../src/ddns/providers.py:658
+msgid "No hostname specified."
+msgstr "Не указано имя узла."
+
+#: ../src/ddns/providers.py:667
+msgid "Account has been disabled."
+msgstr "Аккаунт отключен."
+
+#: ../src/ddns/providers.py:673
+msgid "Too many failed requests."
+msgstr "Слишком много неудачных запросов."
+
+#: ../src/ddns/providers.py:776
+#, fuzzy
+msgid "Malformed request has been sent."
+msgstr "Отправлен некорректный IP-адрес."
+
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
 msgid "Domain not found."
 msgstr "Домен не найден."
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:861
+#, fuzzy
+msgid "An invalid IP address was submitted"
+msgstr "Отправлен некорректный IP-адрес."
+
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
-msgstr ""
+msgstr "Домен не активен."
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
-msgstr ""
+msgstr "Не указаны детали авторизации."
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
-msgstr ""
+msgstr "Отправлен некорректный адрес IPv4."
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
-msgstr ""
+msgstr "Отправлен некорректный адрес IPv6."
+
+#: ../src/ddns/providers.py:1385
+#, fuzzy
+msgid "Invalid hostname specified"
+msgstr "Указано неверное имя узла."
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
-msgstr ""
+msgstr "Выполняется распространение: %s"
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr "Заголовок запроса:"
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
-msgstr ""
+msgstr "Заголовок ответа (Статус %s):"
index 4cb819975fec5ad41620dfa0c0129d845e24a724..f171c460a9ef1515ba1c5bc7220db23eba22c86b 100644 (file)
--- a/po/sq.po
+++ b/po/sq.po
@@ -1,52 +1,50 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # Ardit Dani <ardit.dani@gmail.com>, 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Albanian (http://www.transifex.com/projects/p/ipfire/language/sq/)\n"
+"Language-Team: Albanian (http://www.transifex.com/projects/p/ipfire/language/"
+"sq/)\n"
+"Language: sq\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: sq\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr "Nuk gjeti asnjë hyrje në skedarin e konfigurimit. Dalje."
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr "Azhornimi dinamik i DNS për %(hostname)s(%(provider)s) dështoj:"
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
-msgstr "Azhornimi dinamik i DNS për %(hostname)s (%(provider)s) holli një përjashtim të pambajtur:"
-
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr "Azhornimi dinamik i DNS për %(hostname)s (%(provider)s) me sukses"
+msgstr ""
+"Azhornimi dinamik i DNS për %(hostname)s (%(provider)s) holli një përjashtim "
+"të pambajtur:"
 
 #: ../src/ddns/errors.py:29
 msgid "Error"
@@ -77,7 +75,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -93,103 +91,177 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr "Azhornimi dinamik i DNS për %(hostname)s (%(provider)s) me sukses"
+
+#: ../src/ddns/providers.py:194
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+"Azhornimi dinamik i DNS për %(hostname)s (%(provider)s) holli një përjashtim "
+"të pambajtur:"
+
+#: ../src/ddns/providers.py:202
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+"Azhornimi dinamik i DNS për %(hostname)s (%(provider)s) holli një përjashtim "
+"të pambajtur:"
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, fuzzy, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr "Azhornimi dinamik i DNS për %(hostname)s(%(provider)s) dështoj:"
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
 #, python-format
-msgid "%s is already up to date"
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr "Kërkesë koke:"
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index abf3910b9653996277b0d6937d6e3c72f3c00e4a..2914d8404b4c9e9061a7c84c75b8167358e3738f 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,53 +1,49 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # softballs <andreas@meriq.se>, 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Swedish (http://www.transifex.com/projects/p/ipfire/language/sv/)\n"
+"Language-Team: Swedish (http://www.transifex.com/projects/p/ipfire/language/"
+"sv/)\n"
+"Language: sv\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: sv\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr "Hittade inte några inlägg i konfigurations filen. Avslutar."
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr ""
-
 #: ../src/ddns/errors.py:29
 msgid "Error"
 msgstr ""
@@ -77,7 +73,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -93,103 +89,173 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr ""
+
+#: ../src/ddns/providers.py:194
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+
+#: ../src/ddns/providers.py:202
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr ""
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
 #, python-format
-msgid "%s is already up to date"
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr ""
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index ef7822fb22271a3698aa743179218755a76ae53a..8c0f26339470d85262c3a1e8e19ef45819340323 100644 (file)
--- a/po/th.po
+++ b/po/th.po
@@ -1,52 +1,48 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Thai (http://www.transifex.com/projects/p/ipfire/language/th/)\n"
+"Language-Team: Thai (http://www.transifex.com/projects/p/ipfire/language/"
+"th/)\n"
+"Language: th\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: th\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr ""
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr ""
-
 #: ../src/ddns/errors.py:29
 msgid "Error"
 msgstr ""
@@ -76,7 +72,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -92,103 +88,173 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr ""
+
+#: ../src/ddns/providers.py:194
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+
+#: ../src/ddns/providers.py:202
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr ""
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
 #, python-format
-msgid "%s is already up to date"
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr ""
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index c1a5de14580fa98e6b282292108295602fb7969a..687d32475b84134d58d15c3fa591f25c90c9a4c9 100644 (file)
--- a/po/tk.po
+++ b/po/tk.po
@@ -1,52 +1,48 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Turkmen (http://www.transifex.com/projects/p/ipfire/language/tk/)\n"
+"Language-Team: Turkmen (http://www.transifex.com/projects/p/ipfire/language/"
+"tk/)\n"
+"Language: tk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: tk\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr ""
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr ""
-
 #: ../src/ddns/errors.py:29
 msgid "Error"
 msgstr ""
@@ -76,7 +72,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -92,103 +88,173 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr ""
+
+#: ../src/ddns/providers.py:194
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+
+#: ../src/ddns/providers.py:202
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr ""
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
 #, python-format
-msgid "%s is already up to date"
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr ""
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index eaa50690bd94d767505ff14b5f43627152fb2d49..3c6da3c88c4dbe6aacdfbc858cb54f28768ba8a6 100644 (file)
--- a/po/tr.po
+++ b/po/tr.po
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # Ersan YILDIRIM <yakazan@gmail.com>, 2014
+# K. Emre, 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Turkish (http://www.transifex.com/projects/p/ipfire/language/tr/)\n"
+"Language-Team: Turkish (http://www.transifex.com/projects/p/ipfire/language/"
+"tr/)\n"
+"Language: tr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: tr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
-msgstr ""
+msgstr "Hata ayıklama modu etkinleştirildi"
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
-msgstr ""
+msgstr "%s yapılandırma dosyası yükleniyor"
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr "Yapılandırma dosyasında hiçbir girdi bulunamadı. Çıkılıyor."
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
-msgstr "%(hostname)s (%(provider)s) için dinami DNS güncelleştirmesi başarısız oldu."
+msgstr ""
+"%(hostname)s (%(provider)s) için dinamik DNS güncelleştirmesi başarısız oldu."
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
-msgstr "%(hostname)s (%(provider)s) dinamik DNS işlenmesinde özel bir durum oluştu:"
-
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr "%(hostname)s (%(provider)s) için dinamik DNS güncellemesi başarıyla yapıldı "
+msgstr ""
+"%(hostname)s (%(provider)s) dinamik DNS işlenmesinde özel bir durum oluştu:"
 
 #: ../src/ddns/errors.py:29
 msgid "Error"
-msgstr ""
+msgstr "Hata"
 
 #: ../src/ddns/errors.py:39
 msgid "Network error"
-msgstr ""
+msgstr "Ağ hatası"
 
 #: ../src/ddns/errors.py:47
 msgid ""
 "The server denied processing the request because account abuse is suspected"
 msgstr ""
+"Sunucu isteği işlemeyi reddetti çünkü hesabı kötüye kullanma şüphesi var."
 
 #: ../src/ddns/errors.py:55
 msgid "Authentication against the server has failed"
-msgstr ""
+msgstr "Sunucuyla kimlik doğrulama başarısız oldu."
 
 #: ../src/ddns/errors.py:64
 msgid "The server denies any updates from this client"
-msgstr ""
+msgstr "Sunucu bu istemciden güncellemeye izin vermiyor."
 
 #: ../src/ddns/errors.py:72
 msgid "The configuration file has errors"
-msgstr ""
+msgstr "Yapılandırma dosyasında hatalar var."
 
 #: ../src/ddns/errors.py:79
 msgid "Connection refused"
-msgstr ""
+msgstr "Bağlantı reddedildi"
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
-msgstr ""
+msgstr "Bağlantı zaman aşımına uğradı"
 
 #: ../src/ddns/errors.py:94
 msgid "The host could not be found in the configuration file"
-msgstr ""
+msgstr "Ana bilgisayar yapılandırma dosyasında bulunamadı."
 
 #: ../src/ddns/errors.py:102
 msgid "Internal server error"
-msgstr ""
+msgstr "İç sunucu hatası"
 
 #: ../src/ddns/errors.py:109
 msgid "Network unreachable"
-msgstr ""
+msgstr "Ağa ulaşılamıyor"
+
+#: ../src/ddns/errors.py:116
+#, fuzzy
+msgid "Not found"
+msgstr "Etki alanı bulunamadı."
 
-#: ../src/ddns/errors.py:117
+#: ../src/ddns/errors.py:124
 msgid "Request error"
+msgstr "İstek hatası"
+
+#: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
 msgstr ""
 
-#: ../src/ddns/errors.py:124
+#: ../src/ddns/errors.py:139
 msgid "Service unavailable"
-msgstr ""
+msgstr "Hizmet kullanılamıyor"
 
-#: ../src/ddns/errors.py:132
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
+msgstr "Güncelleme yapılamadı"
+
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
-msgstr ""
+msgstr "%s güncellemeye zorlandı"
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
 #, python-format
-msgid "%s is already up to date"
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
 msgstr ""
+"%(hostname)s (%(provider)s) için dinamik DNS güncellemesi başarıyla yapıldı "
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
-msgid "No valid FQDN was given."
+#: ../src/ddns/providers.py:194
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
 msgstr ""
+"%(hostname)s (%(provider)s) dinamik DNS işlenmesinde özel bir durum oluştu:"
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
-msgid "Invalid hostname specified."
+#: ../src/ddns/providers.py:202
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
 msgstr ""
+"%(hostname)s (%(provider)s) dinamik DNS işlenmesinde özel bir durum oluştu:"
 
-#: ../src/ddns/providers.py:282
-msgid "Hostname not marked as a dynamic host."
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, fuzzy, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
 msgstr ""
+"%(hostname)s (%(provider)s) için dinamik DNS güncelleştirmesi başarısız oldu."
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
-msgid "Invalid IP address has been sent."
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:324
-msgid "No hostname specified."
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
 msgstr ""
 
-#: ../src/ddns/providers.py:333
-msgid "Account has been disabled."
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
 msgstr ""
 
-#: ../src/ddns/providers.py:339
-msgid "Too many failed requests."
+#: ../src/ddns/providers.py:251
+#, python-format
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:388
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
+msgid "No valid FQDN was given."
+msgstr "Geçerli FQDN verilmedi."
+
+#: ../src/ddns/providers.py:387
 msgid "Specified host does not exist."
-msgstr ""
+msgstr "Belirtilen ana bilgisayar yok."
 
-#: ../src/ddns/providers.py:392
+#: ../src/ddns/providers.py:391
 msgid "DNS error encountered."
-msgstr ""
+msgstr "DNS hatası ile karşılaşıldı."
 
 #. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
 #, python-format
 msgid "Server response: %s"
+msgstr "Sunucu yanıtı: %s"
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
+msgid "Invalid hostname specified."
+msgstr "Geçersiz ana bilgisayar adı belirtildi."
+
+#: ../src/ddns/providers.py:616
+msgid "Hostname not marked as a dynamic host."
+msgstr "Ana bilgisayar adı, dinamik ana bilgisayar olarak işaretli değil."
+
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
+msgid "Invalid IP address has been sent."
+msgstr "Geçersiz IP adresi gönderildi."
+
+#: ../src/ddns/providers.py:658
+msgid "No hostname specified."
+msgstr "Ana bilgisayar adı belirtilmedi."
+
+#: ../src/ddns/providers.py:667
+msgid "Account has been disabled."
+msgstr "Hesap devre dışı bırakıldı."
+
+#: ../src/ddns/providers.py:673
+msgid "Too many failed requests."
+msgstr "Çok fazla başarısız istek."
+
+#: ../src/ddns/providers.py:776
+#, fuzzy
+msgid "Malformed request has been sent."
+msgstr "Geçersiz IP adresi gönderildi."
+
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
+msgstr "Etki alanı bulunamadı."
+
+#: ../src/ddns/providers.py:861
+#, fuzzy
+msgid "An invalid IP address was submitted"
+msgstr "Geçersiz IP adresi gönderildi."
+
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
-msgstr ""
+msgstr "Etki alanı aktif değil."
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
-msgstr ""
+msgstr "Kimlik doğrulama detayları belirtilmedi."
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
-msgstr ""
+msgstr "Geçersiz IPv4 adresi gönderildi."
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
-msgstr ""
+msgstr "Geçersiz IPv6 adresi gönderildi."
+
+#: ../src/ddns/providers.py:1385
+#, fuzzy
+msgid "Invalid hostname specified"
+msgstr "Geçersiz ana bilgisayar adı belirtildi."
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
-msgstr ""
+msgstr "Üzerinde çalışılan dağıtım: %s"
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
-msgstr "Başlık isteği:"
+msgstr "İstek başlığı:"
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
-msgstr ""
+msgstr "Yanıt başlığı (Durum Kodu %s)"
index d3763b005f96123b6ed56f7df51e2df3defd89b2..c42523cab1b82565cd2d5aca7d7dce7d489ff55d 100644 (file)
--- a/po/uk.po
+++ b/po/uk.po
@@ -1,52 +1,51 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 # Вальчишин Андрій Олегович <v.andrey@i.ua>, 2012
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Ukrainian (http://www.transifex.com/projects/p/ipfire/language/uk/)\n"
+"Language-Team: Ukrainian (http://www.transifex.com/projects/p/ipfire/"
+"language/uk/)\n"
+"Language: uk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: uk\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr "Не знайдено записів в файлі конфігурації. Вихід."
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr "Помилка оновлення Dynamic DNS для %(hostname)s (%(provider)s):"
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
-msgstr "Оновлення Dynamic DNS для %(hostname)s (%(provider)s) викликало неопрацьоване виключення:"
-
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr "Оновлення Dynamic DNS для %(hostname)s (%(provider)s) виконано."
+msgstr ""
+"Оновлення Dynamic DNS для %(hostname)s (%(provider)s) викликало "
+"неопрацьоване виключення:"
 
 #: ../src/ddns/errors.py:29
 msgid "Error"
@@ -77,7 +76,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -93,103 +92,177 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr "Оновлення Dynamic DNS для %(hostname)s (%(provider)s) виконано."
+
+#: ../src/ddns/providers.py:194
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+"Оновлення Dynamic DNS для %(hostname)s (%(provider)s) викликало "
+"неопрацьоване виключення:"
+
+#: ../src/ddns/providers.py:202
+#, fuzzy, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+"Оновлення Dynamic DNS для %(hostname)s (%(provider)s) викликало "
+"неопрацьоване виключення:"
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, fuzzy, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr "Помилка оновлення Dynamic DNS для %(hostname)s (%(provider)s):"
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
 #, python-format
-msgid "%s is already up to date"
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr "Заголовок запиту:"
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index 3fbd09ab6c6351b966332bb4574870d8142f104e..60ac6c53eec0e23dd5fcae20e1700ffc48a7c04a 100644 (file)
@@ -1,52 +1,48 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Uzbek (Latin) (http://www.transifex.com/projects/p/ipfire/language/uz@Latn/)\n"
+"Language-Team: Uzbek (Latin) (http://www.transifex.com/projects/p/ipfire/"
+"language/uz@Latn/)\n"
+"Language: uz@Latn\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: uz@Latn\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr ""
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr ""
-
 #: ../src/ddns/errors.py:29
 msgid "Error"
 msgstr ""
@@ -76,7 +72,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -92,103 +88,173 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr ""
+
+#: ../src/ddns/providers.py:194
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+
+#: ../src/ddns/providers.py:202
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr ""
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
 #, python-format
-msgid "%s is already up to date"
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr ""
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
index 101102c17c259e2a9119b55a140417b716cd817e..ca92060ab53924e07b018cce3f7b57d73eed4eaf 100644 (file)
--- a/po/vi.po
+++ b/po/vi.po
@@ -1,52 +1,48 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Translators:
 msgid ""
 msgstr ""
 "Project-Id-Version: IPFire Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-22 12:37+0000\n"
-"PO-Revision-Date: 2014-06-23 08:45+0000\n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
 "Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
-"Language-Team: Vietnamese (http://www.transifex.com/projects/p/ipfire/language/vi/)\n"
+"Language-Team: Vietnamese (http://www.transifex.com/projects/p/ipfire/"
+"language/vi/)\n"
+"Language: vi\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: vi\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../src/ddns/__init__.py:60
+#: ../src/ddns/__init__.py:63
 msgid "Debugging mode enabled"
 msgstr ""
 
-#: ../src/ddns/__init__.py:128
+#: ../src/ddns/__init__.py:90
 #, python-format
 msgid "Loading configuration file %s"
 msgstr ""
 
-#: ../src/ddns/__init__.py:183
+#: ../src/ddns/__init__.py:156
 msgid "Found no entries in the configuration file. Exiting."
 msgstr ""
 
-#: ../src/ddns/__init__.py:194
+#: ../src/ddns/__init__.py:167
 #, python-format
 msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:201
+#: ../src/ddns/__init__.py:174
 #, python-format
 msgid ""
 "Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
 "exception:"
 msgstr ""
 
-#: ../src/ddns/__init__.py:205
-#, python-format
-msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
-msgstr ""
-
 #: ../src/ddns/errors.py:29
 msgid "Error"
 msgstr ""
@@ -76,7 +72,7 @@ msgstr ""
 msgid "Connection refused"
 msgstr ""
 
-#: ../src/ddns/errors.py:86 ../src/ddns/system.py:203
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
 msgid "Connection timeout"
 msgstr ""
 
@@ -92,103 +88,173 @@ msgstr ""
 msgid "Network unreachable"
 msgstr ""
 
-#: ../src/ddns/errors.py:117
-msgid "Request error"
+#: ../src/ddns/errors.py:116
+msgid "Not found"
 msgstr ""
 
 #: ../src/ddns/errors.py:124
-msgid "Service unavailable"
+msgid "Request error"
 msgstr ""
 
 #: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
 msgid "The update could not be performed"
 msgstr ""
 
-#: ../src/ddns/providers.py:129
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
 #, python-format
 msgid "Updating %s forced"
 msgstr ""
 
-#: ../src/ddns/providers.py:133
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr ""
+
+#: ../src/ddns/providers.py:194
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+
+#: ../src/ddns/providers.py:202
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr ""
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
 #, python-format
-msgid "%s is already up to date"
+msgid "Further updates will be withheld until %s"
 msgstr ""
 
-#: ../src/ddns/providers.py:278 ../src/ddns/providers.py:386
-#: ../src/ddns/providers.py:720 ../src/ddns/providers.py:882
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
 msgid "No valid FQDN was given."
 msgstr ""
 
-#: ../src/ddns/providers.py:280 ../src/ddns/providers.py:327
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
 msgid "Invalid hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:282
+#: ../src/ddns/providers.py:616
 msgid "Hostname not marked as a dynamic host."
 msgstr ""
 
-#: ../src/ddns/providers.py:284 ../src/ddns/providers.py:336
-#: ../src/ddns/providers.py:475
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
 msgid "Invalid IP address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:324
+#: ../src/ddns/providers.py:658
 msgid "No hostname specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:333
+#: ../src/ddns/providers.py:667
 msgid "Account has been disabled."
 msgstr ""
 
-#: ../src/ddns/providers.py:339
+#: ../src/ddns/providers.py:673
 msgid "Too many failed requests."
 msgstr ""
 
-#: ../src/ddns/providers.py:388
-msgid "Specified host does not exist."
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:392
-msgid "DNS error encountered."
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
 msgstr ""
 
-#. If we got here, some other update error happened.
-#: ../src/ddns/providers.py:395
-#, python-format
-msgid "Server response: %s"
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
 msgstr ""
 
-#: ../src/ddns/providers.py:596
-msgid "Domain not found."
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
 msgstr ""
 
-#: ../src/ddns/providers.py:598
+#: ../src/ddns/providers.py:1015
 msgid "Domain not active."
 msgstr ""
 
-#: ../src/ddns/providers.py:694
+#: ../src/ddns/providers.py:1165
 msgid "No Auth details specified."
 msgstr ""
 
-#: ../src/ddns/providers.py:716
+#: ../src/ddns/providers.py:1187
 msgid "Invalid IPv4 address has been sent."
 msgstr ""
 
-#: ../src/ddns/providers.py:718
+#: ../src/ddns/providers.py:1189
 msgid "Invalid IPv6 address has been sent."
 msgstr ""
 
-#: ../src/ddns/system.py:52
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
 #, python-format
 msgid "Running on distribution: %s"
 msgstr ""
 
-#: ../src/ddns/system.py:155
+#: ../src/ddns/system.py:153
 msgid "Request header:"
 msgstr ""
 
 #. Log response header.
-#: ../src/ddns/system.py:163
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
 #, python-format
 msgid "Response header (Status Code %s):"
 msgstr ""
diff --git a/po/zh.po b/po/zh.po
new file mode 100644 (file)
index 0000000..c84416d
--- /dev/null
+++ b/po/zh.po
@@ -0,0 +1,260 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: IPFire Project\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2014-09-29 14:20+0000\n"
+"PO-Revision-Date: 2014-09-29 14:25+0000\n"
+"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
+"Language-Team: Chinese (http://www.transifex.com/projects/p/ipfire/language/"
+"zh/)\n"
+"Language: zh\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: ../src/ddns/__init__.py:63
+msgid "Debugging mode enabled"
+msgstr ""
+
+#: ../src/ddns/__init__.py:90
+#, python-format
+msgid "Loading configuration file %s"
+msgstr ""
+
+#: ../src/ddns/__init__.py:156
+msgid "Found no entries in the configuration file. Exiting."
+msgstr ""
+
+#: ../src/ddns/__init__.py:167
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) failed:"
+msgstr ""
+
+#: ../src/ddns/__init__.py:174
+#, python-format
+msgid ""
+"Dynamic DNS update for %(hostname)s (%(provider)s) throwed an unhandled "
+"exception:"
+msgstr ""
+
+#: ../src/ddns/errors.py:29
+msgid "Error"
+msgstr ""
+
+#: ../src/ddns/errors.py:39
+msgid "Network error"
+msgstr ""
+
+#: ../src/ddns/errors.py:47
+msgid ""
+"The server denied processing the request because account abuse is suspected"
+msgstr ""
+
+#: ../src/ddns/errors.py:55
+msgid "Authentication against the server has failed"
+msgstr ""
+
+#: ../src/ddns/errors.py:64
+msgid "The server denies any updates from this client"
+msgstr ""
+
+#: ../src/ddns/errors.py:72
+msgid "The configuration file has errors"
+msgstr ""
+
+#: ../src/ddns/errors.py:79
+msgid "Connection refused"
+msgstr ""
+
+#: ../src/ddns/errors.py:86 ../src/ddns/system.py:218
+msgid "Connection timeout"
+msgstr ""
+
+#: ../src/ddns/errors.py:94
+msgid "The host could not be found in the configuration file"
+msgstr ""
+
+#: ../src/ddns/errors.py:102
+msgid "Internal server error"
+msgstr ""
+
+#: ../src/ddns/errors.py:109
+msgid "Network unreachable"
+msgstr ""
+
+#: ../src/ddns/errors.py:116
+msgid "Not found"
+msgstr ""
+
+#: ../src/ddns/errors.py:124
+msgid "Request error"
+msgstr ""
+
+#: ../src/ddns/errors.py:132
+msgid "Could not resolve DNS entry"
+msgstr ""
+
+#: ../src/ddns/errors.py:139
+msgid "Service unavailable"
+msgstr ""
+
+#: ../src/ddns/errors.py:147
+msgid "The update could not be performed"
+msgstr ""
+
+#: ../src/ddns/providers.py:85
+msgid "Provider is not properly configured"
+msgstr ""
+
+#: ../src/ddns/providers.py:154
+#, python-format
+msgid "Updating %s forced"
+msgstr ""
+
+#: ../src/ddns/providers.py:170
+#, python-format
+msgid "Dynamic DNS update for %(hostname)s (%(provider)s) successful"
+msgstr ""
+
+#: ../src/ddns/providers.py:194
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because of an IP "
+"address change"
+msgstr ""
+
+#: ../src/ddns/providers.py:202
+#, python-format
+msgid ""
+"An update for %(hostname)s (%(provider)s) is performed because the holdoff "
+"time has expired"
+msgstr ""
+
+#. Otherwise, we don't need to perform an update
+#: ../src/ddns/providers.py:209
+#, python-format
+msgid "No update required for %(hostname)s (%(provider)s)"
+msgstr ""
+
+#: ../src/ddns/providers.py:228 ../src/ddns/providers.py:242
+#, python-format
+msgid "An update has not been performed because earlier updates failed for %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:230
+msgid "There will be no retries"
+msgstr ""
+
+#: ../src/ddns/providers.py:246
+msgid "Last failure message:"
+msgstr ""
+
+#: ../src/ddns/providers.py:251
+#, python-format
+msgid "Further updates will be withheld until %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:385 ../src/ddns/providers.py:612
+#: ../src/ddns/providers.py:1191 ../src/ddns/providers.py:1340
+msgid "No valid FQDN was given."
+msgstr ""
+
+#: ../src/ddns/providers.py:387
+msgid "Specified host does not exist."
+msgstr ""
+
+#: ../src/ddns/providers.py:391
+msgid "DNS error encountered."
+msgstr ""
+
+#. If we got here, some other update error happened.
+#: ../src/ddns/providers.py:396 ../src/ddns/providers.py:785
+#, python-format
+msgid "Server response: %s"
+msgstr ""
+
+#: ../src/ddns/providers.py:531
+msgid "Scriptlet:"
+msgstr ""
+
+#: ../src/ddns/providers.py:614 ../src/ddns/providers.py:661
+msgid "Invalid hostname specified."
+msgstr ""
+
+#: ../src/ddns/providers.py:616
+msgid "Hostname not marked as a dynamic host."
+msgstr ""
+
+#: ../src/ddns/providers.py:618 ../src/ddns/providers.py:670
+#: ../src/ddns/providers.py:905
+msgid "Invalid IP address has been sent."
+msgstr ""
+
+#: ../src/ddns/providers.py:658
+msgid "No hostname specified."
+msgstr ""
+
+#: ../src/ddns/providers.py:667
+msgid "Account has been disabled."
+msgstr ""
+
+#: ../src/ddns/providers.py:673
+msgid "Too many failed requests."
+msgstr ""
+
+#: ../src/ddns/providers.py:776
+msgid "Malformed request has been sent."
+msgstr ""
+
+#: ../src/ddns/providers.py:780
+msgid "Too frequent update requests have been sent."
+msgstr ""
+
+#: ../src/ddns/providers.py:826 ../src/ddns/providers.py:1013
+msgid "Domain not found."
+msgstr ""
+
+#: ../src/ddns/providers.py:861
+msgid "An invalid IP address was submitted"
+msgstr ""
+
+#: ../src/ddns/providers.py:1015
+msgid "Domain not active."
+msgstr ""
+
+#: ../src/ddns/providers.py:1165
+msgid "No Auth details specified."
+msgstr ""
+
+#: ../src/ddns/providers.py:1187
+msgid "Invalid IPv4 address has been sent."
+msgstr ""
+
+#: ../src/ddns/providers.py:1189
+msgid "Invalid IPv6 address has been sent."
+msgstr ""
+
+#: ../src/ddns/providers.py:1385
+msgid "Invalid hostname specified"
+msgstr ""
+
+#: ../src/ddns/system.py:55
+#, python-format
+msgid "Running on distribution: %s"
+msgstr ""
+
+#: ../src/ddns/system.py:153
+msgid "Request header:"
+msgstr ""
+
+#. Log response header.
+#: ../src/ddns/system.py:161 ../src/ddns/system.py:170
+#, python-format
+msgid "Response header (Status Code %s):"
+msgstr ""
index 6fe3a33652683f52ac95d901947a29f70672c111..7f2729c2c8c0cc93e09e46ec343fce6804664276 100644 (file)
@@ -28,6 +28,7 @@ from i18n import _
 logger = logging.getLogger("ddns.core")
 logger.propagate = 1
 
+import database
 import providers
 
 from .errors import *
@@ -76,6 +77,9 @@ class DDNSCore(object):
                # Add the system class.
                self.system = DDNSSystem(self)
 
+               # Open the database.
+               self.db = database.DDNSDatabase(self, "/var/lib/ddns.db")
+
        def get_provider_names(self):
                """
                        Returns a list of names of all registered providers.
@@ -85,7 +89,7 @@ class DDNSCore(object):
        def load_configuration(self, filename):
                logger.debug(_("Loading configuration file %s") % filename)
 
-               configs = ConfigParser.SafeConfigParser()
+               configs = ConfigParser.RawConfigParser()
                configs.read([filename,])
 
                # First apply all global configuration settings.
@@ -120,6 +124,12 @@ class DDNSCore(object):
                                logger.warning("Could not find provider '%s' for entry '%s'." % (provider, entry))
                                continue
 
+                       # Check if the provider is actually supported and if there are
+                       # some dependencies missing on this system.
+                       if not provider.supported():
+                               logger.warning("Provider '%s' is known, but not supported on this machine" % (provider.name))
+                               continue
+
                        # Create an instance of the provider object with settings from the
                        # configuration file.
                        entry = provider(self, **settings)
diff --git a/src/ddns/database.py b/src/ddns/database.py
new file mode 100644 (file)
index 0000000..5d4ffc9
--- /dev/null
@@ -0,0 +1,149 @@
+#!/usr/bin/python
+###############################################################################
+#                                                                             #
+# ddns - A dynamic DNS client for IPFire                                      #
+# Copyright (C) 2014 IPFire development team                                  #
+#                                                                             #
+# This program is free software: you can redistribute it and/or modify        #
+# it under the terms of the GNU General Public License as published by        #
+# the Free Software Foundation, either version 3 of the License, or           #
+# (at your option) any later version.                                         #
+#                                                                             #
+# This program is distributed in the hope that it will be useful,             #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
+# GNU General Public License for more details.                                #
+#                                                                             #
+# You should have received a copy of the GNU General Public License           #
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
+
+import datetime
+import os.path
+import sqlite3
+
+# Initialize the logger.
+import logging
+logger = logging.getLogger("ddns.database")
+logger.propagate = 1
+
+class DDNSDatabase(object):
+       def __init__(self, core, path):
+               self.core = core
+
+               # Open the database file
+               self._db = self._open_database(path)
+
+       def __del__(self):
+               self._close_database()
+
+       def _open_database(self, path):
+               logger.debug("Opening database %s" % path)
+
+               exists = os.path.exists(path)
+
+               conn = sqlite3.connect(path, detect_types=sqlite3.PARSE_DECLTYPES|sqlite3.PARSE_COLNAMES)
+               conn.isolation_level = None
+
+               if not exists:
+                       logger.debug("Initialising database layout")
+                       c = conn.cursor()
+                       c.executescript("""
+                               CREATE TABLE updates (
+                                       hostname  TEXT NOT NULL,
+                                       status    TEXT NOT NULL,
+                                       message   TEXT,
+                                       timestamp timestamp NOT NULL
+                               );
+
+                               CREATE TABLE settings (
+                                       k TEXT NOT NULL,
+                                       v TEXT NOT NULL
+                               );
+
+                               CREATE INDEX idx_updates_hostname ON updates(hostname);
+                       """)
+                       c.execute("INSERT INTO settings(k, v) VALUES(?, ?)", ("version", "1"))
+
+               return conn
+
+       def _close_database(self):
+               if self._db:
+                       self._db_close()
+                       self._db = None
+
+       def _execute(self, query, *parameters):
+               c = self._db.cursor()
+               try:
+                       c.execute(query, parameters)
+               finally:
+                       c.close()
+
+       def add_update(self, hostname, status, message=None):
+               self._execute("INSERT INTO updates(hostname, status, message, timestamp) \
+                       VALUES(?, ?, ?, ?)", hostname, status, message, datetime.datetime.utcnow())
+
+       def log_success(self, hostname):
+               logger.debug("Logging successful update for %s" % hostname)
+
+               return self.add_update(hostname, "success")
+
+       def log_failure(self, hostname, exception):
+               if exception:
+                       message = "%s: %s" % (exception.__class__.__name__, exception.reason)
+               else:
+                       message = None
+
+               logger.debug("Logging failed update for %s: %s" % (hostname, message or ""))
+
+               return self.add_update(hostname, "failure", message=message)
+
+       def last_update(self, hostname, status=None):
+               """
+                       Returns the timestamp of the last update (with the given status code).
+               """
+               c = self._db.cursor()
+
+               try:
+                       if status:
+                               c.execute("SELECT timestamp FROM updates WHERE hostname = ? AND status = ? \
+                                       ORDER BY timestamp DESC LIMIT 1", (hostname, status))
+                       else:
+                               c.execute("SELECT timestamp FROM updates WHERE hostname = ? \
+                                       ORDER BY timestamp DESC LIMIT 1", (hostname,))
+
+                       for row in c:
+                               return row[0]
+               finally:
+                       c.close()
+
+       def last_update_status(self, hostname):
+               """
+                       Returns the update status of the last update.
+               """
+               c = self._db.cursor()
+
+               try:
+                       c.execute("SELECT status FROM updates WHERE hostname = ? \
+                               ORDER BY timestamp DESC LIMIT 1", (hostname,))
+
+                       for row in c:
+                               return row[0]
+               finally:
+                       c.close()
+
+       def last_update_failure_message(self, hostname):
+               """
+                       Returns the reason string for the last failed update (if any).
+               """
+               c = self._db.cursor()
+
+               try:
+                       c.execute("SELECT message FROM updates WHERE hostname = ? AND status = ? \
+                               ORDER BY timestamp DESC LIMIT 1", (hostname, "failure"))
+
+                       for row in c:
+                               return row[0]
+               finally:
+                       c.close()
index fac3890dbdcb72d31094d9a188de75ae4624593e..293b4eb8f58510c8e1c8d6218220e80584c8eb10 100644 (file)
@@ -109,6 +109,13 @@ class DDNSNetworkUnreachableError(DDNSNetworkError):
        reason = N_("Network unreachable")
 
 
+class DDNSNotFound(DDNSError):
+       """
+               Thrown when the called URL has not been found
+       """
+       reason = N_("Not found")
+
+
 class DDNSRequestError(DDNSError):
        """
                Thrown when a request could
@@ -117,6 +124,14 @@ class DDNSRequestError(DDNSError):
        reason = N_("Request error")
 
 
+class DDNSResolveError(DDNSNetworkError):
+       """
+               Thrown when a DNS record could not be resolved
+               because of a local error.
+       """
+       reason = N_("Could not resolve DNS entry")
+
+
 class DDNSServiceUnavailableError(DDNSNetworkError):
        """
                Equivalent to HTTP error code 503.
index 6ab9073ecee6a7a283dffcfcbcb0f2a2342717c2..41078af2ecf86bb7a46cbfb2db28a80f5db3bdf0 100644 (file)
@@ -19,7 +19,9 @@
 #                                                                             #
 ###############################################################################
 
+import datetime
 import logging
+import os
 import subprocess
 import urllib2
 import xml.dom.minidom
@@ -57,6 +59,18 @@ class DDNSProvider(object):
 
        DEFAULT_SETTINGS = {}
 
+       # holdoff time - Number of days no update is performed unless
+       # the IP address has changed.
+       holdoff_days = 30
+
+       # holdoff time for update failures - Number of days no update
+       # is tried after the last one has failed.
+       holdoff_failure_days = 0.5
+
+       # True if the provider is able to remove records, too.
+       # Required to remove AAAA records if IPv6 is absent again.
+       can_remove_records = True
+
        # Automatically register all providers.
        class __metaclass__(type):
                def __init__(provider, name, bases, dict):
@@ -75,6 +89,14 @@ class DDNSProvider(object):
 
                        _providers[provider.handle] = provider
 
+       @staticmethod
+       def supported():
+               """
+                       Should be overwritten to check if the system the code is running
+                       on has all the required tools to support this provider.
+               """
+               return True
+
        def __init__(self, core, **settings):
                self.core = core
 
@@ -89,6 +111,10 @@ class DDNSProvider(object):
        def __cmp__(self, other):
                return cmp(self.hostname, other.hostname)
 
+       @property
+       def db(self):
+               return self.core.db
+
        def get(self, key, default=None):
                """
                        Get a setting from the settings dictionary.
@@ -127,22 +153,108 @@ class DDNSProvider(object):
                if force:
                        logger.debug(_("Updating %s forced") % self.hostname)
 
-               # Check if we actually need to update this host.
-               elif self.is_uptodate(self.protocols):
-                       logger.info(_("The dynamic host %(hostname)s (%(provider)s) is already up to date") % \
-                               { "hostname" : self.hostname, "provider" : self.name })
+               # Do nothing if the last update has failed or no update is required
+               elif self.has_failure or not self.requires_update:
                        return
 
                # Execute the update.
-               self.update()
+               try:
+                       self.update()
+
+               # In case of any errors, log the failed request and
+               # raise the exception.
+               except DDNSError as e:
+                       self.core.db.log_failure(self.hostname, e)
+                       raise
 
                logger.info(_("Dynamic DNS update for %(hostname)s (%(provider)s) successful") % \
                        { "hostname" : self.hostname, "provider" : self.name })
+               self.core.db.log_success(self.hostname)
 
        def update(self):
+               for protocol in self.protocols:
+                       if self.have_address(protocol):
+                               self.update_protocol(protocol)
+                       elif self.can_remove_records:
+                               self.remove_protocol(protocol)
+
+       def update_protocol(self, proto):
                raise NotImplementedError
 
-       def is_uptodate(self, protos):
+       def remove_protocol(self, proto):
+               if not self.can_remove_records:
+                       raise RuntimeError, "can_remove_records is enabled, but remove_protocol() not implemented"
+
+               raise NotImplementedError
+
+       @property
+       def requires_update(self):
+               # If the IP addresses have changed, an update is required
+               if self.ip_address_changed(self.protocols):
+                       logger.debug(_("An update for %(hostname)s (%(provider)s)"
+                               " is performed because of an IP address change") % \
+                               { "hostname" : self.hostname, "provider" : self.name })
+
+                       return True
+
+               # If the holdoff time has expired, an update is required, too
+               if self.holdoff_time_expired():
+                       logger.debug(_("An update for %(hostname)s (%(provider)s)"
+                               " is performed because the holdoff time has expired") % \
+                               { "hostname" : self.hostname, "provider" : self.name })
+
+                       return True
+
+               # Otherwise, we don't need to perform an update
+               logger.debug(_("No update required for %(hostname)s (%(provider)s)") % \
+                       { "hostname" : self.hostname, "provider" : self.name })
+
+               return False
+
+       @property
+       def has_failure(self):
+               """
+                       Returns True when the last update has failed and no retry
+                       should be performed, yet.
+               """
+               last_status = self.db.last_update_status(self.hostname)
+
+               # Return False if the last update has not failed.
+               if not last_status == "failure":
+                       return False
+
+               # If there is no holdoff time, we won't update ever again.
+               if self.holdoff_failure_days is None:
+                       logger.warning(_("An update has not been performed because earlier updates failed for %s") \
+                               % self.hostname)
+                       logger.warning(_("There will be no retries"))
+
+                       return True
+
+               # Determine when the holdoff time ends
+               last_update = self.db.last_update(self.hostname, status=last_status)
+               holdoff_end = last_update + datetime.timedelta(days=self.holdoff_failure_days)
+
+               now = datetime.datetime.utcnow()
+               if now < holdoff_end:
+                       failure_message = self.db.last_update_failure_message(self.hostname)
+
+                       logger.warning(_("An update has not been performed because earlier updates failed for %s") \
+                               % self.hostname)
+
+                       if failure_message:
+                               logger.warning(_("Last failure message:"))
+
+                               for line in failure_message.splitlines():
+                                       logger.warning("  %s" % line)
+
+                       logger.warning(_("Further updates will be withheld until %s") % holdoff_end)
+
+                       return True
+
+               return False
+
+       def ip_address_changed(self, protos):
                """
                        Returns True if this host is already up to date
                        and does not need to change the IP address on the
@@ -150,18 +262,53 @@ class DDNSProvider(object):
                """
                for proto in protos:
                        addresses = self.core.system.resolve(self.hostname, proto)
-
                        current_address = self.get_address(proto)
 
-                       # If no addresses for the given protocol exist, we
-                       # are fine...
-                       if current_address is None and not addresses:
+                       # Handle if the system has not got any IP address from a protocol
+                       # (i.e. had full dual-stack connectivity which it has not any more)
+                       if current_address is None:
+                               # If addresses still exists in the DNS system and if this provider
+                               # is able to remove records, we will do that.
+                               if addresses and self.can_remove_records:
+                                       return True
+
+                               # Otherwise, we cannot go on...
                                continue
 
                        if not current_address in addresses:
-                               return False
+                               return True
 
-               return True
+               return False
+
+       def holdoff_time_expired(self):
+               """
+                       Returns true if the holdoff time has expired
+                       and the host requires an update
+               """
+               # If no holdoff days is defined, we cannot go on
+               if not self.holdoff_days:
+                       return False
+
+               # Get the timestamp of the last successfull update
+               last_update = self.db.last_update(self.hostname, status="success")
+
+               # If no timestamp has been recorded, no update has been
+               # performed. An update should be performed now.
+               if not last_update:
+                       return True
+
+               # Determine when the holdoff time ends
+               holdoff_end = last_update + datetime.timedelta(days=self.holdoff_days)
+
+               now = datetime.datetime.utcnow()
+
+               if now >= holdoff_end:
+                       logger.debug("The holdoff time has expired for %s" % self.hostname)
+                       return True
+               else:
+                       logger.debug("Updates for %s are held off until %s" % \
+                               (self.hostname, holdoff_end))
+                       return False
 
        def send_request(self, *args, **kwargs):
                """
@@ -176,6 +323,18 @@ class DDNSProvider(object):
                """
                return self.core.system.get_address(proto) or default
 
+       def have_address(self, proto):
+               """
+                       Returns True if an IP address for the given protocol
+                       is known and usable.
+               """
+               address = self.get_address(proto)
+
+               if address:
+                       return True
+
+               return False
+
 
 class DDNSProtocolDynDNS2(object):
        """
@@ -189,19 +348,25 @@ class DDNSProtocolDynDNS2(object):
        # http://dyn.com/support/developers/api/perform-update/
        # http://dyn.com/support/developers/api/return-codes/
 
-       def _prepare_request_data(self):
+       # The DynDNS protocol version 2 does not allow to remove records
+       can_remove_records = False
+
+       def prepare_request_data(self, proto):
                data = {
                        "hostname" : self.hostname,
-                       "myip"     : self.get_address("ipv4"),
+                       "myip"     : self.get_address(proto),
                }
 
                return data
 
-       def update(self):
-               data = self._prepare_request_data()
+       def update_protocol(self, proto):
+               data = self.prepare_request_data(proto)
 
+               return self.send_request(data)
+
+       def send_request(self, data):
                # Send update to the server.
-               response = self.send_request(self.url, data=data,
+               response = DDNSProvider.send_request(self, self.url, data=data,
                        username=self.username, password=self.password)
 
                # Get the full response message.
@@ -214,7 +379,7 @@ class DDNSProtocolDynDNS2(object):
                # Handle error codes.
                if output == "badauth":
                        raise DDNSAuthenticationError
-               elif output == "aduse":
+               elif output == "abuse":
                        raise DDNSAbuseError
                elif output == "notfqdn":
                        raise DDNSRequestError(_("No valid FQDN was given."))
@@ -224,6 +389,8 @@ class DDNSProtocolDynDNS2(object):
                        raise DDNSInternalServerError
                elif output == "dnserr":
                        raise DDNSInternalServerError(_("DNS error encountered."))
+               elif output == "badagent":
+                       raise DDNSBlockedError
 
                # If we got here, some other update error happened.
                raise DDNSUpdateError(_("Server response: %s") % output)
@@ -270,6 +437,7 @@ class DDNSProviderAllInkl(DDNSProvider):
        # http://all-inkl.goetze.it/v01/ddns-mit-einfachen-mitteln/
 
        url = "http://dyndns.kasserver.com"
+       can_remove_records = False
 
        def update(self):
                # There is no additional data required so we directly can
@@ -294,6 +462,19 @@ class DDNSProviderBindNsupdate(DDNSProvider):
 
        DEFAULT_TTL = 60
 
+       @staticmethod
+       def supported():
+               # Search if the nsupdate utility is available
+               paths = os.environ.get("PATH")
+
+               for path in paths.split(":"):
+                       executable = os.path.join(path, "nsupdate")
+
+                       if os.path.exists(executable):
+                               return True
+
+               return False
+
        def update(self):
                scriptlet = self.__make_scriptlet()
 
@@ -320,6 +501,11 @@ class DDNSProviderBindNsupdate(DDNSProvider):
                if server:
                        scriptlet.append("server %s" % server)
 
+               # Set the DNS zone the host should be added to.
+               zone = self.get("zone", None)
+               if zone:
+                       scriptlet.append("zone %s" % zone)
+
                key = self.get("key", None)
                if key:
                        secret = self.get("secret")
@@ -353,6 +539,110 @@ class DDNSProviderBindNsupdate(DDNSProvider):
                return "\n".join(scriptlet)
 
 
+class DDNSProviderChangeIP(DDNSProvider):
+       handle    = "changeip.com"
+       name      = "ChangeIP.com"
+       website   = "https://changeip.com"
+       protocols = ("ipv4",)
+
+       # Detailed information about the update api can be found here.
+       # http://www.changeip.com/accounts/knowledgebase.php?action=displayarticle&id=34
+
+       url = "https://nic.changeip.com/nic/update"
+       can_remove_records = False
+
+       def update_protocol(self, proto):
+               data = {
+                       "hostname" : self.hostname,
+                       "myip"     : self.get_address(proto),
+               }
+
+               # Send update to the server.
+               try:
+                       response = self.send_request(self.url, username=self.username, password=self.password,
+                               data=data)
+
+               # Handle error codes.
+               except urllib2.HTTPError, e:
+                       if e.code == 422:
+                               raise DDNSRequestError(_("Domain not found."))
+
+                       raise
+
+               # Handle success message.
+               if response.code == 200:
+                       return
+
+               # If we got here, some other update error happened.
+               raise DDNSUpdateError(_("Server response: %s") % output)
+
+
+class DDNSProviderDDNSS(DDNSProvider):
+       handle    = "ddnss.de"
+       name      = "DDNSS"
+       website   = "http://www.ddnss.de"
+       protocols = ("ipv4",)
+
+       # Detailed information about how to send the update request and possible response
+       # codes can be obtained from here.
+       # http://www.ddnss.de/info.php
+       # http://www.megacomputing.de/2014/08/dyndns-service-response-time/#more-919
+
+       url = "http://www.ddnss.de/upd.php"
+       can_remove_records = False
+
+       def update_protocol(self, proto):
+               data = {
+                       "ip"   : self.get_address(proto),
+                       "host" : self.hostname,
+               }
+
+               # Check if a token has been set.
+               if self.token:
+                       data["key"] = self.token
+
+               # Check if username and hostname are given.
+               elif self.username and self.password:
+                       data.update({
+                               "user" : self.username,
+                               "pwd"  : self.password,
+                       })
+
+               # Raise an error if no auth details are given.
+               else:
+                       raise DDNSConfigurationError
+
+               # Send update to the server.
+               response = self.send_request(self.url, data=data)
+
+               # This provider sends the response code as part of the header.
+               header = response.info()
+
+               # Get status information from the header.
+               output = header.getheader('ddnss-response')
+
+               # Handle success messages.
+               if output == "good" or output == "nochg":
+                       return
+
+               # Handle error codes.
+               if output == "badauth":
+                       raise DDNSAuthenticationError
+               elif output == "notfqdn":
+                       raise DDNSRequestError(_("No valid FQDN was given."))
+               elif output == "nohost":
+                       raise DDNSRequestError(_("Specified host does not exist."))
+               elif output == "911":
+                       raise DDNSInternalServerError
+               elif output == "dnserr":
+                       raise DDNSInternalServerError(_("DNS error encountered."))
+               elif output == "disabled":
+                       raise DDNSRequestError(_("Account disabled or locked."))
+
+               # If we got here, some other update error happened.
+               raise DDNSUpdateError
+
+
 class DDNSProviderDHS(DDNSProvider):
        handle    = "dhs.org"
        name      = "DHS International"
@@ -363,11 +653,12 @@ class DDNSProviderDHS(DDNSProvider):
        # grabed from source code of ez-ipudate.
 
        url = "http://members.dhs.org/nic/hosts"
+       can_remove_records = False
 
-       def update(self):
+       def update_protocol(self, proto):
                data = {
                        "domain"       : self.hostname,
-                       "ip"           : self.get_address("ipv4"),
+                       "ip"           : self.get_address(proto),
                        "hostcmd"      : "edit",
                        "hostcmdstage" : "2",
                        "type"         : "4",
@@ -395,11 +686,12 @@ class DDNSProviderDNSpark(DDNSProvider):
        # https://dnspark.zendesk.com/entries/31229348-Dynamic-DNS-API-Documentation
 
        url = "https://control.dnspark.com/api/dynamic/update.php"
+       can_remove_records = False
 
-       def update(self):
+       def update_protocol(self, proto):
                data = {
                        "domain" : self.hostname,
-                       "ip"     : self.get_address("ipv4"),
+                       "ip"     : self.get_address(proto),
                }
 
                # Send update to the server.
@@ -443,10 +735,11 @@ class DDNSProviderDtDNS(DDNSProvider):
        # http://www.dtdns.com/dtsite/updatespec
 
        url = "https://www.dtdns.com/api/autodns.cfm"
+       can_remove_records = False
 
-       def update(self):
+       def update_protocol(self, proto):
                data = {
-                       "ip" : self.get_address("ipv4"),
+                       "ip" : self.get_address(proto),
                        "id" : self.hostname,
                        "pw" : self.password
                }
@@ -512,46 +805,144 @@ class DDNSProviderDynU(DDNSProtocolDynDNS2, DDNSProvider):
 
        url = "https://api.dynu.com/nic/update"
 
-       def _prepare_request_data(self):
-               data = DDNSProtocolDynDNS2._prepare_request_data(self)
+       # DynU sends the IPv6 and IPv4 address in one request
+
+       def update(self):
+               data = DDNSProtocolDynDNS2.prepare_request_data(self, "ipv4")
 
                # This one supports IPv6
-               data.update({
-                       "myipv6"   : self.get_address("ipv6"),
-               })
+               myipv6 = self.get_address("ipv6")
 
-               return data
+               # Add update information if we have an IPv6 address.
+               if myipv6:
+                       data["myipv6"] = myipv6
+
+               self.send_request(data)
 
 
-class DDNSProviderEasyDNS(DDNSProtocolDynDNS2, DDNSProvider):
+class DDNSProviderEasyDNS(DDNSProvider):
        handle    = "easydns.com"
        name      = "EasyDNS"
        website   = "http://www.easydns.com/"
        protocols = ("ipv4",)
 
-       # There is only some basic documentation provided by the vendor,
-       # also searching the web gain very poor results.
-       # http://mediawiki.easydns.com/index.php/Dynamic_DNS
+       # Detailed information about the request and response codes
+       # (API 1.3) are available on the providers webpage.
+       # https://fusion.easydns.com/index.php?/Knowledgebase/Article/View/102/7/dynamic-dns
 
        url = "http://api.cp.easydns.com/dyn/tomato.php"
 
+       def update_protocol(self, proto):
+               data = {
+                       "myip"     : self.get_address(proto, "-"),
+                       "hostname" : self.hostname,
+               }
+
+               # Send update to the server.
+               response = self.send_request(self.url, data=data,
+                       username=self.username, password=self.password)
+
+               # Get the full response message.
+               output = response.read()
+
+               # Remove all leading and trailing whitespace.
+               output = output.strip()
+
+               # Handle success messages.
+               if output.startswith("NOERROR"):
+                       return
+
+               # Handle error codes.
+               if output.startswith("NOACCESS"):
+                       raise DDNSAuthenticationError
+
+               elif output.startswith("NOSERVICE"):
+                       raise DDNSRequestError(_("Dynamic DNS is not turned on for this domain."))
+
+               elif output.startswith("ILLEGAL INPUT"):
+                       raise DDNSRequestError(_("Invalid data has been sent."))
+
+               elif output.startswith("TOOSOON"):
+                       raise DDNSRequestError(_("Too frequent update requests have been sent."))
+
+               # If we got here, some other update error happened.
+               raise DDNSUpdateError
+
+
+class DDNSProviderDomopoli(DDNSProtocolDynDNS2, DDNSProvider):
+       handle    = "domopoli.de"
+       name      = "domopoli.de"
+       website   = "http://domopoli.de/"
+       protocols = ("ipv4",)
+
+       # https://www.domopoli.de/?page=howto#DynDns_start
+
+       url = "http://dyndns.domopoli.de/nic/update"
+
+
+class DDNSProviderDynsNet(DDNSProvider):
+       handle    = "dyns.net"
+       name      = "DyNS"
+       website   = "http://www.dyns.net/"
+       protocols = ("ipv4",)
+       can_remove_records = False
+
+       # There is very detailed informatio about how to send the update request and
+       # the possible response codes. (Currently we are using the v1.1 proto)
+       # http://www.dyns.net/documentation/technical/protocol/
+
+       url = "http://www.dyns.net/postscript011.php"
+
+       def update_protocol(self, proto):
+               data = {
+                       "ip"       : self.get_address(proto),
+                       "host"     : self.hostname,
+                       "username" : self.username,
+                       "password" : self.password,
+               }
+
+               # Send update to the server.
+               response = self.send_request(self.url, data=data)
+
+               # Get the full response message.
+               output = response.read()
+
+               # Handle success messages.
+               if output.startswith("200"):
+                       return
+
+               # Handle error codes.
+               if output.startswith("400"):
+                       raise DDNSRequestError(_("Malformed request has been sent."))
+               elif output.startswith("401"):
+                       raise DDNSAuthenticationError
+               elif output.startswith("402"):
+                       raise DDNSRequestError(_("Too frequent update requests have been sent."))
+               elif output.startswith("403"):
+                       raise DDNSInternalServerError
+
+               # If we got here, some other update error happened.
+               raise DDNSUpdateError(_("Server response: %s") % output) 
+
 
 class DDNSProviderEnomCom(DDNSResponseParserXML, DDNSProvider):
        handle    = "enom.com"
        name      = "eNom Inc."
        website   = "http://www.enom.com/"
+       protocols = ("ipv4",)
 
        # There are very detailed information about how to send an update request and
        # the respone codes.
        # http://www.enom.com/APICommandCatalog/
 
        url = "https://dynamic.name-services.com/interface.asp"
+       can_remove_records = False
 
-       def update(self):
+       def update_protocol(self, proto):
                data = {
                        "command"        : "setdnshost",
                        "responsetype"   : "xml",
-                       "address"        : self.get_address("ipv4"),
+                       "address"        : self.get_address(proto),
                        "domainpassword" : self.password,
                        "zone"           : self.hostname
                }
@@ -587,10 +978,11 @@ class DDNSProviderEntryDNS(DDNSProvider):
        # Some very tiny details about their so called "Simple API" can be found
        # here: https://entrydns.net/help
        url = "https://entrydns.net/records/modify"
+       can_remove_records = False
 
-       def update(self):
+       def update_protocol(self, proto):
                data = {
-                       "ip" : self.get_address("ipv4")
+                       "ip" : self.get_address(proto),
                }
 
                # Add auth token to the update url.
@@ -598,7 +990,7 @@ class DDNSProviderEntryDNS(DDNSProvider):
 
                # Send update to the server.
                try:
-                       response = self.send_request(url, method="PUT", data=data)
+                       response = self.send_request(url, data=data)
 
                # Handle error codes
                except urllib2.HTTPError, e:
@@ -626,16 +1018,11 @@ class DDNSProviderFreeDNSAfraidOrg(DDNSProvider):
        # No information about the request or response could be found on the vendor
        # page. All used values have been collected by testing.
        url = "https://freedns.afraid.org/dynamic/update.php"
+       can_remove_records = False
 
-       @property
-       def proto(self):
-               return self.get("proto")
-
-       def update(self):
-               address = self.get_address(self.proto)
-
+       def update_protocol(self, proto):
                data = {
-                       "address" : address,
+                       "address" : self.get_address(proto),
                }
 
                # Add auth token to the update url.
@@ -704,6 +1091,25 @@ class DDNSProviderLightningWireLabs(DDNSProvider):
                raise DDNSUpdateError
 
 
+class DDNSProviderMyOnlinePortal(DDNSProtocolDynDNS2, DDNSProvider):
+       handle    = "myonlineportal.net"
+       name      = "myonlineportal.net"
+       website   = "https:/myonlineportal.net/"
+
+       # Information about the request and response can be obtained here:
+       # https://myonlineportal.net/howto_dyndns
+
+       url = "https://myonlineportal.net/updateddns"
+
+       def prepare_request_data(self, proto):
+               data = {
+                       "hostname" : self.hostname,
+                       "ip"     : self.get_address(proto),
+               }
+
+               return data
+
+
 class DDNSProviderNamecheap(DDNSResponseParserXML, DDNSProvider):
        handle    = "namecheap.com"
        name      = "Namecheap"
@@ -715,13 +1121,14 @@ class DDNSProviderNamecheap(DDNSResponseParserXML, DDNSProvider):
        # https://community.namecheap.com/forums/viewtopic.php?f=6&t=6772
 
        url = "https://dynamicdns.park-your-domain.com/update"
+       can_remove_records = False
 
-       def update(self):
+       def update_protocol(self, proto):
                # Namecheap requires the hostname splitted into a host and domain part.
                host, domain = self.hostname.split(".", 1)
 
                data = {
-                       "ip"       : self.get_address("ipv4"),
+                       "ip"       : self.get_address(proto),
                        "password" : self.password,
                        "host"     : host,
                        "domain"   : domain
@@ -734,7 +1141,7 @@ class DDNSProviderNamecheap(DDNSResponseParserXML, DDNSProvider):
                output = response.read()
 
                # Handle success messages.
-               if self.get_xml_tag_value(output, "IP") == self.get_address("ipv4"):
+               if self.get_xml_tag_value(output, "IP") == address:
                        return
 
                # Handle error codes.
@@ -765,10 +1172,12 @@ class DDNSProviderNOIP(DDNSProtocolDynDNS2, DDNSProvider):
 
        url = "http://dynupdate.no-ip.com/nic/update"
 
-       def _prepare_request_data(self):
+       def prepare_request_data(self, proto):
+               assert proto == "ipv4"
+
                data = {
                        "hostname" : self.hostname,
-                       "address"  : self.get_address("ipv4"),
+                       "address"  : self.get_address(proto),
                }
 
                return data
@@ -777,13 +1186,23 @@ class DDNSProviderNOIP(DDNSProtocolDynDNS2, DDNSProvider):
 class DDNSProviderNsupdateINFO(DDNSProtocolDynDNS2, DDNSProvider):
        handle    = "nsupdate.info"
        name      = "nsupdate.info"
-       website   = "http://www.nsupdate.info/"
+       website   = "http://nsupdate.info/"
        protocols = ("ipv6", "ipv4",)
 
        # Information about the format of the HTTP request can be found
-       # after login on the provider user intrface and here:
+       # after login on the provider user interface and here:
        # http://nsupdateinfo.readthedocs.org/en/latest/user.html
 
+       url = "https://nsupdate.info/nic/update"
+
+       # TODO nsupdate.info can actually do this, but the functionality
+       # has not been implemented here, yet.
+       can_remove_records = False
+
+       # After a failed update, there will be no retries
+       # https://bugzilla.ipfire.org/show_bug.cgi?id=10603
+       holdoff_failure_days = None
+
        # Nsupdate.info uses the hostname as user part for the HTTP basic auth,
        # and for the password a so called secret.
        @property
@@ -792,25 +1211,11 @@ class DDNSProviderNsupdateINFO(DDNSProtocolDynDNS2, DDNSProvider):
 
        @property
        def password(self):
-               return self.get("secret")
+               return self.token or self.get("secret")
 
-       @property
-       def proto(self):
-               return self.get("proto")
-
-       @property
-       def url(self):
-               # The update URL is different by the used protocol.
-               if self.proto == "ipv4":
-                       return "https://ipv4.nsupdate.info/nic/update"
-               elif self.proto == "ipv6":
-                       return "https://ipv6.nsupdate.info/nic/update"
-               else:
-                       raise DDNSUpdateError(_("Invalid protocol has been given"))
-
-       def _prepare_request_data(self):
+       def prepare_request_data(self, proto):
                data = {
-                       "myip" : self.get_address(self.proto),
+                       "myip" : self.get_address(proto),
                }
 
                return data
@@ -827,14 +1232,10 @@ class DDNSProviderOpenDNS(DDNSProtocolDynDNS2, DDNSProvider):
 
        url = "https://updates.opendns.com/nic/update"
 
-       @property
-       def proto(self):
-               return self.get("proto")
-
-       def _prepare_request_data(self):
+       def prepare_request_data(self, proto):
                data = {
                        "hostname" : self.hostname,
-                       "myip"     : self.get_address(self.proto)
+                       "myip"     : self.get_address(proto),
                }
 
                return data
@@ -854,8 +1255,8 @@ class DDNSProviderOVH(DDNSProtocolDynDNS2, DDNSProvider):
 
        url = "https://www.ovh.com/nic/update"
 
-       def _prepare_request_data(self):
-               data = DDNSProtocolDynDNS2._prepare_request_data(self)
+       def prepare_request_data(self, proto):
+               data = DDNSProtocolDynDNS2.prepare_request_data(self, proto)
                data.update({
                        "system" : "dyndns",
                })
@@ -873,6 +1274,7 @@ class DDNSProviderRegfish(DDNSProvider):
        # https://www.regfish.de/domains/dyndns/dokumentation
 
        url = "https://dyndns.regfish.de/"
+       can_remove_records = False
 
        def update(self):
                data = {
@@ -942,8 +1344,8 @@ class DDNSProviderSelfhost(DDNSProtocolDynDNS2, DDNSProvider):
 
        url = "https://carol.selfhost.de/nic/update"
 
-       def _prepare_request_data(self):
-               data = DDNSProtocolDynDNS2._prepare_request_data(self)
+       def prepare_request_data(self, proto):
+               data = DDNSProtocolDynDNS2.prepare_request_data(self, proto)
                data.update({
                        "hostname" : "1",
                })
@@ -955,7 +1357,6 @@ class DDNSProviderSPDNS(DDNSProtocolDynDNS2, DDNSProvider):
        handle    = "spdns.org"
        name      = "SPDNS"
        website   = "http://spdns.org/"
-       protocols = ("ipv4",)
 
        # Detailed information about request and response codes are provided
        # by the vendor. They are using almost the same mechanism and status
@@ -966,6 +1367,14 @@ class DDNSProviderSPDNS(DDNSProtocolDynDNS2, DDNSProvider):
 
        url = "https://update.spdns.de/nic/update"
 
+       @property
+       def username(self):
+               return self.get("username") or self.hostname
+
+       @property
+       def password(self):
+               return self.get("password") or self.token
+
 
 class DDNSProviderStrato(DDNSProtocolDynDNS2, DDNSProvider):
        handle    = "strato.com"
@@ -991,9 +1400,11 @@ class DDNSProviderTwoDNS(DDNSProtocolDynDNS2, DDNSProvider):
 
        url = "https://update.twodns.de/update"
 
-       def _prepare_request_data(self):
+       def prepare_request_data(self, proto):
+               assert proto == "ipv4"
+
                data = {
-                       "ip" : self.get_address("ipv4"),
+                       "ip"       : self.get_address(proto),
                        "hostname" : self.hostname
                }
 
@@ -1023,20 +1434,28 @@ class DDNSProviderVariomedia(DDNSProtocolDynDNS2, DDNSProvider):
 
        url = "https://dyndns.variomedia.de/nic/update"
 
-       @property
-       def proto(self):
-               return self.get("proto")
-
-       def _prepare_request_data(self):
+       def prepare_request_data(self, proto):
                data = {
                        "hostname" : self.hostname,
-                       "myip"     : self.get_address(self.proto)
+                       "myip"     : self.get_address(proto),
                }
 
                return data
 
 
-class DDNSProviderZoneedit(DDNSProtocolDynDNS2, DDNSProvider):
+class DDNSProviderXLhost(DDNSProtocolDynDNS2, DDNSProvider):
+        handle    = "xlhost.de"
+        name     = "XLhost"
+        website   = "http://xlhost.de/"
+        protocols = ("ipv4",)
+
+        # Information about the format of the HTTP request is to be found
+        # here: https://xlhost.de/faq/index_html?topicId=CQA2ELIPO4SQ
+
+        url = "https://nsupdate.xlhost.de/"
+
+
+class DDNSProviderZoneedit(DDNSProvider):
        handle    = "zoneedit.com"
        name      = "Zoneedit"
        website   = "http://www.zoneedit.com"
@@ -1049,13 +1468,9 @@ class DDNSProviderZoneedit(DDNSProtocolDynDNS2, DDNSProvider):
 
        url = "https://dynamic.zoneedit.com/auth/dynamic.html"
 
-       @property
-       def proto(self):
-               return self.get("proto")
-
-       def update(self):
+       def update_protocol(self, proto):
                data = {
-                       "dnsto" : self.get_address(self.proto),
+                       "dnsto" : self.get_address(proto),
                        "host"  : self.hostname
                }
 
@@ -1080,3 +1495,50 @@ class DDNSProviderZoneedit(DDNSProtocolDynDNS2, DDNSProvider):
 
                # If we got here, some other update error happened.
                raise DDNSUpdateError
+
+
+class DDNSProviderZZZZ(DDNSProvider):
+       handle    = "zzzz.io"
+       name      = "zzzz"
+       website   = "https://zzzz.io"
+       protocols = ("ipv6", "ipv4",)
+
+       # Detailed information about the update request can be found here:
+       # https://zzzz.io/faq/
+
+       # Details about the possible response codes have been provided in the bugtracker:
+       # https://bugzilla.ipfire.org/show_bug.cgi?id=10584#c2
+
+       url = "https://zzzz.io/api/v1/update"
+       can_remove_records = False
+
+       def update_protocol(self, proto):
+               data = {
+                       "ip"    : self.get_address(proto),
+                       "token" : self.token,
+               }
+
+               if proto == "ipv6":
+                       data["type"] = "aaaa"
+
+               # zzzz uses the host from the full hostname as part
+               # of the update url.
+               host, domain = self.hostname.split(".", 1)
+
+               # Add host value to the update url.
+               url = "%s/%s" % (self.url, host)
+
+               # Send update to the server.
+               try:
+                       response = self.send_request(url, data=data)
+
+               # Handle error codes.
+               except DDNSNotFound:
+                       raise DDNSRequestError(_("Invalid hostname specified"))
+
+               # Handle success messages.
+               if response.code == 200:
+                       return
+
+               # If we got here, some other update error happened.
+               raise DDNSUpdateError
index 6b763335dca40730c4d890da3ab8718571ebae98..8415579455763369a0a9ac844841ab2ee1f39945 100644 (file)
@@ -180,6 +180,12 @@ class DDNSSystem(object):
                        elif e.code in (401, 403):
                                raise DDNSAuthenticationError(e.reason)
 
+                       # 404 - Not found
+                       # Either the provider has changed the API, or
+                       # there is an error on the server
+                       elif e.code == 404:
+                               raise DDNSNotFound(e.reason)
+
                        # 500 - Internal Server Error
                        elif e.code == 500:
                                raise DDNSInternalServerError(e.reason)
@@ -193,6 +199,10 @@ class DDNSSystem(object):
 
                except urllib2.URLError, e:
                        if e.reason:
+                               # Name or service not known
+                               if e.reason.errno == -2:
+                                       raise DDNSResolveError
+
                                # Network Unreachable (e.g. no IPv6 access)
                                if e.reason.errno == 101:
                                        raise DDNSNetworkUnreachableError
@@ -321,6 +331,10 @@ class DDNSSystem(object):
                        if e.errno == -2:
                                return []
 
+                       # Temporary failure in name resolution
+                       elif e.errno == -3:
+                               raise DDNSResolveError(hostname)
+
                        # No record for requested family available (e.g. no AAAA)
                        elif e.errno == -5:
                                return []