forked from SpinalHDL/SpinalDoc-RTD
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added translation using Weblate (Spanish)
- Loading branch information
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
57 changes: 57 additions & 0 deletions
57
source/locale/es/LC_MESSAGES/SpinalHDL/Structuring/function.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 |
---|---|---|
@@ -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 "" |