Skip to content

Commit 0ebd416

Browse files
committed
Fixed wrong translation
1 parent 1ea5de0 commit 0ebd416

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

arduino-core/src/processing/app/i18n/Resources_in.po

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# Translators:
1515
# Ade Malsasa Akbar <teknoloid@gmail.com>, 2013
1616
# adih bin asman <adih.venanda@gmail.com>, 2016
17+
# Cristian Maglie <c.maglie@arduino.cc>, 2016
1718
# Johannes Sutiktio <mitratrikarya@gmail.com>, 2015
1819
# Joshua Adiel Wijaya <ultima_aw@msn.com>, 2015
1920
# Rendiyono Wahyu Saputro <rendi.7936@gmail.com>, 2015
@@ -22,8 +23,8 @@ msgstr ""
2223
"Project-Id-Version: Arduino IDE 1.5\n"
2324
"Report-Msgid-Bugs-To: \n"
2425
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
25-
"PO-Revision-Date: 2016-03-23 07:43+0000\n"
26-
"Last-Translator: adih bin asman <adih.venanda@gmail.com>\n"
26+
"PO-Revision-Date: 2016-07-25 13:32+0000\n"
27+
"Last-Translator: Cristian Maglie <c.maglie@arduino.cc>\n"
2728
"Language-Team: Indonesian (http://www.transifex.com/mbanzi/arduino-ide-15/language/id/)\n"
2829
"MIME-Version: 1.0\n"
2930
"Content-Type: text/plain; charset=UTF-8\n"
@@ -33,7 +34,7 @@ msgstr ""
3334

3435
#: Preferences.java:358 Preferences.java:374
3536
msgid " (requires restart of Arduino)"
36-
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"
37+
msgstr "(memerlukan Arduino untuk mulai-ulang)"
3738

3839
#: ../../../processing/app/debug/Compiler.java:529
3940
#, java-format

0 commit comments

Comments
 (0)