ソースを参照

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

Guillem Jover 10 年 前
コミット
a53b82ce38
共有1 個のファイルを変更した2 個の追加2 個の削除を含む
  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;