]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/identifier.cc
release: 0.1.24
[lilypond.git] / lily / identifier.cc
index 921f13d90e424bd0d9a8b1abf62794beb6934149..62f0a3a8408323387db16b0a826d02ddcb73abd2 100644 (file)
@@ -25,19 +25,19 @@ IMPLEMENT_IS_TYPE_B(Identifier);
 Identifier::~Identifier()
 {
   if (!accessed_b_ && !init_b_)
-       warning ("Variable not used");
+       warning (_("Variable not used"));
 }
 void
 Identifier::error (String expect)
 {
-  String e ("Wrong identifier type: ");
-  e += String (name()) + "(expected " + expect + ")";
+  String e (_("Wrong identifier type: "));
+  e += String (name()) + _("(expected ") + expect + ")";
   ::error (e);
 }
 
 Identifier::Identifier (int code)
 {
-  token_code_i_ = code; 
+  token_code_i_ = code;
   accessed_b_ = 0;
   init_b_ = 0;
 }