Skip to content

Commit

Permalink
Added translation using Weblate (Spanish)
Browse files Browse the repository at this point in the history
  • Loading branch information
Readon authored and weblate committed Jul 4, 2024
1 parent 83a737e commit 1f93eb4
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions source/locale/es/LC_MESSAGES/SpinalHDL/Structuring/function.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2018 - 2024, SpinalHDL
# This file is distributed under the same license as the SpinalHDL package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: SpinalHDL\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-01-02 16:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: ../../SpinalHDL/Structuring/function.rst:4
msgid "Function"
msgstr ""

#: ../../SpinalHDL/Structuring/function.rst:6
msgid "The ways you can use Scala functions to generate hardware are radically different than VHDL/Verilog for many reasons:"
msgstr ""

#: ../../SpinalHDL/Structuring/function.rst:8
msgid "You can instantiate registers, combinational logic, and components inside them."
msgstr ""

#: ../../SpinalHDL/Structuring/function.rst:9
msgid "You don't have to play with ``process``\\ /\\ ``@always`` blocks that limit the scope of assignment of signals."
msgstr ""

#: ../../SpinalHDL/Structuring/function.rst:0
msgid "Everything is passed by reference, which allows easy manipulation."
msgstr ""

#: ../../SpinalHDL/Structuring/function.rst:0
msgid "For example, you can give a bus to a function as an argument, then the function can internally read/write to it. You can also return a Component, a Bus, or anything else from Scala and the Scala world."
msgstr ""

#: ../../SpinalHDL/Structuring/function.rst:14
msgid "RGB to gray"
msgstr ""

#: ../../SpinalHDL/Structuring/function.rst:16
msgid "For example, if you want to convert a Red/Green/Blue color into greyscale by using coefficients, you can use functions to apply them:"
msgstr ""

#: ../../SpinalHDL/Structuring/function.rst:30
msgid "Valid Ready Payload bus"
msgstr ""

#: ../../SpinalHDL/Structuring/function.rst:32
msgid "For instance, if you define a simple bus with ``valid``, ``ready``, and ``payload`` signals, you can then define some useful functions inside of it."
msgstr ""

0 comments on commit 1f93eb4

Please sign in to comment.