Browse Source

dpkg-source: Use context gettext functions for "<none>" string

Guillem Jover 8 years ago
parent
commit
a53b82ce38
1 changed files with 2 additions and 2 deletions
  1. 2 2
      scripts/dpkg-source.pl

+ 2 - 2
scripts/dpkg-source.pl

@@ -551,12 +551,12 @@ sub get_format_help {
     if ($help_build) {
         $help .= "\n";
         $help .= "Build format $build_format options:\n";
-        $help .= $help_build || g_('<none>');
+        $help .= $help_build || C_('source options', '<none>');
     }
     if ($help_extract) {
         $help .= "\n";
         $help .= "Extract format $build_format options:\n";
-        $help .= $help_extract || g_('<none>');
+        $help .= $help_extract || C_('source options', '<none>');
     }
 
     return $help;