소스 검색

dpkg-scanpackages: Mark string for translation

Guillem Jover 17 년 전
부모
커밋
48a20395d3
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      scripts/dpkg-scanpackages.pl

+ 2 - 1
scripts/dpkg-scanpackages.pl

@@ -102,7 +102,8 @@ sub load_override
 		    my $debmaint = $$package{Maintainer};
 		    if (!grep($debmaint eq $_, split(m:\s*//\s*:, $oldmaint))) {
 			push(@changedmaint,
-			     "  $p (package says $$package{Maintainer}, not $oldmaint)");
+			     sprintf(_g("  %s (package says %s, not %s)"),
+			             $p, $$package{Maintainer}, $oldmaint));
 		    } else {
 			$$package{Maintainer} = $newmaint;
 		    }