update internationalization data
[goodguy/history.git] / cinelerra-5.0 / plugins / bluebanana / bluebananalookups.C
index 104474ed91b2bdbce287e0d00e30cd048a9011f8..52db458b9130bd1b1bfc4fca253b4f4f5074b24e 100644 (file)
@@ -24,6 +24,7 @@
 
 #include "bluebanana.h"
 #include "bluebananaconfig.h"
+#include "language.h"
 
 static float halfsin2(float x){
   if(x<-M_PI/2)return 0;
@@ -60,7 +61,7 @@ static int select_setup(char *pattern, int change){
       while( x*x+y*y < gsq){
         x--;
         if(n==FSrange*4){
-          fprintf(stderr,"Internal error; pattern array overflow\n");
+          fprintf(stderr,_("Internal error; pattern array overflow\n"));
           return n;
         }
         pattern[n++]=(change>0 ? 'H' : 'h');
@@ -68,7 +69,7 @@ static int select_setup(char *pattern, int change){
       if(!y)break;
       y--;
       if(n==FSrange*4){
-        fprintf(stderr,"Internal error; pattern array overflow\n");
+        fprintf(stderr,_("Internal error; pattern array overflow\n"));
         return n;
       }
       pattern[n++]=(change>0 ? 'V' : 'v');