Skip to content

Commit

Permalink
Merge pull request #3090 from ethereum/pot20june
Browse files Browse the repository at this point in the history
update .pot files
  • Loading branch information
bunsenstraat committed Jun 21, 2022
2 parents eb6d1c1 + 3f27a1a commit b99ac3e
Show file tree
Hide file tree
Showing 51 changed files with 429 additions and 275 deletions.
Binary file modified docs/_build/gettext/.doctrees/FAQ.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/assert_library.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/code_contribution_guide.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/community.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/compile.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/contract_metadata.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/create_deploy.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/debugger.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/environment.pickle
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/file_explorer.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/import.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/index.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/layout.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/locations.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/plugin_manager.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/remix_commands.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/remixd.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/run.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/settings.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/solidity_editor.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/static_analysis.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/terminal.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/tutorial_debug.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/udapp.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/unittesting.doctree
Binary file not shown.
Binary file modified docs/_build/gettext/.doctrees/unittesting_examples.doctree
Binary file not shown.
107 changes: 63 additions & 44 deletions docs/_build/gettext/FAQ.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Remix - Ethereum IDE 1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-19 15:40+0200\n"
"POT-Creation-Date: 2022-06-20 17:14-0400\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 All @@ -20,167 +20,186 @@ msgstr ""
msgid "FAQ"
msgstr ""

#: ../../FAQ.md:4
#: ../../FAQ.md:3
msgid "Supported devices & Browsers"
msgstr ""

#: ../../FAQ.md:5
msgid "Q: What browsers will Remix work on?"
msgstr ""

#: ../../FAQ.md:7
msgid "A: We support Firefox, Chrome, and Brave. We do not test or look for errors in Safari, Edge or other browsers."
msgstr ""

#: ../../FAQ.md:9
msgid "Q: Will Remix work on a tablet or mobile device?"
msgstr ""

#: ../../FAQ.md:11
msgid "A: We do not support the use of Remix on tablets or mobile phones."
msgstr ""

#: ../../FAQ.md:13
msgid "Solidity compiler"
msgstr ""

#: ../../FAQ.md:6
#: ../../FAQ.md:15
msgid "Q: Error: compiler might be in a non-sane state"
msgstr ""

#: ../../FAQ.md:13
#: ../../FAQ.md:22
msgid "A: Old versions of solidity compiler had this problem with chrome. Please change the compiler version in Solidity Plugin to the newer one or use another browser."
msgstr ""

#: ../../FAQ.md:16
#: ../../FAQ.md:25
msgid "Q: I’m getting an issue with Maximum call stack exceed and various other errors, can't compile."
msgstr ""

#: ../../FAQ.md:18
#: ../../FAQ.md:27
msgid "A: Try a different browser or a newer solidity compiler version."
msgstr ""

#: ../../FAQ.md:20
#: ../../FAQ.md:29
msgid "Q: How to verify a contract that imports other contracts?"
msgstr ""

#: ../../FAQ.md:22
msgid "A: The verification tool does not recursively go through the import statments in a contract. So can only verify a 'flattened' contract."
#: ../../FAQ.md:31
msgid "A: The verification tool does not recursively go through the import statements in a contract. So can only verify a 'flattened' contract."
msgstr ""

#: ../../FAQ.md:24
#: ../../FAQ.md:33
msgid "There is a plugin called Flattener which will stuff all the original code and the imported code into a single file."
msgstr ""

#: ../../FAQ.md:26
#: ../../FAQ.md:35
msgid "Deploy & Run"
msgstr ""

#: ../../FAQ.md:28
#: ../../FAQ.md:37
msgid "Q: I am using an Infura endpoint in my app, but when I try to deploy against that endpoint in remix IDE selecting \"web3 provider\" and putting my endpoint in, it's telling me that it can't connect"
msgstr ""

#: ../../FAQ.md:30
#: ../../FAQ.md:39
msgid "A: If the endpoint you are using is http, it won't work."
msgstr ""

#: ../../FAQ.md:32
#: ../../FAQ.md:41
msgid "Q: Where is deploy button?"
msgstr ""

#: ../../FAQ.md:34
#: ../../FAQ.md:43
msgid "A: Its in the Deploy & Run module. If you haven't activated that module, you should do that by clicking Deploy & Run module in the Plugin Manager. You could also activate everything you need to work with solidity on the landing page ( click the remix logo at the top left for the screen) and click the \"Solidity\" button in the environment section."
msgstr ""

#: ../../FAQ.md:37
#: ../../FAQ.md:46
msgid "Q: How to pass a tuple to a public function in Remix?"
msgstr ""

#: ../../FAQ.md:39
#: ../../FAQ.md:48
msgid "A: Pass it as an array []."
msgstr ""

#: ../../FAQ.md:41
#: ../../FAQ.md:50
msgid "Q: How to input a struct as input to a parameter of a function in the Deploy & Run module?"
msgstr ""

#: ../../FAQ.md:43
#: ../../FAQ.md:52
msgid "A: For inputting a struct, just like a tuple, pass it in as an array []. Also you need to put in the line:"
msgstr ""

#: ../../FAQ.md:45
#: ../../FAQ.md:54
msgid "pragma experimental ABIEncoderV2; at the top of the solidity file."
msgstr ""

#: ../../FAQ.md:47
#: ../../FAQ.md:56
msgid "For example, here's a solidity file with a struct is an input parameter."
msgstr ""

#: ../../FAQ.md:79
#: ../../FAQ.md:88
msgid "The input of initPeepToPeeps takes a struct. If you input [1,2] the transaction will go through."
msgstr ""

#: ../../FAQ.md:83
#: ../../FAQ.md:92
msgid "General"
msgstr ""

#: ../../FAQ.md:85
#: ../../FAQ.md:94
msgid "Q: Where do plugin developers go with their questions?"
msgstr ""

#: ../../FAQ.md:87
#: ../../FAQ.md:96
msgid "A: The Gitter Remix plugin developers room https://gitter.im/ethereum/remix-dev-plugin"
msgstr ""

#: ../../FAQ.md:89
#: ../../FAQ.md:98
msgid "Analytics"
msgstr ""

#: ../../FAQ.md:91
#: ../../FAQ.md:100
msgid "Q: What information does Remix save when Matomo Analytics is enabled?"
msgstr ""

#: ../../FAQ.md:93
#: ../../FAQ.md:102
msgid "A: We want to know:"
msgstr ""

#: ../../FAQ.md:95
#: ../../FAQ.md:104
msgid "Which plugins get activated & deactivated"
msgstr ""

#: ../../FAQ.md:96
#: ../../FAQ.md:105
msgid "If users check the box to publish a contract's metadata when deploying"
msgstr ""

#: ../../FAQ.md:97
#: ../../FAQ.md:106
msgid "Which themes are used/used most/not used at all"
msgstr ""

#: ../../FAQ.md:98
#: ../../FAQ.md:107
msgid "The usage of the links to documentation"
msgstr ""

#: ../../FAQ.md:99
#: ../../FAQ.md:108
msgid "On the homepage, which file importing buttons are used"
msgstr ""

#: ../../FAQ.md:101
#: ../../FAQ.md:110
msgid "Q: Is it opt-in or opt-out?"
msgstr ""

#: ../../FAQ.md:103
#: ../../FAQ.md:112
msgid "A: We use Matomo as an opt-in analytics platform."
msgstr ""

#: ../../FAQ.md:105
#: ../../FAQ.md:114
msgid "Q: Where is the info stored? Is the info shared with 3rd parties?"
msgstr ""

#: ../../FAQ.md:107
#: ../../FAQ.md:116
msgid "A: All data collected through Matomo is stored on our own server. No data is given to third parties."
msgstr ""

#: ../../FAQ.md:109
#: ../../FAQ.md:118
msgid "We respect your privacy and do not collect nor store any personally identifiable information (PII)."
msgstr ""

#: ../../FAQ.md:111
#: ../../FAQ.md:120
msgid "Q: What does Remix do with this info?"
msgstr ""

#: ../../FAQ.md:113
#: ../../FAQ.md:122
msgid "A: Our goal is to understand how many users we have, what plugins people are using, what is not getting used, what is not being used to its full potential."
msgstr ""

#: ../../FAQ.md:115
#: ../../FAQ.md:124
msgid "With this understanding, we can make adjustments to the UI as well as providing more tips and documentation. It's a way of getting constant anonymous feedback from our users."
msgstr ""

#: ../../FAQ.md:117
#: ../../FAQ.md:126
msgid "Q: After I agree opt-in, can I change my mind?"
msgstr ""

#: ../../FAQ.md:119
#: ../../FAQ.md:128
msgid "A: You can turn off or on Matomo in the Settings panel. There are no consequences for not opting-in or opting-out."
msgstr ""

3 changes: 1 addition & 2 deletions docs/_build/gettext/assert_library.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Remix - Ethereum IDE 1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-19 15:40+0200\n"
"POT-Creation-Date: 2022-06-20 17:14-0400\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 Expand Up @@ -108,4 +108,3 @@ msgstr ""
#: ../../assert_library.md:87
msgid "Tests if value1 is lesser than value2. message is returned in case of failure."
msgstr ""

3 changes: 1 addition & 2 deletions docs/_build/gettext/code_contribution_guide.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Remix - Ethereum IDE 1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-19 15:40+0200\n"
"POT-Creation-Date: 2022-06-20 17:14-0400\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 All @@ -31,4 +31,3 @@ msgstr ""
#: ../../code_contribution_guide.md:10
msgid "To learn more, please visit our GitHub page."
msgstr ""

3 changes: 1 addition & 2 deletions docs/_build/gettext/community.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Remix - Ethereum IDE 1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-19 15:40+0200\n"
"POT-Creation-Date: 2022-06-20 17:14-0400\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 All @@ -31,4 +31,3 @@ msgstr ""
#: ../../community.md:11
msgid "We would kindly ask you to respect the space and to use it for getting help with your work and the developers' channel for discussions related to working on Remix codebase. If you have ideas for collaborations or you want to promote your project, try to find some more appropriate channels to do so. Or you can contact the main contributors directly on Gitter or Twitter."
msgstr ""

0 comments on commit b99ac3e

Please sign in to comment.