-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
81cd7d6
commit 1927ab7
Showing
23 changed files
with
144 additions
and
369 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule frc-docs
updated
8 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ | |
# Heber Sepúlveda <[email protected]>, 2021 | ||
# Paulina Maynez <[email protected]>, 2021 | ||
# Lian Eng <[email protected]>, 2021 | ||
# Fernanda Reveles <[email protected]>, 2021 | ||
# Román Hernandez sosa, 2023 | ||
# Austin Shalit <[email protected]>, 2024 | ||
# Fernando Soltero <[email protected]>, 2024 | ||
|
@@ -17,7 +16,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: FIRST Robotics Competition 2024\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2024-02-16 16:04+0000\n" | ||
"POT-Creation-Date: 2024-05-11 04:03+0000\n" | ||
"PO-Revision-Date: 2021-06-22 22:08+0000\n" | ||
"Last-Translator: Fernando Soltero <[email protected]>, 2024\n" | ||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/wpilib/teams/109324/es_MX/)\n" | ||
|
@@ -48,22 +47,6 @@ msgstr "" | |
"primer paso es escribir una clase adecuada :ref:`subsistema " | ||
"<docs/software/commandbased/subsystems:Subsystems>` ." | ||
|
||
#: ../../frc-docs/source/docs/software/pathplanning/trajectory-tutorial/creating-drive-subsystem.rst:6 | ||
msgid "" | ||
"The full drive class from the RamseteCommand Example Project (`Java " | ||
"<https://github.com/wpilibsuite/allwpilib/tree/main/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/ramsetecommand>`__," | ||
" `C++ " | ||
"<https://github.com/wpilibsuite/allwpilib/tree/main/wpilibcExamples/src/main/cpp/examples/RamseteCommand>`__)" | ||
" can be seen below. The rest of the article will describe the steps " | ||
"involved in writing this class." | ||
msgstr "" | ||
"La clase de drive completa del RamseteCommand Example Project (`Java " | ||
"<https://github.com/wpilibsuite/allwpilib/tree/main/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/ramsetecommand>`__," | ||
" `C++ " | ||
"<https://github.com/wpilibsuite/allwpilib/tree/main/wpilibcExamples/src/main/cpp/examples/RamseteCommand>`__)" | ||
" se puede ver a continuación. El resto del artículo describirá los pasos " | ||
"necesarios para escribir esta clase." | ||
|
||
#: ../../frc-docs/source/docs/software/pathplanning/trajectory-tutorial/creating-drive-subsystem.rst:38 | ||
msgid "Configuring the Drive Encoders" | ||
msgstr "Configuración de los codificadores de unidad" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. | ||
# | ||
# Translators: | ||
# Heber Sepúlveda <[email protected]>, 2021 | ||
# Paulina Maynez <[email protected]>, 2021 | ||
# Austin Shalit <[email protected]>, 2021 | ||
# Fernando Soltero <[email protected]>, 2021 | ||
|
@@ -15,7 +14,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: FIRST Robotics Competition 2024\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2024-01-06 16:03+0000\n" | ||
"POT-Creation-Date: 2024-05-11 04:03+0000\n" | ||
"PO-Revision-Date: 2021-06-22 22:08+0000\n" | ||
"Last-Translator: Dylan Gallegos, 2023\n" | ||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/wpilib/teams/109324/es_MX/)\n" | ||
|
@@ -37,30 +36,6 @@ msgstr "" | |
"Con nuestro subsistema de accionamiento escrito, es hora de generar una " | ||
"trayectoria y escribir un comando autónomo para seguirla." | ||
|
||
#: ../../frc-docs/source/docs/software/pathplanning/trajectory-tutorial/creating-following-trajectory.rst:6 | ||
msgid "" | ||
"As per the :ref:`standard command-based project structure " | ||
"<docs/software/commandbased/structuring-command-based-project:Structuring a " | ||
"Command-Based Robot Project>`, we will do this in the " | ||
"``getAutonomousCommand`` method of the ``RobotContainer`` class. The full " | ||
"method from the RamseteCommand Example Project (`Java " | ||
"<https://github.com/wpilibsuite/allwpilib/tree/main/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/ramsetecommand>`__," | ||
" `C++ " | ||
"<https://github.com/wpilibsuite/allwpilib/tree/main/wpilibcExamples/src/main/cpp/examples/RamseteCommand>`__)" | ||
" can be seen below. The rest of the article will break down the different " | ||
"parts of the method in more detail." | ||
msgstr "" | ||
"Según la :ref:` estructura estandar de un proyecto a base de comandos " | ||
"<docs/software/commandbased/structuring-command-based-project:Structuring a " | ||
"Command-Based Robot Project>`, haremos esto en el método de la clase " | ||
"``RobotContainer``. El método completo del proyecto RamseteCommand Example " | ||
"(`Java " | ||
"<https://github.com/wpilibsuite/allwpilib/tree/main/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/ramsetecommand>`__," | ||
" `C++ " | ||
"<https://github.com/wpilibsuite/allwpilib/tree/main/wpilibcExamples/src/main/cpp/examples/RamseteCommand>`__)" | ||
" puede verse debajo. El resto del articulo se separará en diferentes partes" | ||
" del método en más detalle." | ||
|
||
#: ../../frc-docs/source/docs/software/pathplanning/trajectory-tutorial/creating-following-trajectory.rst:0 | ||
msgid "Java" | ||
msgstr "Java" | ||
|
13 changes: 6 additions & 7 deletions
13
locale/es/LC_MESSAGES/docs/software/pathplanning/trajectory-tutorial/index.po
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,22 @@ | ||
# SOME DESCRIPTIVE TITLE. | ||
# Copyright (C) 2021, FIRST and other WPILib Contributors | ||
# Copyright (C) 2024, FIRST and other WPILib Contributors. This work is licensed under a Creative Commons Attribution 4.0 International License | ||
# This file is distributed under the same license as the FIRST Robotics Competition package. | ||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. | ||
# | ||
# Translators: | ||
# Iván Samaniego <[email protected]>, 2021 | ||
# Fernanda Reveles <[email protected]>, 2021 | ||
# | ||
#, fuzzy | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: FIRST Robotics Competition 2021\n" | ||
"Project-Id-Version: FIRST Robotics Competition 2024\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2021-06-23 04:03+0000\n" | ||
"POT-Creation-Date: 2024-05-11 04:03+0000\n" | ||
"PO-Revision-Date: 2021-06-22 22:08+0000\n" | ||
"Last-Translator: Fernanda Reveles <fernanda.reveles[email protected]>, 2021\n" | ||
"Language-Team: Spanish (Mexico) (https://www.transifex.com/wpilib/teams/109324/es_MX/)\n" | ||
"Last-Translator: Iván Samaniego <ivan.samaniego[email protected]>, 2021\n" | ||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/wpilib/teams/109324/es_MX/)\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"Language: es_MX\n" | ||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.