Package: debtags
Version: 1.10.2
Severity: minor
Tags: patch upstream

There is a typo in debtags tag editor in the sentence displayed when 1
change is pending. The sentence currently reads "There is one change
change to submit:" when it should be "There is one change to submit:".

See attached patch.

-- System Information:
Debian Release: jessie/sid
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'unstable'), (500, 'testing'), 
(500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.10-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff --git a/debtagslayout/static/js/debtags-ui.js b/debtagslayout/static/js/debtags-ui.js
index bcba898..770dbd7 100644
--- a/debtagslayout/static/js/debtags-ui.js
+++ b/debtagslayout/static/js/debtags-ui.js
@@ -254,7 +254,7 @@ Settings.prototype = {
             if (count_changes > 0)
             {
                 if (count_changes == 1)
-                    self._submit_summary.text("There is one change change to submit:");
+                    self._submit_summary.text("There is one change to submit:");
                 else
                     self._submit_summary.text("There are " + count_changes + " changes to submit:");
                 self._submit_button.attr("disabled", false);

Reply via email to