comparison help/help_mp-en.h @ 16857:c0d1b69bf96e

INPUT section created, added messages from input/input.c and input/joystick.c
author reynaldo
date Tue, 25 Oct 2005 18:47:20 +0000
parents b0880e80e5a4
children 3655c764dd3c
comparison
equal deleted inserted replaced
16856:d222ea8f2cb4 16857:c0d1b69bf96e
1099 #define MSGTR_AF_LADSPA_ErrNoLabel "No filter label specified" 1099 #define MSGTR_AF_LADSPA_ErrNoLabel "No filter label specified"
1100 #define MSGTR_AF_LADSPA_ErrNotEnoughControls "Not enough controls specified on the command line" 1100 #define MSGTR_AF_LADSPA_ErrNotEnoughControls "Not enough controls specified on the command line"
1101 #define MSGTR_AF_LADSPA_ErrControlBelow "%s: Input control #%d is below lower boundary of %0.4f.\n" 1101 #define MSGTR_AF_LADSPA_ErrControlBelow "%s: Input control #%d is below lower boundary of %0.4f.\n"
1102 #define MSGTR_AF_LADSPA_ErrControlAbove "%s: Input control #%d is above upper boundary of %0.4f.\n" 1102 #define MSGTR_AF_LADSPA_ErrControlAbove "%s: Input control #%d is above upper boundary of %0.4f.\n"
1103 1103
1104 // ========================== INPUT =========================================
1105
1106 // joystick.c
1107
1108 #define MSGTR_INPUT_JOYSTICK_Opening "Opening joystick device %s\n"
1109 #define MSGTR_INPUT_JOYSTICK_CantOpen "Can't open joystick device %s : %s\n"
1110 #define MSGTR_INPUT_JOYSTICK_ErrReading "Error while reading joystick device : %s\n"
1111 #define MSGTR_INPUT_JOYSTICK_LoosingBytes "Joystick : we loose %d bytes of data\n"
1112 #define MSGTR_INPUT_JOYSTICK_WarnLostSync "Joystick : warning init event, we have lost sync with driver\n"
1113 #define MSGTR_INPUT_JOYSTICK_WarnUnknownEvent "Joystick warning unknown event type %d\n"
1114
1115 // input.c
1116
1117 #define MSGTR_INPUT_INPUT_ErrCantRegister2ManyCmdFds "Too many command fds, unable to register fd %d.\n"
1118 #define MSGTR_INPUT_INPUT_ErrCantRegister2ManyKeyFds "Too many key fds, unable to register fd %d.\n"
1119 #define MSGTR_INPUT_INPUT_ErrArgMustBeInt "Command %s: argument %d isn't an integer.\n"
1120 #define MSGTR_INPUT_INPUT_ErrArgMustBeFloat "Command %s: argument %d isn't a float.\n"
1121 #define MSGTR_INPUT_INPUT_ErrUnterminatedArg "Command %s: argument %d is unterminated.\n"
1122 #define MSGTR_INPUT_INPUT_ErrUnknownArg "Unknown argument %d\n"
1123 #define MSGTR_INPUT_INPUT_Err2FewArgs "Command %s requires at least %d arguments, we found only %d so far.\n"
1124 #define MSGTR_INPUT_INPUT_ErrReadingCmdFd "Error while reading cmd fd %d: %s\n"
1125 #define MSGTR_INPUT_INPUT_ErrCmdBufferFullDroppingContent "Cmd buffer of fd %d is full: dropping content\n"
1126 #define MSGTR_INPUT_INPUT_ErrInvalidCommandForKey "Invalid command for bound key %s"
1127 #define MSGTR_INPUT_INPUT_ErrSelect "Select error: %s\n"
1128 #define MSGTR_INPUT_INPUT_ErrOnKeyInFd "Error on key input fd %d\n"
1129 #define MSGTR_INPUT_INPUT_ErrDeadKeyOnFd "Dead key input on fd %d\n"
1130 #define MSGTR_INPUT_INPUT_Err2ManyKeyDowns "Too many key down events at the same time\n"
1131 #define MSGTR_INPUT_INPUT_ErrOnCmdFd "Error on cmd fd %d\n"
1132 #define MSGTR_INPUT_INPUT_ErrReadingInputConfig "Error while reading input config file %s: %s\n"
1133 #define MSGTR_INPUT_INPUT_ErrUnknownKey "Unknown key '%s'\n"
1134 #define MSGTR_INPUT_INPUT_ErrUnfinishedBinding "Unfinished binding %s\n"
1135 #define MSGTR_INPUT_INPUT_ErrBuffer2SmallForKeyName "Buffer is too small for this key name: %s\n"
1136 #define MSGTR_INPUT_INPUT_ErrNoCmdForKey "No command found for key %s"
1137 #define MSGTR_INPUT_INPUT_ErrBuffer2SmallForCmd "Buffer is too small for command %s\n"
1138 #define MSGTR_INPUT_INPUT_ErrWhyHere "What are we doing here?\n"
1139 #define MSGTR_INPUT_INPUT_ErrCantInitJoystick "Can't init input joystick\n"
1140 #define MSGTR_INPUT_INPUT_ErrCantStatFile "Can't stat %s: %s\n"
1141 #define MSGTR_INPUT_INPUT_ErrCantOpenFile "Can't open %s: %s\n"