In cp/decl.c there is this code
warning (OPT_Wshadow, "shadowing %s function %q#D",
DECL_BUILT_IN (olddecl) ? "built-in" : "library",
olddecl);
The strings substituted for the first %s are not available for translation, so
this can not be properly translated. Even if they were, composing a sentence
like this is not in general possible to do for an arbitrary language.
--
Summary: %s substituted with "built-in"/"library" can't be
properly translated
Product: gcc
Version: 4.3.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: goeran at uddeborg dot se
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31665