mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-20 14:54:31 +01:00
Fixed wrong translation
This commit is contained in:
parent
1ea5de0589
commit
0ebd416912
@ -14,6 +14,7 @@
|
||||
# Translators:
|
||||
# Ade Malsasa Akbar <teknoloid@gmail.com>, 2013
|
||||
# adih bin asman <adih.venanda@gmail.com>, 2016
|
||||
# Cristian Maglie <c.maglie@arduino.cc>, 2016
|
||||
# Johannes Sutiktio <mitratrikarya@gmail.com>, 2015
|
||||
# Joshua Adiel Wijaya <ultima_aw@msn.com>, 2015
|
||||
# Rendiyono Wahyu Saputro <rendi.7936@gmail.com>, 2015
|
||||
@ -22,8 +23,8 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2016-03-23 07:43+0000\n"
|
||||
"Last-Translator: adih bin asman <adih.venanda@gmail.com>\n"
|
||||
"PO-Revision-Date: 2016-07-25 13:32+0000\n"
|
||||
"Last-Translator: Cristian Maglie <c.maglie@arduino.cc>\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/mbanzi/arduino-ide-15/language/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -33,7 +34,7 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
msgid " (requires restart of Arduino)"
|
||||
msgstr "if / else\n\nif/else allows greater control over the flow of code than the basic if statement, by allowing multiple tests to be grouped together. For example, an analog input could be tested and one action taken if the input was less than 500, and another action taken if the input was 500 or greater. The code would look like this:\n\nif (pinFiveInput < 500)\n{\n // action A\n}\nelse\n{\n // action B\n}\n\nelse can proceed another if test, so that multiple, mutually exclusive tests can be run at the same time.\n\nEach test will proceed to the next one until a true test is encountered. When a true test is found, its associated block of code is run, and the program then skips to the line following the entire if/else construction. If no test proves to be true, the default else block is executed, if one is present, and sets the default behavior.\n\nNote that an else if block may be used with or without a terminating else block and vice versa. An unlimited number of such else if branches is allowed.\n\nif (pinFiveInput < 500)\n{\n // do Thing A\n}\nelse if (pinFiveInput >= 1000)\n{\n // do Thing B\n}\nelse\n{\n // do Thing C\n}\n\nAnother way to express branching, mutually exclusive tests, is with the switch case statement.\nSee also:\n\nswitch case Reference Home\n\nCorrections, suggestions, and new documentation should be posted to the Forum.\n\nThe text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.\nShare"
|
||||
msgstr "(memerlukan Arduino untuk mulai-ulang)"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:529
|
||||
#, java-format
|
||||
|
Loading…
x
Reference in New Issue
Block a user