summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorProgramerus <alcadeias95@gmail.com>2012-04-10 20:00:21 +0300
committerProgramerus <alcadeias95@gmail.com>2012-04-10 20:00:21 +0300
commit30d4724c6b9f21beb6af98cf5a58d59361d9c842 (patch)
tree69f7f1cb610c1f138316c9038427578b8f380b11 /src
parenta7f74edaea3e7c3a9bbf8b5a86ea80b9b2c908d8 (diff)
downloadcolobot-30d4724c6b9f21beb6af98cf5a58d59361d9c842.tar.gz
colobot-30d4724c6b9f21beb6af98cf5a58d59361d9c842.tar.bz2
colobot-30d4724c6b9f21beb6af98cf5a58d59361d9c842.zip
Comments translated from French to English.
Diffstat (limited to 'src')
-rw-r--r--src/taskmanip.h28
1 files changed, 15 insertions, 13 deletions
diff --git a/src/taskmanip.h b/src/taskmanip.h
index 7e0ebf7..eac44f7 100644
--- a/src/taskmanip.h
+++ b/src/taskmanip.h
@@ -12,7 +12,9 @@
// * GNU General Public License for more details.
// *
// * You should have received a copy of the GNU General Public License
-// * along with this program. If not, see http://www.gnu.org/licenses/.// taskmanip.h
+// * along with this program. If not, see http://www.gnu.org/licenses/.
+
+// taskmanip.h
#ifndef _TASKMANIP_H_
#define _TASKMANIP_H_
@@ -28,26 +30,26 @@ class CObject;
enum TaskManipOrder
{
- TMO_AUTO = 0, // prend ou dépose automatique
- TMO_GRAB = 1, // prend un objet
- TMO_DROP = 2, // dépose l'objet
+ TMO_AUTO = 0, // deposits or takes automatically
+ TMO_GRAB = 1, // takes an object
+ TMO_DROP = 2, // deposits the object
};
enum TaskManipArm
{
- TMA_NEUTRAL = 1, // bras vide au repos
- TMA_STOCK = 2, // bras plein au repos
- TMA_FFRONT = 3, // bras au sol
- TMA_FBACK = 4, // bras derrière le robot
- TMA_POWER = 5, // bras derrière le robot
- TMA_OTHER = 6, // bras derrière un robot amis
- TMA_GRAB = 7, // prend immédiatement
+ TMA_NEUTRAL = 1, // empty arm at rest
+ TMA_STOCK = 2, // right arm resting
+ TMA_FFRONT = 3, // arm on the ground
+ TMA_FBACK = 4, // arm behind the robot
+ TMA_POWER = 5, // arm behind the robot
+ TMA_OTHER = 6, // arm behind a friend robot
+ TMA_GRAB = 7, // takes immediately
};
enum TaskManipHand
{
- TMH_OPEN = 1, // pince ouverte
- TMH_CLOSE = 2, // pince fermée
+ TMH_OPEN = 1, // open clamp
+ TMH_CLOSE = 2, // closed clamp
};