Skip to content

Commit

Permalink
Update Translations from Transifex
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 24, 2020
1 parent 38744ca commit 12e8135
Show file tree
Hide file tree
Showing 347 changed files with 504 additions and 349 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@
#
# Translators:
# Pierre Cote <persini24@outlook.com>, 2020
# Diana Ramos <dianaracasas@gmail.com>, 2020
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 00:48-0700\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: 2020-04-25 02:02+0000\n"
"Last-Translator: Pierre Cote <persini24@outlook.com>, 2020\n"
"Last-Translator: Diana Ramos <dianaracasas@gmail.com>, 2020\n"
"Language-Team: Spanish (Mexico) (https://www.transifex.com/wpilib/teams/109324/es_MX/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,150 @@
#
# Translators:
# Pierre Cote <persini24@outlook.com>, 2020
# Diana Ramos <dianaracasas@gmail.com>, 2020
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 00:48-0700\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: 2020-04-25 02:02+0000\n"
"Last-Translator: Pierre Cote <persini24@outlook.com>, 2020\n"
"Last-Translator: Diana Ramos <dianaracasas@gmail.com>, 2020\n"
"Language-Team: Spanish (Mexico) (https://www.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"

#: ../../frc-docs/source/docs/software/can-devices/power-distribution-panel.rst:2
msgid "Power Distribution Panel"
msgstr "Panel de distribución de energía"

#: ../../frc-docs/source/docs/software/can-devices/power-distribution-panel.rst:4
msgid ""
"The Power Distribution Panel (PDP) can use its CAN connectivity to "
"communicate a wealth of status information regarding the robot's power use "
"to the roboRIO, for use in user code. The PDP has the capability to report "
"its current temperature, the bus voltage, the total robot current draw, the "
"total robot energy use, and the individual current draw of each device power"
" channel. These data can be used for a number of advanced control "
"techniques, such as motor torque limiting and brownout avoidance."
msgstr ""
"El Panel de distribución de energía (PDP) puede usar su conectividad CAN "
"para comunicar una gran cantidad de información de estado sobre el uso de "
"energía del robot al roboRIO, para usar en el código de usuario. El PDP "
"tiene la capacidad de informar su temperatura actual, el voltaje del bus, el"
" consumo de corriente total del robot, el uso total de energía del robot y "
"el consumo de corriente individual de cada canal de alimentación del "
"dispositivo. Estos datos se pueden utilizar para una serie de técnicas de "
"control avanzadas, como la limitación del torque del motor y evitar caídas "
"de tensión."

#: ../../frc-docs/source/docs/software/can-devices/power-distribution-panel.rst:7
msgid "Creating a PDP Object"
msgstr "Creando un objeto PDP"

#: ../../frc-docs/source/docs/software/can-devices/power-distribution-panel.rst:9
msgid ""
"To use the PDP, create an instance of the :code:`PowerDistributionPanel` "
"class (`Java "
"<https://first.wpi.edu/FRC/roborio/release/docs/java/edu/wpi/first/wpilibj/PowerDistributionPanel.html>`__,"
" `C++ "
"<https://first.wpi.edu/FRC/roborio/release/docs/cpp/classfrc_1_1PowerDistributionPanel.html>`__):"
msgstr ""
"Para usar el PDP, cree una instancia del "
":código:`PowerDistributionPanel`class (` Java "
"<https://first.wpi.edu/FRC/roborio/release/docs/java/edu/wpi/first/wpilibj/PowerDistributionPanel.html>`__,"
" `C++ "
"<https://first.wpi.edu/FRC/roborio/release/docs/cpp/classfrc_1_1PowerDistributionPanel.html>`__):"

#: ../../frc-docs/source/docs/software/can-devices/power-distribution-panel.rst:21
msgid ""
"Note: it is not necessary to create a PowerDistributionPanel object unless "
"you need to read values from it. The board will work and supply power on all"
" the channels even if the object is never created."
msgstr ""
"Nota: no es necesario crear un objeto PowerDistributionPanel a menos que "
"necesite leer valores de él. La placa funcionará y suministrará energía en "
"todos los canales, incluso si el objeto nunca se crea."

#: ../../frc-docs/source/docs/software/can-devices/power-distribution-panel.rst:23
msgid ""
"To enable voltage and current logging in the Driver Station, the CAN ID for "
"the PDP *must* be 0."
msgstr ""
"Para habilitar el registro de voltaje y corriente en la Driver Station, la "
"ID de CAN para el PDP *debe* ser 0."

#: ../../frc-docs/source/docs/software/can-devices/power-distribution-panel.rst:26
msgid "Reading the Bus Voltage"
msgstr "Lectura del voltaje del bus"

#: ../../frc-docs/source/docs/software/can-devices/power-distribution-panel.rst:38
msgid ""
"Monitoring the bus voltage can be useful for (among other things) detecting "
"when the robot is near a brownout, so that action can be taken to avoid "
"brownout in a controlled manner. See the :doc:`roboRIO Brownouts "
"document</docs/software/roborio-info/roborio-brownouts>` for more "
"information."
msgstr ""
"Monitorear el voltaje del bus puede ser útil para (entre otras cosas) "
"detectar cuando el robot está cerca de un apagón, de modo que se pueden "
"tomar medidas para evitar el apagón de manera controlada. Consulte el "
"documento :doc:`roboRIO Brownouts document</docs/software/roborio-info"
"/roborio-brownouts>` para obtener más información."

#: ../../frc-docs/source/docs/software/can-devices/power-distribution-panel.rst:41
msgid "Reading the Temperature"
msgstr "Leyendo la temperatura"

#: ../../frc-docs/source/docs/software/can-devices/power-distribution-panel.rst:53
msgid ""
"Monitoring the temperature can be useful for detecting if the robot has been"
" drawing too much power and needs to be shut down for a while, or if there "
"is a short or other wiring problem."
msgstr ""
"El monitoreo de la temperatura puede ser útil para detectar si el robot ha "
"consumido demasiada energía y necesita apagarse por un tiempo, o si hay un "
"problema de cableado corto u otro."

#: ../../frc-docs/source/docs/software/can-devices/power-distribution-panel.rst:56
msgid "Reading the Total Current and Energy"
msgstr "Lectura de la corriente total y la energía"

#: ../../frc-docs/source/docs/software/can-devices/power-distribution-panel.rst:70
msgid ""
"Monitoring the total current and total energy (the total energy is simply "
"the total current multiplied by the bus voltage) can be useful for "
"controlling how much power is being drawn from the battery, both for "
"preventing brownouts and ensuring that mechanisms have sufficient power "
"available to perform the actions required."
msgstr ""
"El monitoreo de la corriente total y la energía total (la energía total es "
"simplemente la corriente total multiplicada por el voltaje del bus) puede "
"ser útil para controlar la cantidad de energía que se extrae de la batería, "
"tanto para evitar caídas de tensión como para garantizar que los mecanismos "
"tengan suficiente energía disponible para realizar las acciones requeridas"

#: ../../frc-docs/source/docs/software/can-devices/power-distribution-panel.rst:73
msgid "Reading Individual Channel Currents"
msgstr "Lectura de corrientes de canales individuales"

#: ../../frc-docs/source/docs/software/can-devices/power-distribution-panel.rst:75
msgid ""
"The PDP also allows users to monitor the current drawn by the individual "
"device power channels. For example, to read the current on channel 0:"
msgstr ""
"El PDP también permite a los usuarios monitorear la corriente consumida por "
"los canales de alimentación del dispositivo individual. Por ejemplo, para "
"leer la corriente en el canal 0:"

#: ../../frc-docs/source/docs/software/can-devices/power-distribution-panel.rst:87
msgid ""
"Monitoring individual device current draws can be useful for detecting "
"shorts or stalled motors."
msgstr ""
"El monitoreo de las corrientes de corriente de dispositivos individuales "
"puede ser útil para detectar cortocircuitos o motores estancados."
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-23 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: 2020-04-25 02:00+0000\n"
"Last-Translator: Regis Bekale <rbekale@robotiquefirstquebec.org>, 2020\n"
"Language-Team: French (Canada) (https://www.transifex.com/wpilib/teams/109324/fr_CA/)\n"
Expand Down Expand Up @@ -181,6 +181,28 @@ msgstr ""
"commutateurs \"sans contact\" - ils ne nécessitent pas de contact avec "
"l'objet détecté."

#: ../../frc-docs/source/docs/hardware/sensors/proximity-switches.rst:42
msgid ""
"There are two major types of magnetic proximity switches - reed switches and"
" hall-effect sensors. In a reed switch, the magnetic field causes a pair of"
" flexible metal contacts (the \"reeds\") to touch each other, closing the "
"circuit. A hall-effect sensor, on the other hand, detects the induced "
"voltage transversely across a current-carrying conductor. Hall-effect "
"sensors are generally the cheaper and more-reliable of the two. Pictured "
"above is the `Hall effect sensor from West Coast Products "
"<https://www.wcproducts.com/wcp-0971>`__."
msgstr ""
"Il existe deux principaux types d’interrupteurs de proximité magnétique - "
"les interrupteurs Reed et les capteurs à effet Hall. Dans un interrupteur "
"Reed, un champ magnétique crée une paire de contacts métalliques flexibles "
"(les \"reeds\") qui, en se touchant, ferment un circuit électrique. Un "
"capteur à effet Hall, quant à lui, détecte la tension induite "
"transversalement à travers un conducteur parcouru par un courant électrique."
" De ces deux types d'interrupteurs, les capteurs à effet Hall sont "
"généralement les moins chers et les plus fiables. Sur la photo ci-dessus "
"vous pouvez voir `un capteur à effet Hall produit par West Coast Products "
"<https://www.wcproducts.com/wcp-0971>`__."

#: ../../frc-docs/source/docs/hardware/sensors/proximity-switches.rst:44
msgid ""
"Magnetic proximity switches may be either \"unipolar,\" \"bipolar,\" or "
Expand Down
2 changes: 1 addition & 1 deletion locale/pot/404.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion locale/pot/docs/2020-overview/2020-Game-Data.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion locale/pot/docs/2020-overview/index.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion locale/pot/docs/2020-overview/known-issues.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion locale/pot/docs/2020-overview/new-for-2020.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion locale/pot/docs/contributing/frc-docs/index.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion locale/pot/docs/contributing/frc-docs/style-guide.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion locale/pot/docs/contributing/frc-docs/top-contributors.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion locale/pot/docs/contributing/frc-docs/top-translators.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion locale/pot/docs/contributing/frc-docs/translations.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion locale/pot/docs/contributing/wpilib/index.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: FIRST Robotics Competition 2020\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 04:10+0000\n"
"POT-Creation-Date: 2020-08-24 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down

0 comments on commit 12e8135

Please sign in to comment.