diff --git a/frc-docs b/frc-docs index 115d5cef0..ac58bb8b5 160000 --- a/frc-docs +++ b/frc-docs @@ -1 +1 @@ -Subproject commit 115d5cef031508def6a91a1c99801d4bf567f202 +Subproject commit ac58bb8b55f442baf9b4a4cb5a92dc1488f91bd2 diff --git a/locale/es/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po b/locale/es/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po index e5f9e3996..b9eb06377 100644 --- a/locale/es/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po +++ b/locale/es/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po @@ -6,18 +6,18 @@ # Translators: # Fernando Soltero , 2024 # Heber Sepúlveda , 2024 -# Dylan Gallegos, 2024 # Hugo Espino , 2024 # Emiliano, 2024 +# Dylan Gallegos, 2024 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: FIRST Robotics Competition 2024\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-15 04:04+0000\n" +"POT-Creation-Date: 2024-09-10 16:04+0000\n" "PO-Revision-Date: 2024-01-15 04:06+0000\n" -"Last-Translator: Emiliano, 2024\n" +"Last-Translator: Dylan Gallegos, 2024\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" diff --git a/locale/es/LC_MESSAGES/docs/software/basic-programming/java-units.po b/locale/es/LC_MESSAGES/docs/software/basic-programming/java-units.po index 247350e34..d13a8d993 100644 --- a/locale/es/LC_MESSAGES/docs/software/basic-programming/java-units.po +++ b/locale/es/LC_MESSAGES/docs/software/basic-programming/java-units.po @@ -6,16 +6,16 @@ # Translators: # Sofia Fernandez , 2023 # Paulina Maynez , 2023 -# Miguel Angel de León Adame , 2024 +# Miguel Angel de León Adame , 2023 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: FIRST Robotics Competition 2024\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-19 04:04+0000\n" +"POT-Creation-Date: 2024-09-10 16:04+0000\n" "PO-Revision-Date: 2023-11-03 16:06+0000\n" -"Last-Translator: Miguel Angel de León Adame , 2024\n" +"Last-Translator: Miguel Angel de León Adame , 2023\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" @@ -23,11 +23,11 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: ../../frc-docs/source/docs/software/basic-programming/java-units.rst:21 +#: ../../frc-docs/source/docs/software/basic-programming/java-units.rst:23 msgid "Unit" msgstr "Unidad" -#: ../../frc-docs/source/docs/software/basic-programming/java-units.rst:21 +#: ../../frc-docs/source/docs/software/basic-programming/java-units.rst:23 msgid "" "Units are specific realizations of dimensions. They are the way of " "expressing physical quantities. Each dimension has a base unit, such as the " @@ -40,11 +40,11 @@ msgstr "" "masa. Las unidades derivadas se forman combinando unidades base, como metros" " por segundo para la velocidad." -#: ../../frc-docs/source/docs/software/basic-programming/java-units.rst:24 +#: ../../frc-docs/source/docs/software/basic-programming/java-units.rst:26 msgid "Measure" msgstr "Medida" -#: ../../frc-docs/source/docs/software/basic-programming/java-units.rst:24 +#: ../../frc-docs/source/docs/software/basic-programming/java-units.rst:26 msgid "" "Measures are the specific magnitude of physical quantities, expressed in a " "particular unit. For example, 5 meters is a measure of distance." @@ -52,7 +52,7 @@ msgstr "" "Las medidas son la magnitud específica de las cantidades físicas, expresadas" " en una unidad particular. Por ejemplo, 5 metros es una medida de distancia." -#: ../../frc-docs/source/docs/software/basic-programming/java-units.rst:26 +#: ../../frc-docs/source/docs/software/basic-programming/java-units.rst:28 msgid "" "These concepts are used within the Units Library. For example, the " "**measure** *10 seconds* has a magnitude of 10, the **dimension** is time, " @@ -62,11 +62,11 @@ msgstr "" "ejemplo, la **medida** *10 segundos* tiene una magnitud de 10, la " "**dimensión** es tiempo y la **unidad** es segundos." -#: ../../frc-docs/source/docs/software/basic-programming/java-units.rst:29 +#: ../../frc-docs/source/docs/software/basic-programming/java-units.rst:31 msgid "Using the Units Library" msgstr "Usar la Biblioteca de Unidades" -#: ../../frc-docs/source/docs/software/basic-programming/java-units.rst:31 +#: ../../frc-docs/source/docs/software/basic-programming/java-units.rst:33 msgid "" "The Java units library is available in the ``edu.wpi.first.units`` package. " "The most relevant classes are:" @@ -74,37 +74,10 @@ msgstr "" "La biblioteca de unidades de Java está disponible en el paquete " "\"edu.wpi.first.units\". Las clases más relevantes son:" -#: ../../frc-docs/source/docs/software/basic-programming/java-units.rst:37 +#: ../../frc-docs/source/docs/software/basic-programming/java-units.rst:39 msgid "" "It is recommended to static import ``edu.wpi.first.units.Units.*`` to get " "full access to all the predefined units." msgstr "" "Se recomienda importar estáticamente ``edu.wpi.first.units.Units.*`` para " "tener acceso completo a todas las unidades predefinidas." - -#: ../../frc-docs/source/docs/software/basic-programming/java-units.rst:40 -msgid "Java Generics" -msgstr "Genéricos de java" - -#: ../../frc-docs/source/docs/software/basic-programming/java-units.rst:43 -msgid "" -"For instance, consider the type ``Measure>``. This type " -"represents a measurement for velocity, where the velocity itself is " -"expressed as a unit of distance per unit of time. This nested structure " -"allows for the representation of units like meters per second or feet per " -"minute. Similarly, the type ``Measure>>`` " -"represents a measurement for a ratio of voltage to velocity. This type is " -"useful for representing quantities like volts per meter per second, the unit" -" of measure for some :ref:`feedforward` gains." -msgstr "" -"Por ejemplo, considera el tipo ``Measure>``. Este tipo " -"representa una medida para la velocidad, donde la velocidad misma se expresa" -" como una unidad de distancia por unidad de tiempo. Esta estructura anidada " -"permite la representación de unidades como metros por segundo o pies por " -"minuto. De manera similar, el tipo ``Measure>>`` representa una medida para una relación de voltaje a " -"velocidad. Este tipo es útil para representar cantidades como voltios por " -"metro por segundo, la unidad de medida para algunos ganancias de " -":ref:`feedforward`." diff --git a/locale/fr/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po b/locale/fr/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po index 3a04fdba0..ee88eb4bc 100644 --- a/locale/fr/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po +++ b/locale/fr/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po @@ -6,15 +6,16 @@ # Translators: # Regis Bekale , 2024 # Andre Theberge , 2024 +# Marc Lalonde, 2024 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: FIRST Robotics Competition 2024\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-15 04:04+0000\n" +"POT-Creation-Date: 2024-09-10 16:04+0000\n" "PO-Revision-Date: 2024-01-15 04:06+0000\n" -"Last-Translator: Andre Theberge , 2024\n" +"Last-Translator: Marc Lalonde, 2024\n" "Language-Team: French (Canada) (https://app.transifex.com/wpilib/teams/109324/fr_CA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/locale/fr/LC_MESSAGES/docs/software/basic-programming/java-units.po b/locale/fr/LC_MESSAGES/docs/software/basic-programming/java-units.po index 8d6844b9d..21245854a 100644 --- a/locale/fr/LC_MESSAGES/docs/software/basic-programming/java-units.po +++ b/locale/fr/LC_MESSAGES/docs/software/basic-programming/java-units.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: FIRST Robotics Competition 2024\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-19 04:04+0000\n" +"POT-Creation-Date: 2024-09-10 16:04+0000\n" "PO-Revision-Date: 2023-11-03 16:06+0000\n" "Last-Translator: Marc Lalonde, 2024\n" "Language-Team: French (Canada) (https://app.transifex.com/wpilib/teams/109324/fr_CA/)\n" diff --git a/locale/pt/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po b/locale/pt/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po index caa9f14a1..be77ee915 100644 --- a/locale/pt/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po +++ b/locale/pt/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po @@ -4,16 +4,16 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Miguel Ramos, 2024 +# Miguel S. Ramos, 2024 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: FIRST Robotics Competition 2024\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-20 16:04+0000\n" +"POT-Creation-Date: 2024-09-10 16:04+0000\n" "PO-Revision-Date: 2024-01-15 04:06+0000\n" -"Last-Translator: Miguel Ramos, 2024\n" +"Last-Translator: Miguel S. Ramos, 2024\n" "Language-Team: Portuguese (https://app.transifex.com/wpilib/teams/109324/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/locale/tr/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po b/locale/tr/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po index 094cdffb6..697b4234b 100644 --- a/locale/tr/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po +++ b/locale/tr/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: FIRST Robotics Competition 2024\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-15 04:04+0000\n" +"POT-Creation-Date: 2024-09-10 16:04+0000\n" "PO-Revision-Date: 2024-01-15 04:06+0000\n" "Last-Translator: Çağan Uslu, 2024\n" "Language-Team: Turkish (Turkey) (https://app.transifex.com/wpilib/teams/109324/tr_TR/)\n" diff --git a/locale/zh_CN/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po b/locale/zh_CN/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po index 98e936d66..f70f798f3 100644 --- a/locale/zh_CN/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po +++ b/locale/zh_CN/LC_MESSAGES/docs/software/advanced-controls/system-identification/introduction.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: FIRST Robotics Competition 2024\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-15 04:04+0000\n" +"POT-Creation-Date: 2024-09-10 16:04+0000\n" "PO-Revision-Date: 2024-01-15 04:06+0000\n" "Last-Translator: Team 5308 , 2024\n" "Language-Team: Chinese (China) (https://app.transifex.com/wpilib/teams/109324/zh_CN/)\n"