61 lines
1.9 KiB
Python
61 lines
1.9 KiB
Python
|
|
class LanguageTexts:
|
|
|
|
# Warning popup for robot unlocking
|
|
warning_text_1 = "Text not reimplemented!"
|
|
warning_text_2 = "Text not reimplemented!"
|
|
|
|
# Button texts
|
|
select_text = "Text not reimplemented!"
|
|
|
|
stop_robot_text = "Text not reimplemented!"
|
|
unlock_robot_text = "Text not reimplemented!"
|
|
|
|
disengage_clutch_text = "Text not reimplemented!"
|
|
engage_clutch_text = "Text not reimplemented!"
|
|
|
|
release_robot_text = "Text not reimplemented!"
|
|
|
|
|
|
# Logger info texts
|
|
robot_selected_text = "Text not reimplemented!"
|
|
robot_released_text = "Text not reimplemented!"
|
|
stopped_and_engaged_text = "Text not reimplemented!"
|
|
|
|
master_stop_clicked_text = "Text not reimplemented!"
|
|
master_stop_released_text = "Text not reimplemented!"
|
|
|
|
robot_stopped_text = "Text not reimplemented!"
|
|
robot_started_text = "Text not reimplemented!"
|
|
|
|
clutch_disengaged_text = "Text not reimplemented!"
|
|
clutch_engaged_text = "Text not reimplemented!"
|
|
|
|
obstacle_detected_text = "Text not reimplemented!"
|
|
obstacle_removed_text = "Text not reimplemented!"
|
|
|
|
|
|
# Logger error/problem messages
|
|
selection_error_text = "Text not reimplemented!"
|
|
cannot_start_masterstop_text = "Text not reimplemented!"
|
|
cannot_start_obstacle_text = "Text not reimplemented!"
|
|
cannot_select_robot_text = "Text not reimplemented!"
|
|
connection_to_robot_lost_text = "Text not reimplemented!"
|
|
connection_to_master_lost_text = "Text not reimplemented!"
|
|
|
|
|
|
# Description labels
|
|
angular_text = "Text not reimplemented!"
|
|
linear_text = "Text not reimplemented!"
|
|
id_text = "Text not reimplemented!"
|
|
battery_text = "Text not reimplemented!"
|
|
masterstop_text = "Text not reimplemented!"
|
|
obstacle_text = "Text not reimplemented!"
|
|
robot_text = "Text not reimplemented!"
|
|
restrictions_text = "Text not reimplemented!"
|
|
history_text = "Text not reimplemented!"
|
|
|
|
|
|
|
|
def __init__(self):
|
|
pass |