You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/i18n/locales/en/translation.json
+26-1Lines changed: 26 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,10 @@
81
81
"DISPLAY_GROUP": "Display Group",
82
82
"PRINT": "print",
83
83
"NO_MECHANISM_CONTENTS": "No Mechanism Contents",
84
+
"CALL": "call",
85
+
"ROBOT": "robot",
86
+
"CREATE": "create",
87
+
"FIRE": "fire",
84
88
"TOOLTIP":{
85
89
"EVALUATE_BUT_IGNORE_RESULT": "Executes the connected block and ignores the result. Allows you to call a function and ignore the return value.",
86
90
"NONE": "Returns None.",
@@ -89,7 +93,18 @@
89
93
"OPMODE_NAME": "The name shown on the Driver Station. If blank will use the class name.",
90
94
"OPMODE_GROUP": "An optional group to group OpModes on Driver Station",
91
95
"COMPONENTS": "These components are visible in this mechanism, the robot, and all opmodes.",
92
-
"PRIVATE_COMPONENTS": "These components will not be visible in the robot or opmodes. They are only accessible within this mechanism."
96
+
"PRIVATE_COMPONENTS": "These components will not be visible in the robot or opmodes. They are only accessible within this mechanism.",
97
+
"CALL_BUILTIN_FUNCTION": "Calls the builtin function {{functionName}}.",
98
+
"CALL_MODULE_FUNCTION": "Calls the module function {{moduleName}}.{{functionName}}.",
99
+
"CALL_STATIC_METHOD": "Calls the static method {{className}}.{{functionName}}.",
100
+
"CALL_CONSTRUCTOR": "Constructs an instance of the class {{className}}.",
101
+
"CALL_INSTANCE_METHOD": "Calls the instance method {{className}}.{{functionName}}.",
102
+
"CALL_INSTANCE_METHOD_WITHIN": "Calls the instance method {{functionName}}.",
103
+
"FIRE_EVENT": "Fires the event named {{eventName}}.",
104
+
"CALL_MECHANISM_COMPONENT_INSTANCE_METHOD": "Calls the instance method {{className}}.{{functionName}} on the component named {{componentName}} in the mechanism named {{mechanismName}}.",
105
+
"CALL_COMPONENT_INSTANCE_METHOD": "Calls the instance method {{className}}.{{functionName}} on the component named {{componentName}}.",
106
+
"CALL_ROBOT_INSTANCE_METHOD": "Calls the robot method {{functionName}}.",
107
+
"CALL_MECHANISM_INSTANCE_METHOD": "Calls the instance method {{className}}.{{functionName}} on the mechanism named {{mechanismName}}."
93
108
},
94
109
"CATEGORY":{
95
110
"LISTS": "Lists",
@@ -109,6 +124,16 @@
109
124
"ADD_COMPONENT": "+ Component",
110
125
"TEST": "Test",
111
126
"PAGINATION_TOTAL": "{{start}}-{{end}} of {{total}} items"
127
+
},
128
+
"WARNING":{
129
+
"CALL_COMPONENT_INSTANCE_METHOD_PRIVATE_COMPONENT": "This blocks calls a method on a private component in the {{mechanismClassName}} mechanism.",
130
+
"CALL_COMPONENT_INSTANCE_METHOD_MISSING_COMPONENT": "This block calls a method on a component that no longer exists.",
131
+
"CALL_MECHANISM_COMPONENT_INSTANCE_METHOD_MISSING_MECHANISM": "This block calls a method on a component that belongs to a mechanism that no longer exists.",
132
+
"CALL_ROBOT_INSTANCE_METHOD_INSIDE_MECHANISM": "This block is not allowed to be used inside a mechanism.",
133
+
"CALL_ROBOT_INSTANCE_METHOD_MISSING_METHOD": "This block calls a method that no longer exists in the robot.",
134
+
"CALL_MECHANISM_INSTANCE_METHOD_INSIDE_MECHANISM": "This block is not allowed to be used inside a mechanism.",
135
+
"CALL_MECHANISM_INSTANCE_METHOD_MISSING_METHOD": "This block calls a method that no longer exists in the mechanism.",
136
+
"CALL_MECHANISM_INSTANCE_METHOD_MISSING_MECHANISM": "This block calls a method in a mechanism that no longer exists."
Copy file name to clipboardExpand all lines: src/i18n/locales/es/translation.json
+26-1Lines changed: 26 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,10 @@
82
82
"DISPLAY_GROUP": "Grupo a Mostrar",
83
83
"PRINT": "imprimir",
84
84
"NO_MECHANISM_CONTENTS": "Sin Contenido de Mecanismo",
85
+
"CALL": "llamar",
86
+
"ROBOT": "robot",
87
+
"CREATE": "crear",
88
+
"FIRE": "disparar",
85
89
"TOOLTIP": {
86
90
"EVALUATE_BUT_IGNORE_RESULT": "Ejecuta el bloque conectado e ignora el resultado. Te permite llamar una función e ignorar el valor de retorno.",
87
91
"NONE": "No devuelve ninguno.",
@@ -90,7 +94,18 @@
90
94
"OPMODE_NAME": "El nombre mostrado en la Estación del Conductor. Si está en blanco usará el nombre de la clase.",
91
95
"OPMODE_GROUP": "Un grupo opcional para agrupar OpModes en la Estación del Conductor",
92
96
"COMPONENTS": "Estos componentes son visibles en este mecanismo, el robot y todos los opmodes.",
93
-
"PRIVATE_COMPONENTS": "Estos componentes no serán visibles en el robot o en los opmodes. Solo son accesibles dentro de este mecanismo."
97
+
"PRIVATE_COMPONENTS": "Estos componentes no serán visibles en el robot o en los opmodes. Solo son accesibles dentro de este mecanismo.",
98
+
"CALL_BUILTIN_FUNCTION": "Llama a la función incorporada {{functionName}}.",
99
+
"CALL_MODULE_FUNCTION": "Llama a la función del módulo {{moduleName}}.{{functionName}}.",
100
+
"CALL_STATIC_METHOD": "Llama al método estático {{className}}.{{functionName}}.",
101
+
"CALL_CONSTRUCTOR": "Construye una instancia de la clase {{className}}.",
102
+
"CALL_INSTANCE_METHOD": "Llama al método de instancia {{className}}.{{functionName}}.",
103
+
"CALL_INSTANCE_METHOD_WITHIN": "Llama al método de instancia {{functionName}}.",
104
+
"FIRE_EVENT": "Dispara el evento llamado {{eventName}}.",
105
+
"CALL_MECHANISM_COMPONENT_INSTANCE_METHOD": "Llama al método de instancia {{className}}.{{functionName}} en el componente llamado {{componentName}} en el mecanismo llamado {{mechanismName}}.",
106
+
"CALL_COMPONENT_INSTANCE_METHOD": "Llama al método de instancia {{className}}.{{functionName}} en el componente llamado {{componentName}}.",
107
+
"CALL_ROBOT_INSTANCE_METHOD": "Llama al método robot {{functionName}}.",
108
+
"CALL_MECHANISM_INSTANCE_METHOD": "Llama al método de instancia {{className}}.{{functionName}} en el mecanismo llamado {{mechanismName}}."
94
109
},
95
110
"CATEGORY": {
96
111
"LISTS": "Listas",
@@ -110,6 +125,16 @@
110
125
"ADD_COMPONENT": "+ Componente",
111
126
"TEST": "Prueba",
112
127
"PAGINATION_TOTAL": "{{start}}-{{end}} de {{total}} elementos"
128
+
},
129
+
"WARNING":{
130
+
"CALL_COMPONENT_INSTANCE_METHOD_PRIVATE_COMPONENT": "Este bloque llama a un método en un componente privado en el mecanismo {{mechanismClassName}}.",
131
+
"CALL_COMPONENT_INSTANCE_METHOD_MISSING_COMPONENT": "Este bloque llama a un método en un componente que ya no existe.",
132
+
"CALL_MECHANISM_COMPONENT_INSTANCE_METHOD_MISSING_MECHANISM": "Este bloque llama a un método de un componente que pertenece a un mecanismo que ya no existe.",
133
+
"CALL_ROBOT_INSTANCE_METHOD_INSIDE_MECHANISM": "No se permite utilizar este bloque dentro de un mecanismo.",
134
+
"CALL_ROBOT_INSTANCE_METHOD_MISSING_METHOD": "Este bloque llama a un método que ya no existe en el robot.",
135
+
"CALL_MECHANISM_INSTANCE_METHOD_INSIDE_MECHANISM": "No se permite utilizar este bloque dentro de un mecanismo.",
136
+
"CALL_MECHANISM_INSTANCE_METHOD_MISSING_METHOD": "Este bloque llama a un método que ya no existe en el mecanismo.",
137
+
"CALL_MECHANISM_INSTANCE_METHOD_MISSING_MECHANISM": "Este bloque llama a un método en un mecanismo que ya no existe."
"FIRE_EVENT": "מפעיל את האירוע בשם {{eventName}}.",
104
+
"CALL_MECHANISM_COMPONENT_INSTANCE_METHOD": "קורא למתודה {{className}}.{{functionName}} על הרכיב בשם {{componentName}} במנגנון בשם {{mechanismName}}.",
105
+
"CALL_COMPONENT_INSTANCE_METHOD": "קורא למתודה {{className}}.{{functionName}} על הרכיב בשם {{componentName}}.",
0 commit comments