Ver código fonte

Fixed some messages that should not be translated (Benoit Mortier)

git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@922 f882894a-f735-0410-b71e-b25c423dba1c
Ton Voon 21 anos atrás
pai
commit
ec69901ec2
1 arquivos alterados com 3 adições e 3 exclusões
  1. 3 3
      plugins/check_nt.c

+ 3 - 3
plugins/check_nt.c

@@ -142,7 +142,7 @@ int main(int argc, char **argv){
 			/* -l parameters is present with only integers */
 			return_code=STATE_OK;
 			temp_string = strdup (_("CPU Load"));
-			temp_string_perf = strdup (_(" "));
+			temp_string_perf = strdup (" ");
       
 			/* loop until one of the parameters is wrong or not present */
 			while (lvalue_list[0+offset]> (unsigned long)0 &&
@@ -239,7 +239,7 @@ int main(int argc, char **argv){
 		else {
 			preparelist(value_list);		/* replace , between services with & to send the request */
 			asprintf(&send_buffer,"%s&%u&%s&%s", req_password,(vars_to_check==CHECK_SERVICESTATE)?5:6,
-							 (show_all==TRUE)?_("ShowAll"):_("ShowFail"),value_list);
+							 (show_all==TRUE) ? "ShowAll" : "ShowFail",value_list);
 			fetch_data (server_address, server_port, send_buffer);
 			return_code=atoi(strtok(recv_buffer,"&"));
 			temp_string=strtok(NULL,"&");
@@ -316,7 +316,7 @@ int main(int argc, char **argv){
 	    		asprintf (&output_message, "%.f", counter_value);
 	  		else if (isPercent)
 	    		     {	
-	      			counter_unit = strdup (_("%"));
+	      			counter_unit = strdup ("%");
 	      			allRight = TRUE;
 	    		     }